styles.css 188 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1979px;
  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. #u4136 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1510px;
  25. height:858px;
  26. display:flex;
  27. transition:none;
  28. }
  29. #u4136 .text {
  30. position:absolute;
  31. align-self:center;
  32. padding:2px 2px 2px 2px;
  33. box-sizing:border-box;
  34. width:100%;
  35. }
  36. #u4136_img {
  37. border-width:0px;
  38. position:absolute;
  39. left:0px;
  40. top:0px;
  41. width:1510px;
  42. height:858px;
  43. }
  44. #u4136_text {
  45. border-width:0px;
  46. word-wrap:break-word;
  47. text-transform:none;
  48. visibility:hidden;
  49. }
  50. #u4137 {
  51. border-width:0px;
  52. position:absolute;
  53. left:0px;
  54. top:0px;
  55. width:0px;
  56. height:0px;
  57. }
  58. #u4138_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:80px;
  64. height:30px;
  65. background:inherit;
  66. background-color:rgba(245, 154, 35, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(245, 154, 35, 1);
  71. border-radius:4px;
  72. border-top-right-radius:0px;
  73. border-bottom-right-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  77. font-weight:400;
  78. font-style:normal;
  79. font-size:15px;
  80. color:#FFFFFF;
  81. }
  82. #u4138 {
  83. border-width:0px;
  84. position:absolute;
  85. left:606px;
  86. top:82px;
  87. width:80px;
  88. height:30px;
  89. display:flex;
  90. transition:none;
  91. transform-origin:50% 50%;
  92. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  93. font-weight:400;
  94. font-style:normal;
  95. font-size:15px;
  96. color:#FFFFFF;
  97. }
  98. #u4138 .text {
  99. position:absolute;
  100. align-self:center;
  101. padding:2px 2px 2px 2px;
  102. box-sizing:border-box;
  103. width:100%;
  104. }
  105. #u4138_text {
  106. border-width:0px;
  107. word-wrap:break-word;
  108. text-transform:none;
  109. }
  110. #u4139_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:80px;
  116. height:30px;
  117. background:inherit;
  118. background-color:rgba(245, 154, 35, 0.09803921568627451);
  119. box-sizing:border-box;
  120. border-width:1px;
  121. border-style:solid;
  122. border-color:rgba(245, 154, 35, 1);
  123. border-radius:0px;
  124. border-top-right-radius:0px;
  125. border-bottom-right-radius:0px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  129. font-weight:400;
  130. font-style:normal;
  131. font-size:15px;
  132. color:#FFFFFF;
  133. }
  134. #u4139 {
  135. border-width:0px;
  136. position:absolute;
  137. left:686px;
  138. top:82px;
  139. width:80px;
  140. height:30px;
  141. display:flex;
  142. transition:none;
  143. transform-origin:50% 50%;
  144. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  145. font-weight:400;
  146. font-style:normal;
  147. font-size:15px;
  148. color:#FFFFFF;
  149. }
  150. #u4139 .text {
  151. position:absolute;
  152. align-self:center;
  153. padding:2px 2px 2px 2px;
  154. box-sizing:border-box;
  155. width:100%;
  156. }
  157. #u4139_text {
  158. border-width:0px;
  159. word-wrap:break-word;
  160. text-transform:none;
  161. }
  162. #u4140_div {
  163. border-width:0px;
  164. position:absolute;
  165. left:0px;
  166. top:0px;
  167. width:80px;
  168. height:30px;
  169. background:inherit;
  170. background-color:rgba(245, 154, 35, 0.09803921568627451);
  171. box-sizing:border-box;
  172. border-width:1px;
  173. border-style:solid;
  174. border-color:rgba(245, 154, 35, 1);
  175. border-radius:0px;
  176. border-top-right-radius:0px;
  177. border-bottom-right-radius:0px;
  178. filter:drop-shadow(none);
  179. transition:none;
  180. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  181. font-weight:400;
  182. font-style:normal;
  183. font-size:15px;
  184. color:#FFFFFF;
  185. }
  186. #u4140 {
  187. border-width:0px;
  188. position:absolute;
  189. left:766px;
  190. top:82px;
  191. width:80px;
  192. height:30px;
  193. display:flex;
  194. transition:none;
  195. transform-origin:50% 50%;
  196. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  197. font-weight:400;
  198. font-style:normal;
  199. font-size:15px;
  200. color:#FFFFFF;
  201. }
  202. #u4140 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u4140_text {
  210. border-width:0px;
  211. word-wrap:break-word;
  212. text-transform:none;
  213. }
  214. #u4141_div {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:240px;
  220. height:40px;
  221. background:inherit;
  222. background-color:rgba(245, 154, 35, 0.2);
  223. box-sizing:border-box;
  224. border-width:2px;
  225. border-style:solid;
  226. border-color:rgba(245, 154, 35, 1);
  227. border-left:0px;
  228. border-top:0px;
  229. border-right:0px;
  230. border-radius:0px;
  231. border-bottom-right-radius:0px;
  232. border-bottom-left-radius:0px;
  233. filter:drop-shadow(none);
  234. transition:none;
  235. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  236. font-weight:400;
  237. font-style:normal;
  238. font-size:18px;
  239. color:#FFFFFF;
  240. text-align:left;
  241. }
  242. #u4141 {
  243. border-width:0px;
  244. position:absolute;
  245. left:31px;
  246. top:137px;
  247. width:240px;
  248. height:40px;
  249. display:flex;
  250. transition:none;
  251. transform-origin:50% 50%;
  252. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  253. font-weight:400;
  254. font-style:normal;
  255. font-size:18px;
  256. color:#FFFFFF;
  257. text-align:left;
  258. }
  259. #u4141 .text {
  260. position:absolute;
  261. align-self:center;
  262. padding:2px 2px 2px 10px;
  263. box-sizing:border-box;
  264. width:100%;
  265. }
  266. #u4141_text {
  267. border-width:0px;
  268. word-wrap:break-word;
  269. text-transform:none;
  270. }
  271. #u4142_div {
  272. border-width:0px;
  273. position:absolute;
  274. left:0px;
  275. top:0px;
  276. width:240px;
  277. height:40px;
  278. background:inherit;
  279. background-color:rgba(245, 154, 35, 0.2);
  280. box-sizing:border-box;
  281. border-width:2px;
  282. border-style:solid;
  283. border-color:rgba(245, 154, 35, 1);
  284. border-left:0px;
  285. border-top:0px;
  286. border-right:0px;
  287. border-radius:0px;
  288. border-bottom-right-radius:0px;
  289. border-bottom-left-radius:0px;
  290. filter:drop-shadow(none);
  291. transition:none;
  292. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  293. font-weight:400;
  294. font-style:normal;
  295. font-size:18px;
  296. color:#FFFFFF;
  297. text-align:left;
  298. }
  299. #u4142 {
  300. border-width:0px;
  301. position:absolute;
  302. left:1236px;
  303. top:109px;
  304. width:240px;
  305. height:40px;
  306. display:flex;
  307. transition:none;
  308. transform-origin:50% 50%;
  309. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  310. font-weight:400;
  311. font-style:normal;
  312. font-size:18px;
  313. color:#FFFFFF;
  314. text-align:left;
  315. }
  316. #u4142 .text {
  317. position:absolute;
  318. align-self:center;
  319. padding:2px 2px 2px 10px;
  320. box-sizing:border-box;
  321. width:100%;
  322. }
  323. #u4142_text {
  324. border-width:0px;
  325. word-wrap:break-word;
  326. text-transform:none;
  327. }
  328. #u4143 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1246px;
  332. top:169px;
  333. width:80px;
  334. height:80px;
  335. display:flex;
  336. transition:none;
  337. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  338. font-style:normal;
  339. color:#FFFFFF;
  340. }
  341. #u4143 .text {
  342. position:absolute;
  343. align-self:center;
  344. padding:2px 2px 2px 2px;
  345. box-sizing:border-box;
  346. width:100%;
  347. }
  348. #u4143_img {
  349. border-width:0px;
  350. position:absolute;
  351. left:0px;
  352. top:0px;
  353. width:80px;
  354. height:80px;
  355. }
  356. #u4143_text {
  357. border-width:0px;
  358. word-wrap:break-word;
  359. text-transform:none;
  360. }
  361. #u4144_div {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:82px;
  367. height:64px;
  368. background:inherit;
  369. background-color:rgba(255, 255, 255, 0);
  370. border-radius:0px;
  371. filter:drop-shadow(none);
  372. transition:none;
  373. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  374. font-weight:400;
  375. font-style:normal;
  376. font-size:12px;
  377. color:rgba(255, 255, 255, 0.6980392156862745);
  378. text-align:left;
  379. line-height:30px;
  380. }
  381. #u4144 {
  382. border-width:0px;
  383. position:absolute;
  384. left:1386px;
  385. top:177px;
  386. width:82px;
  387. height:64px;
  388. display:flex;
  389. transition:none;
  390. transform-origin:50% 50%;
  391. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  392. font-weight:400;
  393. font-style:normal;
  394. font-size:12px;
  395. color:rgba(255, 255, 255, 0.6980392156862745);
  396. text-align:left;
  397. line-height:30px;
  398. }
  399. #u4144 .text {
  400. position:absolute;
  401. align-self:center;
  402. padding:2px 2px 2px 2px;
  403. box-sizing:border-box;
  404. width:100%;
  405. }
  406. #u4144_text {
  407. border-width:0px;
  408. white-space:nowrap;
  409. text-transform:none;
  410. }
  411. #u4145_div {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:90px;
  417. height:21px;
  418. background:inherit;
  419. background-color:rgba(245, 154, 35, 1);
  420. border-radius:40px;
  421. filter:drop-shadow(none);
  422. transition:none;
  423. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  424. font-weight:400;
  425. font-style:normal;
  426. font-size:12px;
  427. color:rgba(255, 255, 255, 0.6980392156862745);
  428. }
  429. #u4145 {
  430. border-width:0px;
  431. position:absolute;
  432. left:1296px;
  433. top:159px;
  434. width:90px;
  435. height:21px;
  436. display:flex;
  437. transition:none;
  438. transform-origin:50% 50%;
  439. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  440. font-weight:400;
  441. font-style:normal;
  442. font-size:12px;
  443. color:rgba(255, 255, 255, 0.6980392156862745);
  444. }
  445. #u4145 .text {
  446. position:absolute;
  447. align-self:center;
  448. padding:2px 2px 2px 2px;
  449. box-sizing:border-box;
  450. width:100%;
  451. }
  452. #u4145_text {
  453. border-width:0px;
  454. word-wrap:break-word;
  455. text-transform:none;
  456. }
  457. #u4146_div {
  458. border-width:0px;
  459. position:absolute;
  460. left:0px;
  461. top:0px;
  462. width:4px;
  463. height:100px;
  464. background:inherit;
  465. background-color:rgba(255, 255, 255, 0.803921568627451);
  466. border-radius:2px;
  467. filter:drop-shadow(none);
  468. transition:none;
  469. font-size:12px;
  470. }
  471. #u4146 {
  472. border-width:0px;
  473. position:absolute;
  474. left:1493px;
  475. top:423px;
  476. width:4px;
  477. height:100px;
  478. display:flex;
  479. transition:none;
  480. transform-origin:50% 50%;
  481. font-size:12px;
  482. }
  483. #u4146 .text {
  484. position:absolute;
  485. align-self:center;
  486. padding:2px 2px 2px 2px;
  487. box-sizing:border-box;
  488. width:100%;
  489. }
  490. #u4146_text {
  491. border-width:0px;
  492. word-wrap:break-word;
  493. text-transform:none;
  494. visibility:hidden;
  495. }
  496. #u4147 {
  497. border-width:0px;
  498. position:absolute;
  499. left:45px;
  500. top:197px;
  501. width:96px;
  502. height:96px;
  503. display:flex;
  504. transition:none;
  505. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  506. font-style:normal;
  507. color:#FFFFFF;
  508. }
  509. #u4147 .text {
  510. position:absolute;
  511. align-self:center;
  512. padding:2px 2px 2px 2px;
  513. box-sizing:border-box;
  514. width:100%;
  515. }
  516. #u4147_img {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:96px;
  522. height:96px;
  523. }
  524. #u4147_text {
  525. border-width:0px;
  526. word-wrap:break-word;
  527. text-transform:none;
  528. }
  529. #u4148_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:70px;
  535. height:94px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:12px;
  545. color:rgba(255, 255, 255, 0.6980392156862745);
  546. text-align:left;
  547. line-height:30px;
  548. }
  549. #u4148 {
  550. border-width:0px;
  551. position:absolute;
  552. left:161px;
  553. top:197px;
  554. width:70px;
  555. height:94px;
  556. display:flex;
  557. transition:none;
  558. transform-origin:50% 50%;
  559. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  560. font-weight:400;
  561. font-style:normal;
  562. font-size:12px;
  563. color:rgba(255, 255, 255, 0.6980392156862745);
  564. text-align:left;
  565. line-height:30px;
  566. }
  567. #u4148 .text {
  568. position:absolute;
  569. align-self:center;
  570. padding:2px 2px 2px 2px;
  571. box-sizing:border-box;
  572. width:100%;
  573. }
  574. #u4148_text {
  575. border-width:0px;
  576. white-space:nowrap;
  577. text-transform:none;
  578. }
  579. #u4149 {
  580. border-width:0px;
  581. position:absolute;
  582. left:0px;
  583. top:0px;
  584. width:0px;
  585. height:0px;
  586. }
  587. #u4150_div {
  588. border-width:0px;
  589. position:absolute;
  590. left:0px;
  591. top:0px;
  592. width:253px;
  593. height:22px;
  594. background:inherit;
  595. background-color:rgba(255, 255, 255, 0.15294117647058825);
  596. border-radius:0px;
  597. filter:drop-shadow(none);
  598. transition:none;
  599. font-size:12px;
  600. }
  601. #u4150 {
  602. border-width:0px;
  603. position:absolute;
  604. left:1234px;
  605. top:396px;
  606. width:253px;
  607. height:22px;
  608. display:flex;
  609. transition:none;
  610. transform-origin:50% 50%;
  611. font-size:12px;
  612. }
  613. #u4150 .text {
  614. position:absolute;
  615. align-self:center;
  616. padding:2px 2px 2px 2px;
  617. box-sizing:border-box;
  618. width:100%;
  619. }
  620. #u4150_text {
  621. border-width:0px;
  622. word-wrap:break-word;
  623. text-transform:none;
  624. visibility:hidden;
  625. }
  626. #u4151_div {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:53px;
  632. height:21px;
  633. background:inherit;
  634. background-color:rgba(255, 255, 255, 0);
  635. border-radius:0px;
  636. filter:drop-shadow(none);
  637. transition:none;
  638. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  639. font-weight:400;
  640. font-style:normal;
  641. font-size:12px;
  642. color:rgba(242, 242, 242, 0.6980392156862745);
  643. text-align:left;
  644. }
  645. #u4151 {
  646. border-width:0px;
  647. position:absolute;
  648. left:1244px;
  649. top:396px;
  650. width:53px;
  651. height:21px;
  652. display:flex;
  653. transition:none;
  654. transform-origin:50% 50%;
  655. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  656. font-weight:400;
  657. font-style:normal;
  658. font-size:12px;
  659. color:rgba(242, 242, 242, 0.6980392156862745);
  660. text-align:left;
  661. }
  662. #u4151 .text {
  663. position:absolute;
  664. align-self:center;
  665. padding:2px 2px 2px 2px;
  666. box-sizing:border-box;
  667. width:100%;
  668. }
  669. #u4151_text {
  670. border-width:0px;
  671. white-space:nowrap;
  672. text-transform:none;
  673. }
  674. #u4152_div {
  675. border-width:0px;
  676. position:absolute;
  677. left:0px;
  678. top:0px;
  679. width:41px;
  680. height:21px;
  681. background:inherit;
  682. background-color:rgba(255, 255, 255, 0);
  683. border-radius:0px;
  684. filter:drop-shadow(none);
  685. transition:none;
  686. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:12px;
  690. color:rgba(242, 242, 242, 0.6980392156862745);
  691. text-align:left;
  692. }
  693. #u4152 {
  694. border-width:0px;
  695. position:absolute;
  696. left:1381px;
  697. top:396px;
  698. width:41px;
  699. height:21px;
  700. display:flex;
  701. transition:none;
  702. transform-origin:50% 50%;
  703. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  704. font-weight:400;
  705. font-style:normal;
  706. font-size:12px;
  707. color:rgba(242, 242, 242, 0.6980392156862745);
  708. text-align:left;
  709. }
  710. #u4152 .text {
  711. position:absolute;
  712. align-self:center;
  713. padding:2px 2px 2px 2px;
  714. box-sizing:border-box;
  715. width:100%;
  716. }
  717. #u4152_text {
  718. border-width:0px;
  719. white-space:nowrap;
  720. text-transform:none;
  721. }
  722. #u4153_div {
  723. border-width:0px;
  724. position:absolute;
  725. left:0px;
  726. top:0px;
  727. width:29px;
  728. height:21px;
  729. background:inherit;
  730. background-color:rgba(255, 255, 255, 0);
  731. border-radius:0px;
  732. filter:drop-shadow(none);
  733. transition:none;
  734. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  735. font-weight:400;
  736. font-style:normal;
  737. font-size:12px;
  738. color:rgba(242, 242, 242, 0.6980392156862745);
  739. text-align:left;
  740. }
  741. #u4153 {
  742. border-width:0px;
  743. position:absolute;
  744. left:1326px;
  745. top:396px;
  746. width:29px;
  747. height:21px;
  748. display:flex;
  749. transition:none;
  750. transform-origin:50% 50%;
  751. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  752. font-weight:400;
  753. font-style:normal;
  754. font-size:12px;
  755. color:rgba(242, 242, 242, 0.6980392156862745);
  756. text-align:left;
  757. }
  758. #u4153 .text {
  759. position:absolute;
  760. align-self:center;
  761. padding:2px 2px 2px 2px;
  762. box-sizing:border-box;
  763. width:100%;
  764. }
  765. #u4153_text {
  766. border-width:0px;
  767. white-space:nowrap;
  768. text-transform:none;
  769. }
  770. #u4154_div {
  771. border-width:0px;
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:41px;
  776. height:21px;
  777. background:inherit;
  778. background-color:rgba(255, 255, 255, 0);
  779. border-radius:0px;
  780. filter:drop-shadow(none);
  781. transition:none;
  782. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  783. font-weight:400;
  784. font-style:normal;
  785. font-size:12px;
  786. color:rgba(242, 242, 242, 0.6980392156862745);
  787. text-align:left;
  788. }
  789. #u4154 {
  790. border-width:0px;
  791. position:absolute;
  792. left:1436px;
  793. top:396px;
  794. width:41px;
  795. height:21px;
  796. display:flex;
  797. transition:none;
  798. transform-origin:50% 50%;
  799. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  800. font-weight:400;
  801. font-style:normal;
  802. font-size:12px;
  803. color:rgba(242, 242, 242, 0.6980392156862745);
  804. text-align:left;
  805. }
  806. #u4154 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u4154_text {
  814. border-width:0px;
  815. white-space:nowrap;
  816. text-transform:none;
  817. }
  818. #u4155 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u4156_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:240px;
  832. height:23px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border-radius:0px;
  836. filter:drop-shadow(none);
  837. transition:none;
  838. font-size:12px;
  839. }
  840. #u4156 {
  841. border-width:0px;
  842. position:absolute;
  843. left:1241px;
  844. top:422px;
  845. width:240px;
  846. height:23px;
  847. display:flex;
  848. transition:none;
  849. transform-origin:50% 50%;
  850. font-size:12px;
  851. }
  852. #u4156 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u4156_text {
  860. border-width:0px;
  861. word-wrap:break-word;
  862. text-transform:none;
  863. visibility:hidden;
  864. }
  865. #u4157_div {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:53px;
  871. height:21px;
  872. background:inherit;
  873. background-color:rgba(255, 255, 255, 0);
  874. border-radius:0px;
  875. filter:drop-shadow(none);
  876. transition:none;
  877. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:12px;
  881. color:rgba(255, 255, 255, 0.6980392156862745);
  882. text-align:left;
  883. }
  884. #u4157 {
  885. border-width:0px;
  886. position:absolute;
  887. left:1241px;
  888. top:423px;
  889. width:53px;
  890. height:21px;
  891. display:flex;
  892. transition:none;
  893. transform-origin:50% 50%;
  894. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  895. font-weight:400;
  896. font-style:normal;
  897. font-size:12px;
  898. color:rgba(255, 255, 255, 0.6980392156862745);
  899. text-align:left;
  900. }
  901. #u4157 .text {
  902. position:absolute;
  903. align-self:center;
  904. padding:2px 2px 2px 2px;
  905. box-sizing:border-box;
  906. width:100%;
  907. }
  908. #u4157_text {
  909. border-width:0px;
  910. white-space:nowrap;
  911. text-transform:none;
  912. }
  913. #u4158_div {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:19px;
  919. height:21px;
  920. background:inherit;
  921. background-color:rgba(255, 255, 255, 0);
  922. border-radius:0px;
  923. filter:drop-shadow(none);
  924. transition:none;
  925. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  926. font-weight:400;
  927. font-style:normal;
  928. font-size:12px;
  929. color:#FFFFFF;
  930. text-align:left;
  931. }
  932. #u4158 {
  933. border-width:0px;
  934. position:absolute;
  935. left:1327px;
  936. top:423px;
  937. width:19px;
  938. height:21px;
  939. display:flex;
  940. transition:none;
  941. transform-origin:50% 50%;
  942. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  943. font-weight:400;
  944. font-style:normal;
  945. font-size:12px;
  946. color:#FFFFFF;
  947. text-align:left;
  948. }
  949. #u4158 .text {
  950. position:absolute;
  951. align-self:center;
  952. padding:2px 2px 2px 2px;
  953. box-sizing:border-box;
  954. width:100%;
  955. }
  956. #u4158_text {
  957. border-width:0px;
  958. white-space:nowrap;
  959. text-transform:none;
  960. }
  961. #u4159_div {
  962. border-width:0px;
  963. position:absolute;
  964. left:0px;
  965. top:0px;
  966. width:49px;
  967. height:21px;
  968. background:inherit;
  969. background-color:rgba(255, 255, 255, 0);
  970. border-radius:0px;
  971. filter:drop-shadow(none);
  972. transition:none;
  973. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:12px;
  977. color:#FFFFFF;
  978. text-align:left;
  979. }
  980. #u4159 {
  981. border-width:0px;
  982. position:absolute;
  983. left:1436px;
  984. top:423px;
  985. width:49px;
  986. height:21px;
  987. display:flex;
  988. transition:none;
  989. transform-origin:50% 50%;
  990. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  991. font-weight:400;
  992. font-style:normal;
  993. font-size:12px;
  994. color:#FFFFFF;
  995. text-align:left;
  996. }
  997. #u4159 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u4159_text {
  1005. border-width:0px;
  1006. white-space:nowrap;
  1007. text-transform:none;
  1008. }
  1009. #u4160_div {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:19px;
  1015. height:21px;
  1016. background:inherit;
  1017. background-color:rgba(255, 255, 255, 0);
  1018. border-radius:0px;
  1019. filter:drop-shadow(none);
  1020. transition:none;
  1021. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1022. font-weight:400;
  1023. font-style:normal;
  1024. font-size:12px;
  1025. color:#FFFFFF;
  1026. text-align:left;
  1027. }
  1028. #u4160 {
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:1392px;
  1032. top:423px;
  1033. width:19px;
  1034. height:21px;
  1035. display:flex;
  1036. transition:none;
  1037. transform-origin:50% 50%;
  1038. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1039. font-weight:400;
  1040. font-style:normal;
  1041. font-size:12px;
  1042. color:#FFFFFF;
  1043. text-align:left;
  1044. }
  1045. #u4160 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:2px 2px 2px 2px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u4160_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u4161_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:41px;
  1063. height:124px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 0);
  1066. border-radius:0px;
  1067. filter:drop-shadow(none);
  1068. transition:none;
  1069. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1070. font-weight:400;
  1071. font-style:normal;
  1072. font-size:12px;
  1073. color:rgba(255, 255, 255, 0.6980392156862745);
  1074. text-align:left;
  1075. line-height:40px;
  1076. }
  1077. #u4161 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:43px;
  1081. top:396px;
  1082. width:41px;
  1083. height:124px;
  1084. display:flex;
  1085. transition:none;
  1086. transform-origin:50% 50%;
  1087. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1088. font-weight:400;
  1089. font-style:normal;
  1090. font-size:12px;
  1091. color:rgba(255, 255, 255, 0.6980392156862745);
  1092. text-align:left;
  1093. line-height:40px;
  1094. }
  1095. #u4161 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u4161_text {
  1103. border-width:0px;
  1104. white-space:nowrap;
  1105. text-transform:none;
  1106. }
  1107. #u4162 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:0px;
  1113. height:0px;
  1114. }
  1115. #u4163_div {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:0px;
  1119. top:0px;
  1120. width:240px;
  1121. height:30px;
  1122. background:inherit;
  1123. background-color:rgba(245, 154, 35, 0.2);
  1124. box-sizing:border-box;
  1125. border-width:1px;
  1126. border-style:solid;
  1127. border-color:rgba(245, 154, 35, 0.4);
  1128. border-radius:0px;
  1129. filter:drop-shadow(none);
  1130. transition:none;
  1131. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1132. font-weight:400;
  1133. font-style:normal;
  1134. font-size:12px;
  1135. color:#FFFFFF;
  1136. text-align:left;
  1137. }
  1138. #u4163 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:33px;
  1142. top:316px;
  1143. width:240px;
  1144. height:30px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:12px;
  1152. color:#FFFFFF;
  1153. text-align:left;
  1154. }
  1155. #u4163 .text {
  1156. position:absolute;
  1157. align-self:center;
  1158. padding:2px 2px 2px 10px;
  1159. box-sizing:border-box;
  1160. width:100%;
  1161. }
  1162. #u4163_text {
  1163. border-width:0px;
  1164. word-wrap:break-word;
  1165. text-transform:none;
  1166. visibility:hidden;
  1167. }
  1168. #u4164_div {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:85px;
  1174. height:17px;
  1175. background:inherit;
  1176. background-color:rgba(255, 255, 255, 0);
  1177. border-radius:0px;
  1178. filter:drop-shadow(none);
  1179. transition:none;
  1180. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1181. font-weight:400;
  1182. font-style:normal;
  1183. font-size:12px;
  1184. color:#FFFFFF;
  1185. }
  1186. #u4164 {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:43px;
  1190. top:321px;
  1191. width:85px;
  1192. height:17px;
  1193. display:flex;
  1194. transition:none;
  1195. transform-origin:50% 50%;
  1196. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1197. font-weight:400;
  1198. font-style:normal;
  1199. font-size:12px;
  1200. color:#FFFFFF;
  1201. }
  1202. #u4164 .text {
  1203. position:absolute;
  1204. align-self:flex-start;
  1205. padding:0px 0px 0px 0px;
  1206. box-sizing:border-box;
  1207. width:100%;
  1208. }
  1209. #u4164_text {
  1210. border-width:0px;
  1211. white-space:nowrap;
  1212. text-transform:none;
  1213. }
  1214. #u4165_div {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:0px;
  1218. top:0px;
  1219. width:47px;
  1220. height:124px;
  1221. background:inherit;
  1222. background-color:rgba(255, 255, 255, 0);
  1223. border-radius:0px;
  1224. filter:drop-shadow(none);
  1225. transition:none;
  1226. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1227. font-weight:400;
  1228. font-style:normal;
  1229. font-size:12px;
  1230. color:rgba(255, 255, 255, 0.6980392156862745);
  1231. text-align:right;
  1232. line-height:40px;
  1233. }
  1234. #u4165 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:207px;
  1238. top:396px;
  1239. width:47px;
  1240. height:124px;
  1241. display:flex;
  1242. transition:none;
  1243. transform-origin:50% 50%;
  1244. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1245. font-weight:400;
  1246. font-style:normal;
  1247. font-size:12px;
  1248. color:rgba(255, 255, 255, 0.6980392156862745);
  1249. text-align:right;
  1250. line-height:40px;
  1251. }
  1252. #u4165 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:2px 2px 2px 2px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u4165_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u4166_div {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:39px;
  1270. height:124px;
  1271. background:inherit;
  1272. background-color:rgba(255, 255, 255, 0);
  1273. border-radius:0px;
  1274. filter:drop-shadow(none);
  1275. transition:none;
  1276. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1277. font-weight:400;
  1278. font-style:normal;
  1279. font-size:12px;
  1280. color:rgba(255, 255, 255, 0.6980392156862745);
  1281. text-align:right;
  1282. line-height:40px;
  1283. }
  1284. #u4166 {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:160px;
  1288. top:396px;
  1289. width:39px;
  1290. height:124px;
  1291. display:flex;
  1292. transition:none;
  1293. transform-origin:50% 50%;
  1294. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1295. font-weight:400;
  1296. font-style:normal;
  1297. font-size:12px;
  1298. color:rgba(255, 255, 255, 0.6980392156862745);
  1299. text-align:right;
  1300. line-height:40px;
  1301. }
  1302. #u4166 .text {
  1303. position:absolute;
  1304. align-self:center;
  1305. padding:2px 2px 2px 2px;
  1306. box-sizing:border-box;
  1307. width:100%;
  1308. }
  1309. #u4166_text {
  1310. border-width:0px;
  1311. white-space:nowrap;
  1312. text-transform:none;
  1313. }
  1314. #u4167_div {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:53px;
  1320. height:30px;
  1321. background:inherit;
  1322. background-color:rgba(245, 154, 35, 0);
  1323. box-sizing:border-box;
  1324. border-width:2px;
  1325. border-style:solid;
  1326. border-color:rgba(245, 154, 35, 1);
  1327. border-left:0px;
  1328. border-top:0px;
  1329. border-right:0px;
  1330. border-radius:0px;
  1331. border-bottom-right-radius:0px;
  1332. border-bottom-left-radius:0px;
  1333. filter:drop-shadow(none);
  1334. transition:none;
  1335. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1336. font-weight:400;
  1337. font-style:normal;
  1338. font-size:12px;
  1339. color:#FFFFFF;
  1340. text-align:left;
  1341. }
  1342. #u4167 {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:43px;
  1346. top:356px;
  1347. width:53px;
  1348. height:30px;
  1349. display:flex;
  1350. transition:none;
  1351. transform-origin:50% 50%;
  1352. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1353. font-weight:400;
  1354. font-style:normal;
  1355. font-size:12px;
  1356. color:#FFFFFF;
  1357. text-align:left;
  1358. }
  1359. #u4167 .text {
  1360. position:absolute;
  1361. align-self:center;
  1362. padding:2px 2px 2px 2px;
  1363. box-sizing:border-box;
  1364. width:100%;
  1365. }
  1366. #u4167_text {
  1367. border-width:0px;
  1368. white-space:nowrap;
  1369. text-transform:none;
  1370. }
  1371. #u4168_div {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:53px;
  1377. height:30px;
  1378. background:inherit;
  1379. background-color:rgba(245, 154, 35, 0);
  1380. border-left:0px;
  1381. border-top:0px;
  1382. border-right:0px;
  1383. border-radius:0px;
  1384. border-bottom-right-radius:0px;
  1385. border-bottom-left-radius:0px;
  1386. filter:drop-shadow(none);
  1387. transition:none;
  1388. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. color:#FFFFFF;
  1393. text-align:left;
  1394. }
  1395. #u4168 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:106px;
  1399. top:356px;
  1400. width:53px;
  1401. height:30px;
  1402. display:flex;
  1403. transition:none;
  1404. transform-origin:50% 50%;
  1405. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1406. font-weight:400;
  1407. font-style:normal;
  1408. font-size:12px;
  1409. color:#FFFFFF;
  1410. text-align:left;
  1411. }
  1412. #u4168 .text {
  1413. position:absolute;
  1414. align-self:center;
  1415. padding:2px 2px 2px 2px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u4168_text {
  1420. border-width:0px;
  1421. white-space:nowrap;
  1422. text-transform:none;
  1423. }
  1424. #u4169_div {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:53px;
  1430. height:30px;
  1431. background:inherit;
  1432. background-color:rgba(245, 154, 35, 0);
  1433. border-left:0px;
  1434. border-top:0px;
  1435. border-right:0px;
  1436. border-radius:0px;
  1437. border-bottom-right-radius:0px;
  1438. border-bottom-left-radius:0px;
  1439. filter:drop-shadow(none);
  1440. transition:none;
  1441. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. font-size:12px;
  1445. color:#FFFFFF;
  1446. text-align:left;
  1447. }
  1448. #u4169 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:169px;
  1452. top:356px;
  1453. width:53px;
  1454. height:30px;
  1455. display:flex;
  1456. transition:none;
  1457. transform-origin:50% 50%;
  1458. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:12px;
  1462. color:#FFFFFF;
  1463. text-align:left;
  1464. }
  1465. #u4169 .text {
  1466. position:absolute;
  1467. align-self:center;
  1468. padding:2px 2px 2px 2px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u4169_text {
  1473. border-width:0px;
  1474. white-space:nowrap;
  1475. text-transform:none;
  1476. }
  1477. #u4170 {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:0px;
  1483. height:0px;
  1484. }
  1485. #u4171_div {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:0px;
  1489. top:0px;
  1490. width:440px;
  1491. height:300px;
  1492. background:inherit;
  1493. background-color:rgba(95, 72, 47, 1);
  1494. box-sizing:border-box;
  1495. border-width:2px;
  1496. border-style:solid;
  1497. border-color:rgba(245, 154, 35, 1);
  1498. border-radius:10px;
  1499. filter:drop-shadow(none);
  1500. transition:none;
  1501. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1502. font-weight:400;
  1503. font-style:normal;
  1504. font-size:12px;
  1505. color:#FFFFFF;
  1506. text-align:left;
  1507. }
  1508. #u4171 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:1539px;
  1512. top:30px;
  1513. width:440px;
  1514. height:300px;
  1515. display:flex;
  1516. transition:none;
  1517. transform-origin:50% 50%;
  1518. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:12px;
  1522. color:#FFFFFF;
  1523. text-align:left;
  1524. }
  1525. #u4171 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 10px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u4171_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u4172 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:0px;
  1544. height:0px;
  1545. }
  1546. #u4173_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:440px;
  1552. height:40px;
  1553. background:inherit;
  1554. background-color:rgba(221, 142, 35, 1);
  1555. box-sizing:border-box;
  1556. border-width:2px;
  1557. border-style:solid;
  1558. border-color:rgba(245, 154, 35, 1);
  1559. border-radius:10px;
  1560. border-bottom-right-radius:0px;
  1561. border-bottom-left-radius:0px;
  1562. filter:drop-shadow(none);
  1563. transition:none;
  1564. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1565. font-weight:400;
  1566. font-style:normal;
  1567. font-size:12px;
  1568. color:#FFFFFF;
  1569. text-align:left;
  1570. }
  1571. #u4173 {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:1539px;
  1575. top:30px;
  1576. width:440px;
  1577. height:40px;
  1578. display:flex;
  1579. transition:none;
  1580. transform-origin:50% 50%;
  1581. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. font-size:12px;
  1585. color:#FFFFFF;
  1586. text-align:left;
  1587. }
  1588. #u4173 .text {
  1589. position:absolute;
  1590. align-self:center;
  1591. padding:2px 2px 2px 10px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u4173_text {
  1596. border-width:0px;
  1597. word-wrap:break-word;
  1598. text-transform:none;
  1599. visibility:hidden;
  1600. }
  1601. #u4174_div {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:77px;
  1607. height:29px;
  1608. background:inherit;
  1609. background-color:rgba(245, 154, 35, 0);
  1610. border-left:0px;
  1611. border-top:0px;
  1612. border-right:0px;
  1613. border-radius:0px;
  1614. border-bottom-right-radius:0px;
  1615. border-bottom-left-radius:0px;
  1616. filter:drop-shadow(none);
  1617. transition:none;
  1618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:18px;
  1622. color:#FFFFFF;
  1623. text-align:left;
  1624. }
  1625. #u4174 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:1559px;
  1629. top:35px;
  1630. width:77px;
  1631. height:29px;
  1632. display:flex;
  1633. transition:none;
  1634. transform-origin:50% 50%;
  1635. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:18px;
  1639. color:#FFFFFF;
  1640. text-align:left;
  1641. }
  1642. #u4174 .text {
  1643. position:absolute;
  1644. align-self:center;
  1645. padding:2px 2px 2px 2px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u4174_text {
  1650. border-width:0px;
  1651. white-space:nowrap;
  1652. text-transform:none;
  1653. }
  1654. #u4175_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:41px;
  1660. height:29px;
  1661. background:inherit;
  1662. background-color:rgba(245, 154, 35, 0);
  1663. border-left:0px;
  1664. border-top:0px;
  1665. border-right:0px;
  1666. border-radius:0px;
  1667. border-bottom-right-radius:0px;
  1668. border-bottom-left-radius:0px;
  1669. filter:drop-shadow(none);
  1670. transition:none;
  1671. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:18px;
  1675. color:#FFFFFF;
  1676. text-align:left;
  1677. }
  1678. #u4175 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:1916px;
  1682. top:35px;
  1683. width:41px;
  1684. height:29px;
  1685. display:flex;
  1686. transition:none;
  1687. transform-origin:50% 50%;
  1688. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:18px;
  1692. color:#FFFFFF;
  1693. text-align:left;
  1694. }
  1695. #u4175 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u4175_text {
  1703. border-width:0px;
  1704. white-space:nowrap;
  1705. text-transform:none;
  1706. }
  1707. #u4176 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:1559px;
  1711. top:90px;
  1712. width:180px;
  1713. height:180px;
  1714. display:flex;
  1715. transition:none;
  1716. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. }
  1720. #u4176 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:2px 2px 2px 2px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u4176_img {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:180px;
  1733. height:180px;
  1734. }
  1735. #u4176_text {
  1736. border-width:0px;
  1737. word-wrap:break-word;
  1738. text-transform:none;
  1739. }
  1740. #u4177_div {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:149px;
  1746. height:34px;
  1747. background:inherit;
  1748. background-color:rgba(245, 154, 35, 0);
  1749. border-left:0px;
  1750. border-top:0px;
  1751. border-right:0px;
  1752. border-radius:0px;
  1753. border-bottom-right-radius:0px;
  1754. border-bottom-left-radius:0px;
  1755. filter:drop-shadow(none);
  1756. transition:none;
  1757. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1758. font-weight:500;
  1759. font-style:normal;
  1760. font-size:18px;
  1761. color:#FFFFFF;
  1762. text-align:left;
  1763. line-height:30px;
  1764. }
  1765. #u4177 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:1759px;
  1769. top:90px;
  1770. width:149px;
  1771. height:34px;
  1772. display:flex;
  1773. transition:none;
  1774. transform-origin:50% 50%;
  1775. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  1776. font-weight:500;
  1777. font-style:normal;
  1778. font-size:18px;
  1779. color:#FFFFFF;
  1780. text-align:left;
  1781. line-height:30px;
  1782. }
  1783. #u4177 .text {
  1784. position:absolute;
  1785. align-self:flex-start;
  1786. padding:2px 2px 2px 2px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u4177_text {
  1791. border-width:0px;
  1792. white-space:nowrap;
  1793. text-transform:none;
  1794. }
  1795. #u4178_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:60px;
  1801. height:30px;
  1802. background:inherit;
  1803. background-color:rgba(245, 154, 35, 1);
  1804. box-sizing:border-box;
  1805. border-width:1px;
  1806. border-style:solid;
  1807. border-color:rgba(245, 154, 35, 1);
  1808. border-radius:4px;
  1809. filter:drop-shadow(none);
  1810. transition:none;
  1811. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:14px;
  1815. color:#FFFFFF;
  1816. }
  1817. #u4178 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:1896px;
  1821. top:277px;
  1822. width:60px;
  1823. height:30px;
  1824. display:flex;
  1825. transition:none;
  1826. transform-origin:50% 50%;
  1827. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:14px;
  1831. color:#FFFFFF;
  1832. }
  1833. #u4178 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:2px 2px 2px 2px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u4178_text {
  1841. border-width:0px;
  1842. word-wrap:break-word;
  1843. text-transform:none;
  1844. }
  1845. #u4179_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:174px;
  1851. height:20px;
  1852. background:inherit;
  1853. background-color:rgba(245, 154, 35, 0);
  1854. border-left:0px;
  1855. border-top:0px;
  1856. border-right:0px;
  1857. border-radius:0px;
  1858. border-bottom-right-radius:0px;
  1859. border-bottom-left-radius:0px;
  1860. filter:drop-shadow(none);
  1861. transition:none;
  1862. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:11px;
  1866. color:#FFFFFF;
  1867. text-align:left;
  1868. }
  1869. #u4179 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:1759px;
  1873. top:233px;
  1874. width:174px;
  1875. height:20px;
  1876. display:flex;
  1877. transition:none;
  1878. transform-origin:50% 50%;
  1879. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:11px;
  1883. color:#FFFFFF;
  1884. text-align:left;
  1885. }
  1886. #u4179 .text {
  1887. position:absolute;
  1888. align-self:flex-start;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u4179_text {
  1894. border-width:0px;
  1895. white-space:nowrap;
  1896. text-transform:none;
  1897. }
  1898. #u4180 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:0px;
  1904. height:0px;
  1905. }
  1906. #u4181_div {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:202px;
  1912. height:30px;
  1913. background:inherit;
  1914. background-color:rgba(255, 255, 255, 0.09803921568627451);
  1915. border-radius:0px;
  1916. filter:drop-shadow(none);
  1917. transition:none;
  1918. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:12px;
  1922. color:rgba(255, 255, 255, 0.6980392156862745);
  1923. }
  1924. #u4181 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:1759px;
  1928. top:134px;
  1929. width:202px;
  1930. height:30px;
  1931. display:flex;
  1932. transition:none;
  1933. transform-origin:50% 50%;
  1934. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:12px;
  1938. color:rgba(255, 255, 255, 0.6980392156862745);
  1939. }
  1940. #u4181 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 2px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u4181_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. visibility:hidden;
  1952. }
  1953. #u4182_div {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:61px;
  1959. height:24px;
  1960. background:inherit;
  1961. background-color:rgba(245, 154, 35, 0);
  1962. border-left:0px;
  1963. border-top:0px;
  1964. border-right:0px;
  1965. border-radius:0px;
  1966. border-bottom-right-radius:0px;
  1967. border-bottom-left-radius:0px;
  1968. filter:drop-shadow(none);
  1969. transition:none;
  1970. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:14px;
  1974. color:#FFFFFF;
  1975. text-align:left;
  1976. }
  1977. #u4182 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:1769px;
  1981. top:137px;
  1982. width:61px;
  1983. height:24px;
  1984. display:flex;
  1985. transition:none;
  1986. transform-origin:50% 50%;
  1987. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:14px;
  1991. color:#FFFFFF;
  1992. text-align:left;
  1993. }
  1994. #u4182 .text {
  1995. position:absolute;
  1996. align-self:flex-start;
  1997. padding:2px 2px 2px 2px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u4182_text {
  2002. border-width:0px;
  2003. white-space:nowrap;
  2004. text-transform:none;
  2005. }
  2006. #u4183_div {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:61px;
  2012. height:24px;
  2013. background:inherit;
  2014. background-color:rgba(245, 154, 35, 0);
  2015. border-left:0px;
  2016. border-top:0px;
  2017. border-right:0px;
  2018. border-radius:0px;
  2019. border-bottom-right-radius:0px;
  2020. border-bottom-left-radius:0px;
  2021. filter:drop-shadow(none);
  2022. transition:none;
  2023. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. color:#FFFFFF;
  2028. text-align:left;
  2029. }
  2030. #u4183 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:1839px;
  2034. top:137px;
  2035. width:61px;
  2036. height:24px;
  2037. display:flex;
  2038. transition:none;
  2039. transform-origin:50% 50%;
  2040. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:14px;
  2044. color:#FFFFFF;
  2045. text-align:left;
  2046. }
  2047. #u4183 .text {
  2048. position:absolute;
  2049. align-self:flex-start;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u4183_text {
  2055. border-width:0px;
  2056. white-space:nowrap;
  2057. text-transform:none;
  2058. }
  2059. #u4184 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:0px;
  2065. height:0px;
  2066. }
  2067. #u4185_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:202px;
  2073. height:30px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 0.09803921568627451);
  2076. border-radius:0px;
  2077. filter:drop-shadow(none);
  2078. transition:none;
  2079. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:12px;
  2083. color:rgba(255, 255, 255, 0.6980392156862745);
  2084. }
  2085. #u4185 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:1759px;
  2089. top:165px;
  2090. width:202px;
  2091. height:30px;
  2092. display:flex;
  2093. transition:none;
  2094. transform-origin:50% 50%;
  2095. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:12px;
  2099. color:rgba(255, 255, 255, 0.6980392156862745);
  2100. }
  2101. #u4185 .text {
  2102. position:absolute;
  2103. align-self:center;
  2104. padding:2px 2px 2px 2px;
  2105. box-sizing:border-box;
  2106. width:100%;
  2107. }
  2108. #u4185_text {
  2109. border-width:0px;
  2110. word-wrap:break-word;
  2111. text-transform:none;
  2112. visibility:hidden;
  2113. }
  2114. #u4186_div {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:61px;
  2120. height:24px;
  2121. background:inherit;
  2122. background-color:rgba(245, 154, 35, 0);
  2123. border-left:0px;
  2124. border-top:0px;
  2125. border-right:0px;
  2126. border-radius:0px;
  2127. border-bottom-right-radius:0px;
  2128. border-bottom-left-radius:0px;
  2129. filter:drop-shadow(none);
  2130. transition:none;
  2131. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2132. font-weight:400;
  2133. font-style:normal;
  2134. font-size:14px;
  2135. color:#FFFFFF;
  2136. text-align:left;
  2137. }
  2138. #u4186 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:1769px;
  2142. top:168px;
  2143. width:61px;
  2144. height:24px;
  2145. display:flex;
  2146. transition:none;
  2147. transform-origin:50% 50%;
  2148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:14px;
  2152. color:#FFFFFF;
  2153. text-align:left;
  2154. }
  2155. #u4186 .text {
  2156. position:absolute;
  2157. align-self:flex-start;
  2158. padding:2px 2px 2px 2px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u4186_text {
  2163. border-width:0px;
  2164. white-space:nowrap;
  2165. text-transform:none;
  2166. }
  2167. #u4187_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:103px;
  2173. height:24px;
  2174. background:inherit;
  2175. background-color:rgba(245, 154, 35, 0);
  2176. border-left:0px;
  2177. border-top:0px;
  2178. border-right:0px;
  2179. border-radius:0px;
  2180. border-bottom-right-radius:0px;
  2181. border-bottom-left-radius:0px;
  2182. filter:drop-shadow(none);
  2183. transition:none;
  2184. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:14px;
  2188. color:#FFFFFF;
  2189. text-align:left;
  2190. }
  2191. #u4187 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:1842px;
  2195. top:168px;
  2196. width:103px;
  2197. height:24px;
  2198. display:flex;
  2199. transition:none;
  2200. transform-origin:50% 50%;
  2201. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:14px;
  2205. color:#FFFFFF;
  2206. text-align:left;
  2207. }
  2208. #u4187 .text {
  2209. position:absolute;
  2210. align-self:flex-start;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u4187_text {
  2216. border-width:0px;
  2217. white-space:nowrap;
  2218. text-transform:none;
  2219. }
  2220. #u4188 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:0px;
  2226. height:0px;
  2227. }
  2228. #u4189_div {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:202px;
  2234. height:30px;
  2235. background:inherit;
  2236. background-color:rgba(255, 255, 255, 0.09803921568627451);
  2237. border-radius:0px;
  2238. filter:drop-shadow(none);
  2239. transition:none;
  2240. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:12px;
  2244. color:rgba(255, 255, 255, 0.6980392156862745);
  2245. }
  2246. #u4189 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:1759px;
  2250. top:196px;
  2251. width:202px;
  2252. height:30px;
  2253. display:flex;
  2254. transition:none;
  2255. transform-origin:50% 50%;
  2256. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:12px;
  2260. color:rgba(255, 255, 255, 0.6980392156862745);
  2261. }
  2262. #u4189 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u4189_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. visibility:hidden;
  2274. }
  2275. #u4190_div {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:61px;
  2281. height:24px;
  2282. background:inherit;
  2283. background-color:rgba(245, 154, 35, 0);
  2284. border-left:0px;
  2285. border-top:0px;
  2286. border-right:0px;
  2287. border-radius:0px;
  2288. border-bottom-right-radius:0px;
  2289. border-bottom-left-radius:0px;
  2290. filter:drop-shadow(none);
  2291. transition:none;
  2292. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:14px;
  2296. color:#FFFFFF;
  2297. text-align:left;
  2298. }
  2299. #u4190 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:1769px;
  2303. top:199px;
  2304. width:61px;
  2305. height:24px;
  2306. display:flex;
  2307. transition:none;
  2308. transform-origin:50% 50%;
  2309. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:14px;
  2313. color:#FFFFFF;
  2314. text-align:left;
  2315. }
  2316. #u4190 .text {
  2317. position:absolute;
  2318. align-self:flex-start;
  2319. padding:2px 2px 2px 2px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u4190_text {
  2324. border-width:0px;
  2325. white-space:nowrap;
  2326. text-transform:none;
  2327. }
  2328. #u4191_div {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:95px;
  2334. height:24px;
  2335. background:inherit;
  2336. background-color:rgba(245, 154, 35, 0);
  2337. border-left:0px;
  2338. border-top:0px;
  2339. border-right:0px;
  2340. border-radius:0px;
  2341. border-bottom-right-radius:0px;
  2342. border-bottom-left-radius:0px;
  2343. filter:drop-shadow(none);
  2344. transition:none;
  2345. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:14px;
  2349. color:#FFFFFF;
  2350. text-align:left;
  2351. }
  2352. #u4191 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:1840px;
  2356. top:199px;
  2357. width:95px;
  2358. height:24px;
  2359. display:flex;
  2360. transition:none;
  2361. transform-origin:50% 50%;
  2362. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:14px;
  2366. color:#FFFFFF;
  2367. text-align:left;
  2368. }
  2369. #u4191 .text {
  2370. position:absolute;
  2371. align-self:flex-start;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u4191_text {
  2377. border-width:0px;
  2378. white-space:nowrap;
  2379. text-transform:none;
  2380. }
  2381. #u4192 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:0px;
  2387. height:0px;
  2388. }
  2389. #u4193_div {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:440px;
  2395. height:300px;
  2396. background:inherit;
  2397. background-color:rgba(95, 72, 47, 1);
  2398. box-sizing:border-box;
  2399. border-width:2px;
  2400. border-style:solid;
  2401. border-color:rgba(245, 154, 35, 1);
  2402. border-radius:10px;
  2403. filter:drop-shadow(none);
  2404. transition:none;
  2405. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:12px;
  2409. color:#FFFFFF;
  2410. text-align:left;
  2411. }
  2412. #u4193 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:1539px;
  2416. top:345px;
  2417. width:440px;
  2418. height:300px;
  2419. display:flex;
  2420. transition:none;
  2421. transform-origin:50% 50%;
  2422. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:12px;
  2426. color:#FFFFFF;
  2427. text-align:left;
  2428. }
  2429. #u4193 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 10px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u4193_text {
  2437. border-width:0px;
  2438. word-wrap:break-word;
  2439. text-transform:none;
  2440. visibility:hidden;
  2441. }
  2442. #u4194 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:0px;
  2448. height:0px;
  2449. }
  2450. #u4195_div {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:440px;
  2456. height:40px;
  2457. background:inherit;
  2458. background-color:rgba(221, 142, 35, 1);
  2459. box-sizing:border-box;
  2460. border-width:2px;
  2461. border-style:solid;
  2462. border-color:rgba(245, 154, 35, 1);
  2463. border-radius:10px;
  2464. border-bottom-right-radius:0px;
  2465. border-bottom-left-radius:0px;
  2466. filter:drop-shadow(none);
  2467. transition:none;
  2468. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:12px;
  2472. color:#FFFFFF;
  2473. text-align:left;
  2474. }
  2475. #u4195 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:1539px;
  2479. top:345px;
  2480. width:440px;
  2481. height:40px;
  2482. display:flex;
  2483. transition:none;
  2484. transform-origin:50% 50%;
  2485. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. color:#FFFFFF;
  2490. text-align:left;
  2491. }
  2492. #u4195 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:2px 2px 2px 10px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u4195_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. visibility:hidden;
  2504. }
  2505. #u4196_div {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:77px;
  2511. height:29px;
  2512. background:inherit;
  2513. background-color:rgba(245, 154, 35, 0);
  2514. border-left:0px;
  2515. border-top:0px;
  2516. border-right:0px;
  2517. border-radius:0px;
  2518. border-bottom-right-radius:0px;
  2519. border-bottom-left-radius:0px;
  2520. filter:drop-shadow(none);
  2521. transition:none;
  2522. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:18px;
  2526. color:#FFFFFF;
  2527. text-align:left;
  2528. }
  2529. #u4196 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:1559px;
  2533. top:350px;
  2534. width:77px;
  2535. height:29px;
  2536. display:flex;
  2537. transition:none;
  2538. transform-origin:50% 50%;
  2539. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:18px;
  2543. color:#FFFFFF;
  2544. text-align:left;
  2545. }
  2546. #u4196 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 2px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u4196_text {
  2554. border-width:0px;
  2555. white-space:nowrap;
  2556. text-transform:none;
  2557. }
  2558. #u4197_div {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:41px;
  2564. height:29px;
  2565. background:inherit;
  2566. background-color:rgba(245, 154, 35, 0);
  2567. border-left:0px;
  2568. border-top:0px;
  2569. border-right:0px;
  2570. border-radius:0px;
  2571. border-bottom-right-radius:0px;
  2572. border-bottom-left-radius:0px;
  2573. filter:drop-shadow(none);
  2574. transition:none;
  2575. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:18px;
  2579. color:#FFFFFF;
  2580. text-align:left;
  2581. }
  2582. #u4197 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:1916px;
  2586. top:350px;
  2587. width:41px;
  2588. height:29px;
  2589. display:flex;
  2590. transition:none;
  2591. transform-origin:50% 50%;
  2592. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:18px;
  2596. color:#FFFFFF;
  2597. text-align:left;
  2598. }
  2599. #u4197 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 2px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u4197_text {
  2607. border-width:0px;
  2608. white-space:nowrap;
  2609. text-transform:none;
  2610. }
  2611. #u4198 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:1559px;
  2615. top:405px;
  2616. width:180px;
  2617. height:180px;
  2618. display:flex;
  2619. transition:none;
  2620. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. }
  2624. #u4198 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u4198_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:180px;
  2637. height:180px;
  2638. }
  2639. #u4198_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u4199_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:149px;
  2651. height:34px;
  2652. background:inherit;
  2653. background-color:rgba(245, 154, 35, 0);
  2654. border-left:0px;
  2655. border-top:0px;
  2656. border-right:0px;
  2657. border-radius:0px;
  2658. border-bottom-right-radius:0px;
  2659. border-bottom-left-radius:0px;
  2660. filter:drop-shadow(none);
  2661. transition:none;
  2662. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2663. font-weight:500;
  2664. font-style:normal;
  2665. font-size:18px;
  2666. color:#FFFFFF;
  2667. text-align:left;
  2668. line-height:30px;
  2669. }
  2670. #u4199 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:1759px;
  2674. top:405px;
  2675. width:149px;
  2676. height:34px;
  2677. display:flex;
  2678. transition:none;
  2679. transform-origin:50% 50%;
  2680. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2681. font-weight:500;
  2682. font-style:normal;
  2683. font-size:18px;
  2684. color:#FFFFFF;
  2685. text-align:left;
  2686. line-height:30px;
  2687. }
  2688. #u4199 .text {
  2689. position:absolute;
  2690. align-self:flex-start;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u4199_text {
  2696. border-width:0px;
  2697. white-space:nowrap;
  2698. text-transform:none;
  2699. }
  2700. #u4200 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:1636px;
  2704. top:482px;
  2705. width:27px;
  2706. height:27px;
  2707. display:flex;
  2708. transition:none;
  2709. }
  2710. #u4200 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u4200_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:27px;
  2723. height:27px;
  2724. }
  2725. #u4200_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u4201_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:174px;
  2737. height:20px;
  2738. background:inherit;
  2739. background-color:rgba(245, 154, 35, 0);
  2740. border-left:0px;
  2741. border-top:0px;
  2742. border-right:0px;
  2743. border-radius:0px;
  2744. border-bottom-right-radius:0px;
  2745. border-bottom-left-radius:0px;
  2746. filter:drop-shadow(none);
  2747. transition:none;
  2748. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2749. font-weight:400;
  2750. font-style:normal;
  2751. font-size:11px;
  2752. color:#FFFFFF;
  2753. text-align:left;
  2754. }
  2755. #u4201 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:1759px;
  2759. top:548px;
  2760. width:174px;
  2761. height:20px;
  2762. display:flex;
  2763. transition:none;
  2764. transform-origin:50% 50%;
  2765. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:11px;
  2769. color:#FFFFFF;
  2770. text-align:left;
  2771. }
  2772. #u4201 .text {
  2773. position:absolute;
  2774. align-self:flex-start;
  2775. padding:2px 2px 2px 2px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u4201_text {
  2780. border-width:0px;
  2781. white-space:nowrap;
  2782. text-transform:none;
  2783. }
  2784. #u4202 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:0px;
  2790. height:0px;
  2791. }
  2792. #u4203_div {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:202px;
  2798. height:30px;
  2799. background:inherit;
  2800. background-color:rgba(255, 255, 255, 0.09803921568627451);
  2801. border-radius:0px;
  2802. filter:drop-shadow(none);
  2803. transition:none;
  2804. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:12px;
  2808. color:rgba(255, 255, 255, 0.6980392156862745);
  2809. }
  2810. #u4203 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:1759px;
  2814. top:449px;
  2815. width:202px;
  2816. height:30px;
  2817. display:flex;
  2818. transition:none;
  2819. transform-origin:50% 50%;
  2820. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:12px;
  2824. color:rgba(255, 255, 255, 0.6980392156862745);
  2825. }
  2826. #u4203 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 2px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u4203_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. visibility:hidden;
  2838. }
  2839. #u4204_div {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:61px;
  2845. height:24px;
  2846. background:inherit;
  2847. background-color:rgba(245, 154, 35, 0);
  2848. border-left:0px;
  2849. border-top:0px;
  2850. border-right:0px;
  2851. border-radius:0px;
  2852. border-bottom-right-radius:0px;
  2853. border-bottom-left-radius:0px;
  2854. filter:drop-shadow(none);
  2855. transition:none;
  2856. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:14px;
  2860. color:#FFFFFF;
  2861. text-align:left;
  2862. }
  2863. #u4204 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:1769px;
  2867. top:452px;
  2868. width:61px;
  2869. height:24px;
  2870. display:flex;
  2871. transition:none;
  2872. transform-origin:50% 50%;
  2873. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:14px;
  2877. color:#FFFFFF;
  2878. text-align:left;
  2879. }
  2880. #u4204 .text {
  2881. position:absolute;
  2882. align-self:flex-start;
  2883. padding:2px 2px 2px 2px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u4204_text {
  2888. border-width:0px;
  2889. white-space:nowrap;
  2890. text-transform:none;
  2891. }
  2892. #u4205_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:61px;
  2898. height:24px;
  2899. background:inherit;
  2900. background-color:rgba(245, 154, 35, 0);
  2901. border-left:0px;
  2902. border-top:0px;
  2903. border-right:0px;
  2904. border-radius:0px;
  2905. border-bottom-right-radius:0px;
  2906. border-bottom-left-radius:0px;
  2907. filter:drop-shadow(none);
  2908. transition:none;
  2909. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:14px;
  2913. color:#FFFFFF;
  2914. text-align:left;
  2915. }
  2916. #u4205 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:1839px;
  2920. top:452px;
  2921. width:61px;
  2922. height:24px;
  2923. display:flex;
  2924. transition:none;
  2925. transform-origin:50% 50%;
  2926. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:14px;
  2930. color:#FFFFFF;
  2931. text-align:left;
  2932. }
  2933. #u4205 .text {
  2934. position:absolute;
  2935. align-self:flex-start;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u4205_text {
  2941. border-width:0px;
  2942. white-space:nowrap;
  2943. text-transform:none;
  2944. }
  2945. #u4206 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:0px;
  2951. height:0px;
  2952. }
  2953. #u4207_div {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:202px;
  2959. height:30px;
  2960. background:inherit;
  2961. background-color:rgba(255, 255, 255, 0.09803921568627451);
  2962. border-radius:0px;
  2963. filter:drop-shadow(none);
  2964. transition:none;
  2965. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:12px;
  2969. color:rgba(255, 255, 255, 0.6980392156862745);
  2970. }
  2971. #u4207 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:1759px;
  2975. top:480px;
  2976. width:202px;
  2977. height:30px;
  2978. display:flex;
  2979. transition:none;
  2980. transform-origin:50% 50%;
  2981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. color:rgba(255, 255, 255, 0.6980392156862745);
  2986. }
  2987. #u4207 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u4207_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u4208_div {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:61px;
  3006. height:24px;
  3007. background:inherit;
  3008. background-color:rgba(245, 154, 35, 0);
  3009. border-left:0px;
  3010. border-top:0px;
  3011. border-right:0px;
  3012. border-radius:0px;
  3013. border-bottom-right-radius:0px;
  3014. border-bottom-left-radius:0px;
  3015. filter:drop-shadow(none);
  3016. transition:none;
  3017. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:14px;
  3021. color:#FFFFFF;
  3022. text-align:left;
  3023. }
  3024. #u4208 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:1769px;
  3028. top:483px;
  3029. width:61px;
  3030. height:24px;
  3031. display:flex;
  3032. transition:none;
  3033. transform-origin:50% 50%;
  3034. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:14px;
  3038. color:#FFFFFF;
  3039. text-align:left;
  3040. }
  3041. #u4208 .text {
  3042. position:absolute;
  3043. align-self:flex-start;
  3044. padding:2px 2px 2px 2px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u4208_text {
  3049. border-width:0px;
  3050. white-space:nowrap;
  3051. text-transform:none;
  3052. }
  3053. #u4209_div {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:46px;
  3059. height:24px;
  3060. background:inherit;
  3061. background-color:rgba(245, 154, 35, 0);
  3062. border-left:0px;
  3063. border-top:0px;
  3064. border-right:0px;
  3065. border-radius:0px;
  3066. border-bottom-right-radius:0px;
  3067. border-bottom-left-radius:0px;
  3068. filter:drop-shadow(none);
  3069. transition:none;
  3070. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:14px;
  3074. color:#FFFFFF;
  3075. text-align:left;
  3076. }
  3077. #u4209 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:1842px;
  3081. top:483px;
  3082. width:46px;
  3083. height:24px;
  3084. display:flex;
  3085. transition:none;
  3086. transform-origin:50% 50%;
  3087. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:14px;
  3091. color:#FFFFFF;
  3092. text-align:left;
  3093. }
  3094. #u4209 .text {
  3095. position:absolute;
  3096. align-self:flex-start;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u4209_text {
  3102. border-width:0px;
  3103. white-space:nowrap;
  3104. text-transform:none;
  3105. }
  3106. #u4210 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:0px;
  3112. height:0px;
  3113. }
  3114. #u4211_div {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:202px;
  3120. height:30px;
  3121. background:inherit;
  3122. background-color:rgba(255, 255, 255, 0.09803921568627451);
  3123. border-radius:0px;
  3124. filter:drop-shadow(none);
  3125. transition:none;
  3126. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:12px;
  3130. color:rgba(255, 255, 255, 0.6980392156862745);
  3131. }
  3132. #u4211 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:1759px;
  3136. top:511px;
  3137. width:202px;
  3138. height:30px;
  3139. display:flex;
  3140. transition:none;
  3141. transform-origin:50% 50%;
  3142. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:12px;
  3146. color:rgba(255, 255, 255, 0.6980392156862745);
  3147. }
  3148. #u4211 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 2px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u4211_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. visibility:hidden;
  3160. }
  3161. #u4212_div {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:61px;
  3167. height:24px;
  3168. background:inherit;
  3169. background-color:rgba(245, 154, 35, 0);
  3170. border-left:0px;
  3171. border-top:0px;
  3172. border-right:0px;
  3173. border-radius:0px;
  3174. border-bottom-right-radius:0px;
  3175. border-bottom-left-radius:0px;
  3176. filter:drop-shadow(none);
  3177. transition:none;
  3178. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:14px;
  3182. color:#FFFFFF;
  3183. text-align:left;
  3184. }
  3185. #u4212 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:1769px;
  3189. top:514px;
  3190. width:61px;
  3191. height:24px;
  3192. display:flex;
  3193. transition:none;
  3194. transform-origin:50% 50%;
  3195. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:14px;
  3199. color:#FFFFFF;
  3200. text-align:left;
  3201. }
  3202. #u4212 .text {
  3203. position:absolute;
  3204. align-self:flex-start;
  3205. padding:2px 2px 2px 2px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u4212_text {
  3210. border-width:0px;
  3211. white-space:nowrap;
  3212. text-transform:none;
  3213. }
  3214. #u4213_div {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:95px;
  3220. height:24px;
  3221. background:inherit;
  3222. background-color:rgba(245, 154, 35, 0);
  3223. border-left:0px;
  3224. border-top:0px;
  3225. border-right:0px;
  3226. border-radius:0px;
  3227. border-bottom-right-radius:0px;
  3228. border-bottom-left-radius:0px;
  3229. filter:drop-shadow(none);
  3230. transition:none;
  3231. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:14px;
  3235. color:#FFFFFF;
  3236. text-align:left;
  3237. }
  3238. #u4213 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1840px;
  3242. top:514px;
  3243. width:95px;
  3244. height:24px;
  3245. display:flex;
  3246. transition:none;
  3247. transform-origin:50% 50%;
  3248. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:14px;
  3252. color:#FFFFFF;
  3253. text-align:left;
  3254. }
  3255. #u4213 .text {
  3256. position:absolute;
  3257. align-self:flex-start;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u4213_text {
  3263. border-width:0px;
  3264. white-space:nowrap;
  3265. text-transform:none;
  3266. }
  3267. #u4214_div {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:60px;
  3273. height:30px;
  3274. background:inherit;
  3275. background-color:rgba(245, 154, 35, 1);
  3276. box-sizing:border-box;
  3277. border-width:1px;
  3278. border-style:solid;
  3279. border-color:rgba(245, 154, 35, 1);
  3280. border-radius:4px;
  3281. filter:drop-shadow(none);
  3282. transition:none;
  3283. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:14px;
  3287. color:#FFFFFF;
  3288. }
  3289. #u4214 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:1898px;
  3293. top:595px;
  3294. width:60px;
  3295. height:30px;
  3296. display:flex;
  3297. transition:none;
  3298. transform-origin:50% 50%;
  3299. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:14px;
  3303. color:#FFFFFF;
  3304. }
  3305. #u4214 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:2px 2px 2px 2px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u4214_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. }
  3317. #u4215_input {
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:73px;
  3322. height:22px;
  3323. padding:2px 2px 2px 2px;
  3324. font-family:"ArialMT", "Arial", sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. letter-spacing:normal;
  3329. color:#333333;
  3330. vertical-align:none;
  3331. text-align:left;
  3332. text-transform:none;
  3333. background-color:transparent;
  3334. border-color:transparent;
  3335. }
  3336. #u4215_input.disabled {
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:73px;
  3341. height:22px;
  3342. padding:2px 2px 2px 2px;
  3343. font-family:"ArialMT", "Arial", sans-serif;
  3344. font-weight:400;
  3345. font-style:normal;
  3346. font-size:12px;
  3347. letter-spacing:normal;
  3348. color:#333333;
  3349. vertical-align:none;
  3350. text-align:left;
  3351. text-transform:none;
  3352. background-color:transparent;
  3353. border-color:transparent;
  3354. }
  3355. #u4215_div {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:73px;
  3361. height:22px;
  3362. background:inherit;
  3363. background-color:rgba(255, 255, 255, 0);
  3364. border-radius:0px;
  3365. filter:drop-shadow(none);
  3366. transition:none;
  3367. font-size:12px;
  3368. color:#333333;
  3369. }
  3370. #u4215 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:1666px;
  3374. top:563px;
  3375. width:73px;
  3376. height:22px;
  3377. display:flex;
  3378. transition:none;
  3379. transform-origin:50% 50%;
  3380. font-size:12px;
  3381. color:#333333;
  3382. }
  3383. #u4215 .text {
  3384. position:absolute;
  3385. align-self:flex-start;
  3386. padding:2px 2px 2px 2px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u4215_div.disabled {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:73px;
  3396. height:22px;
  3397. background:inherit;
  3398. background-color:rgba(240, 240, 240, 1);
  3399. border-radius:0px;
  3400. filter:drop-shadow(none);
  3401. transition:none;
  3402. font-size:12px;
  3403. color:#333333;
  3404. }
  3405. #u4215.disabled {
  3406. }
  3407. .u4215_input_option {
  3408. font-size:12px;
  3409. }
  3410. #u4216_input {
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:73px;
  3415. height:22px;
  3416. padding:2px 2px 2px 2px;
  3417. font-family:"ArialMT", "Arial", sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. letter-spacing:normal;
  3422. color:#333333;
  3423. vertical-align:none;
  3424. text-align:left;
  3425. text-transform:none;
  3426. background-color:transparent;
  3427. border-color:transparent;
  3428. }
  3429. #u4216_input.disabled {
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:73px;
  3434. height:22px;
  3435. padding:2px 2px 2px 2px;
  3436. font-family:"ArialMT", "Arial", sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:12px;
  3440. letter-spacing:normal;
  3441. color:#333333;
  3442. vertical-align:none;
  3443. text-align:left;
  3444. text-transform:none;
  3445. background-color:transparent;
  3446. border-color:transparent;
  3447. }
  3448. #u4216_div {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:73px;
  3454. height:22px;
  3455. background:inherit;
  3456. background-color:rgba(255, 255, 255, 0);
  3457. border-radius:0px;
  3458. filter:drop-shadow(none);
  3459. transition:none;
  3460. font-size:12px;
  3461. color:#333333;
  3462. }
  3463. #u4216 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:1589px;
  3467. top:563px;
  3468. width:73px;
  3469. height:22px;
  3470. display:flex;
  3471. transition:none;
  3472. transform-origin:50% 50%;
  3473. font-size:12px;
  3474. color:#333333;
  3475. }
  3476. #u4216 .text {
  3477. position:absolute;
  3478. align-self:flex-start;
  3479. padding:2px 2px 2px 2px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u4216_div.disabled {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:73px;
  3489. height:22px;
  3490. background:inherit;
  3491. background-color:rgba(240, 240, 240, 1);
  3492. border-radius:0px;
  3493. filter:drop-shadow(none);
  3494. transition:none;
  3495. font-size:12px;
  3496. color:#333333;
  3497. }
  3498. #u4216.disabled {
  3499. }
  3500. .u4216_input_option {
  3501. font-size:12px;
  3502. }
  3503. #u4217 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:0px;
  3509. height:0px;
  3510. }
  3511. #u4218_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:440px;
  3517. height:300px;
  3518. background:inherit;
  3519. background-color:rgba(95, 72, 47, 1);
  3520. box-sizing:border-box;
  3521. border-width:2px;
  3522. border-style:solid;
  3523. border-color:rgba(245, 154, 35, 1);
  3524. border-radius:10px;
  3525. filter:drop-shadow(none);
  3526. transition:none;
  3527. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. color:#FFFFFF;
  3532. text-align:left;
  3533. }
  3534. #u4218 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:1539px;
  3538. top:660px;
  3539. width:440px;
  3540. height:300px;
  3541. display:flex;
  3542. transition:none;
  3543. transform-origin:50% 50%;
  3544. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#FFFFFF;
  3549. text-align:left;
  3550. }
  3551. #u4218 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 10px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u4218_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u4219 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:0px;
  3570. height:0px;
  3571. }
  3572. #u4220_div {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:440px;
  3578. height:40px;
  3579. background:inherit;
  3580. background-color:rgba(221, 142, 35, 1);
  3581. box-sizing:border-box;
  3582. border-width:2px;
  3583. border-style:solid;
  3584. border-color:rgba(245, 154, 35, 1);
  3585. border-radius:10px;
  3586. border-bottom-right-radius:0px;
  3587. border-bottom-left-radius:0px;
  3588. filter:drop-shadow(none);
  3589. transition:none;
  3590. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:12px;
  3594. color:#FFFFFF;
  3595. text-align:left;
  3596. }
  3597. #u4220 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:1539px;
  3601. top:660px;
  3602. width:440px;
  3603. height:40px;
  3604. display:flex;
  3605. transition:none;
  3606. transform-origin:50% 50%;
  3607. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. color:#FFFFFF;
  3612. text-align:left;
  3613. }
  3614. #u4220 .text {
  3615. position:absolute;
  3616. align-self:center;
  3617. padding:2px 2px 2px 10px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u4220_text {
  3622. border-width:0px;
  3623. word-wrap:break-word;
  3624. text-transform:none;
  3625. visibility:hidden;
  3626. }
  3627. #u4221_div {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:77px;
  3633. height:29px;
  3634. background:inherit;
  3635. background-color:rgba(245, 154, 35, 0);
  3636. border-left:0px;
  3637. border-top:0px;
  3638. border-right:0px;
  3639. border-radius:0px;
  3640. border-bottom-right-radius:0px;
  3641. border-bottom-left-radius:0px;
  3642. filter:drop-shadow(none);
  3643. transition:none;
  3644. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:18px;
  3648. color:#FFFFFF;
  3649. text-align:left;
  3650. }
  3651. #u4221 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:1559px;
  3655. top:665px;
  3656. width:77px;
  3657. height:29px;
  3658. display:flex;
  3659. transition:none;
  3660. transform-origin:50% 50%;
  3661. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:18px;
  3665. color:#FFFFFF;
  3666. text-align:left;
  3667. }
  3668. #u4221 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 2px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u4221_text {
  3676. border-width:0px;
  3677. white-space:nowrap;
  3678. text-transform:none;
  3679. }
  3680. #u4222_div {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:41px;
  3686. height:29px;
  3687. background:inherit;
  3688. background-color:rgba(245, 154, 35, 0);
  3689. border-left:0px;
  3690. border-top:0px;
  3691. border-right:0px;
  3692. border-radius:0px;
  3693. border-bottom-right-radius:0px;
  3694. border-bottom-left-radius:0px;
  3695. filter:drop-shadow(none);
  3696. transition:none;
  3697. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:18px;
  3701. color:#FFFFFF;
  3702. text-align:left;
  3703. }
  3704. #u4222 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:1916px;
  3708. top:665px;
  3709. width:41px;
  3710. height:29px;
  3711. display:flex;
  3712. transition:none;
  3713. transform-origin:50% 50%;
  3714. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:18px;
  3718. color:#FFFFFF;
  3719. text-align:left;
  3720. }
  3721. #u4222 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 2px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u4222_text {
  3729. border-width:0px;
  3730. white-space:nowrap;
  3731. text-transform:none;
  3732. }
  3733. #u4223 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:1559px;
  3737. top:720px;
  3738. width:180px;
  3739. height:180px;
  3740. display:flex;
  3741. transition:none;
  3742. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. }
  3746. #u4223 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 2px 2px 2px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u4223_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:180px;
  3759. height:180px;
  3760. }
  3761. #u4223_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. }
  3766. #u4224_div {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:149px;
  3772. height:34px;
  3773. background:inherit;
  3774. background-color:rgba(245, 154, 35, 0);
  3775. border-left:0px;
  3776. border-top:0px;
  3777. border-right:0px;
  3778. border-radius:0px;
  3779. border-bottom-right-radius:0px;
  3780. border-bottom-left-radius:0px;
  3781. filter:drop-shadow(none);
  3782. transition:none;
  3783. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3784. font-weight:500;
  3785. font-style:normal;
  3786. font-size:18px;
  3787. color:#FFFFFF;
  3788. text-align:left;
  3789. line-height:30px;
  3790. }
  3791. #u4224 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:1759px;
  3795. top:720px;
  3796. width:149px;
  3797. height:34px;
  3798. display:flex;
  3799. transition:none;
  3800. transform-origin:50% 50%;
  3801. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  3802. font-weight:500;
  3803. font-style:normal;
  3804. font-size:18px;
  3805. color:#FFFFFF;
  3806. text-align:left;
  3807. line-height:30px;
  3808. }
  3809. #u4224 .text {
  3810. position:absolute;
  3811. align-self:flex-start;
  3812. padding:2px 2px 2px 2px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u4224_text {
  3817. border-width:0px;
  3818. white-space:nowrap;
  3819. text-transform:none;
  3820. }
  3821. #u4225_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:27px;
  3827. height:20px;
  3828. background:inherit;
  3829. background-color:rgba(245, 154, 35, 0);
  3830. border-left:0px;
  3831. border-top:0px;
  3832. border-right:0px;
  3833. border-radius:0px;
  3834. border-bottom-right-radius:0px;
  3835. border-bottom-left-radius:0px;
  3836. filter:drop-shadow(none);
  3837. transition:none;
  3838. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:11px;
  3842. color:#FFFFFF;
  3843. text-align:left;
  3844. }
  3845. #u4225 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:1760px;
  3849. top:753px;
  3850. width:27px;
  3851. height:20px;
  3852. display:flex;
  3853. transition:none;
  3854. transform-origin:50% 50%;
  3855. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:11px;
  3859. color:#FFFFFF;
  3860. text-align:left;
  3861. }
  3862. #u4225 .text {
  3863. position:absolute;
  3864. align-self:flex-start;
  3865. padding:2px 2px 2px 2px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u4225_text {
  3870. border-width:0px;
  3871. white-space:nowrap;
  3872. text-transform:none;
  3873. }
  3874. #u4226_div {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:71px;
  3880. height:20px;
  3881. background:inherit;
  3882. background-color:rgba(245, 154, 35, 0);
  3883. border-left:0px;
  3884. border-top:0px;
  3885. border-right:0px;
  3886. border-radius:0px;
  3887. border-bottom-right-radius:0px;
  3888. border-bottom-left-radius:0px;
  3889. filter:drop-shadow(none);
  3890. transition:none;
  3891. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:11px;
  3895. color:#FFFFFF;
  3896. text-align:left;
  3897. }
  3898. #u4226 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:1799px;
  3902. top:753px;
  3903. width:71px;
  3904. height:20px;
  3905. display:flex;
  3906. transition:none;
  3907. transform-origin:50% 50%;
  3908. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:11px;
  3912. color:#FFFFFF;
  3913. text-align:left;
  3914. }
  3915. #u4226 .text {
  3916. position:absolute;
  3917. align-self:flex-start;
  3918. padding:2px 2px 2px 2px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u4226_text {
  3923. border-width:0px;
  3924. white-space:nowrap;
  3925. text-transform:none;
  3926. }
  3927. #u4227_div {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:174px;
  3933. height:20px;
  3934. background:inherit;
  3935. background-color:rgba(245, 154, 35, 0);
  3936. border-left:0px;
  3937. border-top:0px;
  3938. border-right:0px;
  3939. border-radius:0px;
  3940. border-bottom-right-radius:0px;
  3941. border-bottom-left-radius:0px;
  3942. filter:drop-shadow(none);
  3943. transition:none;
  3944. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:11px;
  3948. color:#FFFFFF;
  3949. text-align:left;
  3950. }
  3951. #u4227 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:1760px;
  3955. top:879px;
  3956. width:174px;
  3957. height:20px;
  3958. display:flex;
  3959. transition:none;
  3960. transform-origin:50% 50%;
  3961. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:11px;
  3965. color:#FFFFFF;
  3966. text-align:left;
  3967. }
  3968. #u4227 .text {
  3969. position:absolute;
  3970. align-self:flex-start;
  3971. padding:2px 2px 2px 2px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u4227_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u4228 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:0px;
  3986. height:0px;
  3987. }
  3988. #u4229_div {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:202px;
  3994. height:30px;
  3995. background:inherit;
  3996. background-color:rgba(255, 255, 255, 0.09803921568627451);
  3997. border-radius:0px;
  3998. filter:drop-shadow(none);
  3999. transition:none;
  4000. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:12px;
  4004. color:rgba(255, 255, 255, 0.6980392156862745);
  4005. }
  4006. #u4229 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:1760px;
  4010. top:780px;
  4011. width:202px;
  4012. height:30px;
  4013. display:flex;
  4014. transition:none;
  4015. transform-origin:50% 50%;
  4016. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:12px;
  4020. color:rgba(255, 255, 255, 0.6980392156862745);
  4021. }
  4022. #u4229 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 2px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u4229_text {
  4030. border-width:0px;
  4031. word-wrap:break-word;
  4032. text-transform:none;
  4033. visibility:hidden;
  4034. }
  4035. #u4230_div {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:67px;
  4041. height:24px;
  4042. background:inherit;
  4043. background-color:rgba(245, 154, 35, 0);
  4044. border-left:0px;
  4045. border-top:0px;
  4046. border-right:0px;
  4047. border-radius:0px;
  4048. border-bottom-right-radius:0px;
  4049. border-bottom-left-radius:0px;
  4050. filter:drop-shadow(none);
  4051. transition:none;
  4052. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4053. font-weight:400;
  4054. font-style:normal;
  4055. font-size:14px;
  4056. color:#FFFFFF;
  4057. text-align:left;
  4058. }
  4059. #u4230 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:1770px;
  4063. top:783px;
  4064. width:67px;
  4065. height:24px;
  4066. display:flex;
  4067. transition:none;
  4068. transform-origin:50% 50%;
  4069. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:14px;
  4073. color:#FFFFFF;
  4074. text-align:left;
  4075. }
  4076. #u4230 .text {
  4077. position:absolute;
  4078. align-self:flex-start;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u4230_text {
  4084. border-width:0px;
  4085. white-space:nowrap;
  4086. text-transform:none;
  4087. }
  4088. #u4231_div {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:50px;
  4094. height:24px;
  4095. background:inherit;
  4096. background-color:rgba(245, 154, 35, 0);
  4097. border-left:0px;
  4098. border-top:0px;
  4099. border-right:0px;
  4100. border-radius:0px;
  4101. border-bottom-right-radius:0px;
  4102. border-bottom-left-radius:0px;
  4103. filter:drop-shadow(none);
  4104. transition:none;
  4105. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:14px;
  4109. color:#FFFFFF;
  4110. text-align:right;
  4111. }
  4112. #u4231 {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:1903px;
  4116. top:783px;
  4117. width:50px;
  4118. height:24px;
  4119. display:flex;
  4120. transition:none;
  4121. transform-origin:50% 50%;
  4122. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:14px;
  4126. color:#FFFFFF;
  4127. text-align:right;
  4128. }
  4129. #u4231 .text {
  4130. position:absolute;
  4131. align-self:flex-start;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u4231_text {
  4137. border-width:0px;
  4138. white-space:nowrap;
  4139. text-transform:none;
  4140. }
  4141. #u4232 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:0px;
  4147. height:0px;
  4148. }
  4149. #u4233_div {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:202px;
  4155. height:30px;
  4156. background:inherit;
  4157. background-color:rgba(255, 255, 255, 0.09803921568627451);
  4158. border-radius:0px;
  4159. filter:drop-shadow(none);
  4160. transition:none;
  4161. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:12px;
  4165. color:rgba(255, 255, 255, 0.6980392156862745);
  4166. }
  4167. #u4233 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:1760px;
  4171. top:811px;
  4172. width:202px;
  4173. height:30px;
  4174. display:flex;
  4175. transition:none;
  4176. transform-origin:50% 50%;
  4177. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:12px;
  4181. color:rgba(255, 255, 255, 0.6980392156862745);
  4182. }
  4183. #u4233 .text {
  4184. position:absolute;
  4185. align-self:center;
  4186. padding:2px 2px 2px 2px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u4233_text {
  4191. border-width:0px;
  4192. word-wrap:break-word;
  4193. text-transform:none;
  4194. visibility:hidden;
  4195. }
  4196. #u4234_div {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:69px;
  4202. height:24px;
  4203. background:inherit;
  4204. background-color:rgba(245, 154, 35, 0);
  4205. border-left:0px;
  4206. border-top:0px;
  4207. border-right:0px;
  4208. border-radius:0px;
  4209. border-bottom-right-radius:0px;
  4210. border-bottom-left-radius:0px;
  4211. filter:drop-shadow(none);
  4212. transition:none;
  4213. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. color:#FFFFFF;
  4218. text-align:left;
  4219. }
  4220. #u4234 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:1770px;
  4224. top:814px;
  4225. width:69px;
  4226. height:24px;
  4227. display:flex;
  4228. transition:none;
  4229. transform-origin:50% 50%;
  4230. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4231. font-weight:400;
  4232. font-style:normal;
  4233. font-size:14px;
  4234. color:#FFFFFF;
  4235. text-align:left;
  4236. }
  4237. #u4234 .text {
  4238. position:absolute;
  4239. align-self:flex-start;
  4240. padding:2px 2px 2px 2px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u4234_text {
  4245. border-width:0px;
  4246. white-space:nowrap;
  4247. text-transform:none;
  4248. }
  4249. #u4235_div {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:45px;
  4255. height:24px;
  4256. background:inherit;
  4257. background-color:rgba(245, 154, 35, 0);
  4258. border-left:0px;
  4259. border-top:0px;
  4260. border-right:0px;
  4261. border-radius:0px;
  4262. border-bottom-right-radius:0px;
  4263. border-bottom-left-radius:0px;
  4264. filter:drop-shadow(none);
  4265. transition:none;
  4266. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:14px;
  4270. color:#FFFFFF;
  4271. text-align:right;
  4272. }
  4273. #u4235 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:1908px;
  4277. top:814px;
  4278. width:45px;
  4279. height:24px;
  4280. display:flex;
  4281. transition:none;
  4282. transform-origin:50% 50%;
  4283. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:14px;
  4287. color:#FFFFFF;
  4288. text-align:right;
  4289. }
  4290. #u4235 .text {
  4291. position:absolute;
  4292. align-self:flex-start;
  4293. padding:2px 2px 2px 2px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u4235_text {
  4298. border-width:0px;
  4299. white-space:nowrap;
  4300. text-transform:none;
  4301. }
  4302. #u4236 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:0px;
  4308. height:0px;
  4309. }
  4310. #u4237_div {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:202px;
  4316. height:30px;
  4317. background:inherit;
  4318. background-color:rgba(255, 255, 255, 0.09803921568627451);
  4319. border-radius:0px;
  4320. filter:drop-shadow(none);
  4321. transition:none;
  4322. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:12px;
  4326. color:rgba(255, 255, 255, 0.6980392156862745);
  4327. }
  4328. #u4237 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:1760px;
  4332. top:842px;
  4333. width:202px;
  4334. height:30px;
  4335. display:flex;
  4336. transition:none;
  4337. transform-origin:50% 50%;
  4338. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. color:rgba(255, 255, 255, 0.6980392156862745);
  4343. }
  4344. #u4237 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u4237_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u4238_div {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:69px;
  4363. height:24px;
  4364. background:inherit;
  4365. background-color:rgba(245, 154, 35, 0);
  4366. border-left:0px;
  4367. border-top:0px;
  4368. border-right:0px;
  4369. border-radius:0px;
  4370. border-bottom-right-radius:0px;
  4371. border-bottom-left-radius:0px;
  4372. filter:drop-shadow(none);
  4373. transition:none;
  4374. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:14px;
  4378. color:#FFFFFF;
  4379. text-align:left;
  4380. }
  4381. #u4238 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:1770px;
  4385. top:845px;
  4386. width:69px;
  4387. height:24px;
  4388. display:flex;
  4389. transition:none;
  4390. transform-origin:50% 50%;
  4391. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:14px;
  4395. color:#FFFFFF;
  4396. text-align:left;
  4397. }
  4398. #u4238 .text {
  4399. position:absolute;
  4400. align-self:flex-start;
  4401. padding:2px 2px 2px 2px;
  4402. box-sizing:border-box;
  4403. width:100%;
  4404. }
  4405. #u4238_text {
  4406. border-width:0px;
  4407. white-space:nowrap;
  4408. text-transform:none;
  4409. }
  4410. #u4239_div {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:44px;
  4416. height:24px;
  4417. background:inherit;
  4418. background-color:rgba(245, 154, 35, 0);
  4419. border-left:0px;
  4420. border-top:0px;
  4421. border-right:0px;
  4422. border-radius:0px;
  4423. border-bottom-right-radius:0px;
  4424. border-bottom-left-radius:0px;
  4425. filter:drop-shadow(none);
  4426. transition:none;
  4427. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. font-size:14px;
  4431. color:#FFFFFF;
  4432. text-align:right;
  4433. }
  4434. #u4239 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:1909px;
  4438. top:845px;
  4439. width:44px;
  4440. height:24px;
  4441. display:flex;
  4442. transition:none;
  4443. transform-origin:50% 50%;
  4444. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:14px;
  4448. color:#FFFFFF;
  4449. text-align:right;
  4450. }
  4451. #u4239 .text {
  4452. position:absolute;
  4453. align-self:flex-start;
  4454. padding:2px 2px 2px 2px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u4239_text {
  4459. border-width:0px;
  4460. white-space:nowrap;
  4461. text-transform:none;
  4462. }
  4463. #u4240_div {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:60px;
  4469. height:30px;
  4470. background:inherit;
  4471. background-color:rgba(245, 154, 35, 1);
  4472. box-sizing:border-box;
  4473. border-width:1px;
  4474. border-style:solid;
  4475. border-color:rgba(245, 154, 35, 1);
  4476. border-radius:4px;
  4477. filter:drop-shadow(none);
  4478. transition:none;
  4479. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:14px;
  4483. color:#FFFFFF;
  4484. }
  4485. #u4240 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:1897px;
  4489. top:910px;
  4490. width:60px;
  4491. height:30px;
  4492. display:flex;
  4493. transition:none;
  4494. transform-origin:50% 50%;
  4495. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:14px;
  4499. color:#FFFFFF;
  4500. }
  4501. #u4240 .text {
  4502. position:absolute;
  4503. align-self:center;
  4504. padding:2px 2px 2px 2px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u4240_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. }
  4513. #u4241 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:0px;
  4519. height:0px;
  4520. }
  4521. #u4242_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:231px;
  4527. height:167px;
  4528. background:inherit;
  4529. background-color:rgba(245, 154, 35, 0.2);
  4530. box-sizing:border-box;
  4531. border-width:1px;
  4532. border-style:solid;
  4533. border-color:rgba(245, 154, 35, 0.4);
  4534. border-radius:0px;
  4535. filter:drop-shadow(none);
  4536. transition:none;
  4537. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:#FFFFFF;
  4542. text-align:left;
  4543. }
  4544. #u4242 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:33px;
  4548. top:521px;
  4549. width:231px;
  4550. height:167px;
  4551. display:flex;
  4552. transition:none;
  4553. transform-origin:50% 50%;
  4554. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:12px;
  4558. color:#FFFFFF;
  4559. text-align:left;
  4560. }
  4561. #u4242 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 10px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u4242_text {
  4569. border-width:0px;
  4570. word-wrap:break-word;
  4571. text-transform:none;
  4572. visibility:hidden;
  4573. }
  4574. #u4243 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:0px;
  4580. height:0px;
  4581. }
  4582. #u4244_div {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:61px;
  4588. height:17px;
  4589. background:inherit;
  4590. background-color:rgba(255, 255, 255, 0);
  4591. border-radius:0px;
  4592. filter:drop-shadow(none);
  4593. transition:none;
  4594. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:12px;
  4598. color:#FFFFFF;
  4599. }
  4600. #u4244 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:86px;
  4604. top:530px;
  4605. width:61px;
  4606. height:17px;
  4607. display:flex;
  4608. transition:none;
  4609. transform-origin:50% 50%;
  4610. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:12px;
  4614. color:#FFFFFF;
  4615. }
  4616. #u4244 .text {
  4617. position:absolute;
  4618. align-self:flex-start;
  4619. padding:0px 0px 0px 0px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u4244_text {
  4624. border-width:0px;
  4625. white-space:nowrap;
  4626. text-transform:none;
  4627. }
  4628. #u4245 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:42px;
  4632. top:533px;
  4633. width:38px;
  4634. height:37px;
  4635. display:flex;
  4636. transition:none;
  4637. }
  4638. #u4245 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:2px 2px 2px 2px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u4245_img {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:38px;
  4651. height:37px;
  4652. }
  4653. #u4245_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. visibility:hidden;
  4658. }
  4659. #u4246_div {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:27px;
  4665. height:17px;
  4666. background:inherit;
  4667. background-color:rgba(255, 255, 255, 0);
  4668. border-radius:0px;
  4669. filter:drop-shadow(none);
  4670. transition:none;
  4671. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. font-size:12px;
  4675. color:#FFFFFF;
  4676. }
  4677. #u4246 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:86px;
  4681. top:555px;
  4682. width:27px;
  4683. height:17px;
  4684. display:flex;
  4685. transition:none;
  4686. transform-origin:50% 50%;
  4687. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:12px;
  4691. color:#FFFFFF;
  4692. }
  4693. #u4246 .text {
  4694. position:absolute;
  4695. align-self:flex-start;
  4696. padding:0px 0px 0px 0px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u4246_text {
  4701. border-width:0px;
  4702. white-space:nowrap;
  4703. text-transform:none;
  4704. }
  4705. #u4247 {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:0px;
  4711. height:0px;
  4712. }
  4713. #u4248_div {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:49px;
  4719. height:17px;
  4720. background:inherit;
  4721. background-color:rgba(255, 255, 255, 0);
  4722. border-radius:0px;
  4723. filter:drop-shadow(none);
  4724. transition:none;
  4725. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:12px;
  4729. color:#FFFFFF;
  4730. }
  4731. #u4248 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:206px;
  4735. top:530px;
  4736. width:49px;
  4737. height:17px;
  4738. display:flex;
  4739. transition:none;
  4740. transform-origin:50% 50%;
  4741. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. color:#FFFFFF;
  4746. }
  4747. #u4248 .text {
  4748. position:absolute;
  4749. align-self:flex-start;
  4750. padding:0px 0px 0px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u4248_text {
  4755. border-width:0px;
  4756. white-space:nowrap;
  4757. text-transform:none;
  4758. }
  4759. #u4249 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:162px;
  4763. top:533px;
  4764. width:38px;
  4765. height:37px;
  4766. display:flex;
  4767. transition:none;
  4768. }
  4769. #u4249 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 2px 2px 2px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u4249_img {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:38px;
  4782. height:37px;
  4783. }
  4784. #u4249_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u4250_div {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:27px;
  4796. height:17px;
  4797. background:inherit;
  4798. background-color:rgba(255, 255, 255, 0);
  4799. border-radius:0px;
  4800. filter:drop-shadow(none);
  4801. transition:none;
  4802. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:12px;
  4806. color:#FFFFFF;
  4807. }
  4808. #u4250 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:206px;
  4812. top:555px;
  4813. width:27px;
  4814. height:17px;
  4815. display:flex;
  4816. transition:none;
  4817. transform-origin:50% 50%;
  4818. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. font-size:12px;
  4822. color:#FFFFFF;
  4823. }
  4824. #u4250 .text {
  4825. position:absolute;
  4826. align-self:flex-start;
  4827. padding:0px 0px 0px 0px;
  4828. box-sizing:border-box;
  4829. width:100%;
  4830. }
  4831. #u4250_text {
  4832. border-width:0px;
  4833. white-space:nowrap;
  4834. text-transform:none;
  4835. }
  4836. #u4251 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:0px;
  4842. height:0px;
  4843. }
  4844. #u4252_div {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:49px;
  4850. height:17px;
  4851. background:inherit;
  4852. background-color:rgba(255, 255, 255, 0);
  4853. border-radius:0px;
  4854. filter:drop-shadow(none);
  4855. transition:none;
  4856. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:12px;
  4860. color:#FFFFFF;
  4861. }
  4862. #u4252 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:86px;
  4866. top:582px;
  4867. width:49px;
  4868. height:17px;
  4869. display:flex;
  4870. transition:none;
  4871. transform-origin:50% 50%;
  4872. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:12px;
  4876. color:#FFFFFF;
  4877. }
  4878. #u4252 .text {
  4879. position:absolute;
  4880. align-self:flex-start;
  4881. padding:0px 0px 0px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u4252_text {
  4886. border-width:0px;
  4887. white-space:nowrap;
  4888. text-transform:none;
  4889. }
  4890. #u4253 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:42px;
  4894. top:585px;
  4895. width:38px;
  4896. height:37px;
  4897. display:flex;
  4898. transition:none;
  4899. }
  4900. #u4253 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u4253_img {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:38px;
  4913. height:37px;
  4914. }
  4915. #u4253_text {
  4916. border-width:0px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. visibility:hidden;
  4920. }
  4921. #u4254_div {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:27px;
  4927. height:17px;
  4928. background:inherit;
  4929. background-color:rgba(255, 255, 255, 0);
  4930. border-radius:0px;
  4931. filter:drop-shadow(none);
  4932. transition:none;
  4933. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4934. font-weight:400;
  4935. font-style:normal;
  4936. font-size:12px;
  4937. color:#FFFFFF;
  4938. }
  4939. #u4254 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:86px;
  4943. top:607px;
  4944. width:27px;
  4945. height:17px;
  4946. display:flex;
  4947. transition:none;
  4948. transform-origin:50% 50%;
  4949. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:12px;
  4953. color:#FFFFFF;
  4954. }
  4955. #u4254 .text {
  4956. position:absolute;
  4957. align-self:flex-start;
  4958. padding:0px 0px 0px 0px;
  4959. box-sizing:border-box;
  4960. width:100%;
  4961. }
  4962. #u4254_text {
  4963. border-width:0px;
  4964. white-space:nowrap;
  4965. text-transform:none;
  4966. }
  4967. #u4255 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:0px;
  4973. height:0px;
  4974. }
  4975. #u4256_div {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:49px;
  4981. height:17px;
  4982. background:inherit;
  4983. background-color:rgba(255, 255, 255, 0);
  4984. border-radius:0px;
  4985. filter:drop-shadow(none);
  4986. transition:none;
  4987. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:12px;
  4991. color:#FFFFFF;
  4992. }
  4993. #u4256 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:206px;
  4997. top:582px;
  4998. width:49px;
  4999. height:17px;
  5000. display:flex;
  5001. transition:none;
  5002. transform-origin:50% 50%;
  5003. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:12px;
  5007. color:#FFFFFF;
  5008. }
  5009. #u4256 .text {
  5010. position:absolute;
  5011. align-self:flex-start;
  5012. padding:0px 0px 0px 0px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u4256_text {
  5017. border-width:0px;
  5018. white-space:nowrap;
  5019. text-transform:none;
  5020. }
  5021. #u4257 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:162px;
  5025. top:585px;
  5026. width:38px;
  5027. height:37px;
  5028. display:flex;
  5029. transition:none;
  5030. }
  5031. #u4257 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 2px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u4257_img {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:38px;
  5044. height:37px;
  5045. }
  5046. #u4257_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. visibility:hidden;
  5051. }
  5052. #u4258_div {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:27px;
  5058. height:17px;
  5059. background:inherit;
  5060. background-color:rgba(255, 255, 255, 0);
  5061. border-radius:0px;
  5062. filter:drop-shadow(none);
  5063. transition:none;
  5064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:12px;
  5068. color:#FFFFFF;
  5069. }
  5070. #u4258 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:206px;
  5074. top:607px;
  5075. width:27px;
  5076. height:17px;
  5077. display:flex;
  5078. transition:none;
  5079. transform-origin:50% 50%;
  5080. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:12px;
  5084. color:#FFFFFF;
  5085. }
  5086. #u4258 .text {
  5087. position:absolute;
  5088. align-self:flex-start;
  5089. padding:0px 0px 0px 0px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u4258_text {
  5094. border-width:0px;
  5095. white-space:nowrap;
  5096. text-transform:none;
  5097. }
  5098. #u4259 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:0px;
  5104. height:0px;
  5105. }
  5106. #u4260_div {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:49px;
  5112. height:17px;
  5113. background:inherit;
  5114. background-color:rgba(255, 255, 255, 0);
  5115. border-radius:0px;
  5116. filter:drop-shadow(none);
  5117. transition:none;
  5118. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. color:#FFFFFF;
  5123. }
  5124. #u4260 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:86px;
  5128. top:634px;
  5129. width:49px;
  5130. height:17px;
  5131. display:flex;
  5132. transition:none;
  5133. transform-origin:50% 50%;
  5134. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:12px;
  5138. color:#FFFFFF;
  5139. }
  5140. #u4260 .text {
  5141. position:absolute;
  5142. align-self:flex-start;
  5143. padding:0px 0px 0px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u4260_text {
  5148. border-width:0px;
  5149. white-space:nowrap;
  5150. text-transform:none;
  5151. }
  5152. #u4261 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:42px;
  5156. top:637px;
  5157. width:38px;
  5158. height:37px;
  5159. display:flex;
  5160. transition:none;
  5161. }
  5162. #u4261 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 2px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u4261_img {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:38px;
  5175. height:37px;
  5176. }
  5177. #u4261_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u4262_div {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:27px;
  5189. height:17px;
  5190. background:inherit;
  5191. background-color:rgba(255, 255, 255, 0);
  5192. border-radius:0px;
  5193. filter:drop-shadow(none);
  5194. transition:none;
  5195. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:12px;
  5199. color:#FFFFFF;
  5200. }
  5201. #u4262 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:86px;
  5205. top:659px;
  5206. width:27px;
  5207. height:17px;
  5208. display:flex;
  5209. transition:none;
  5210. transform-origin:50% 50%;
  5211. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5212. font-weight:400;
  5213. font-style:normal;
  5214. font-size:12px;
  5215. color:#FFFFFF;
  5216. }
  5217. #u4262 .text {
  5218. position:absolute;
  5219. align-self:flex-start;
  5220. padding:0px 0px 0px 0px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u4262_text {
  5225. border-width:0px;
  5226. white-space:nowrap;
  5227. text-transform:none;
  5228. }
  5229. #u4263 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:0px;
  5235. height:0px;
  5236. }
  5237. #u4264_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:48px;
  5243. height:17px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0);
  5246. border-radius:0px;
  5247. filter:drop-shadow(none);
  5248. transition:none;
  5249. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:12px;
  5253. color:#FFFFFF;
  5254. }
  5255. #u4264 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:206px;
  5259. top:634px;
  5260. width:48px;
  5261. height:17px;
  5262. display:flex;
  5263. transition:none;
  5264. transform-origin:50% 50%;
  5265. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:#FFFFFF;
  5270. }
  5271. #u4264 .text {
  5272. position:absolute;
  5273. align-self:flex-start;
  5274. padding:0px 0px 0px 0px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u4264_text {
  5279. border-width:0px;
  5280. white-space:nowrap;
  5281. text-transform:none;
  5282. }
  5283. #u4265 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:162px;
  5287. top:637px;
  5288. width:38px;
  5289. height:37px;
  5290. display:flex;
  5291. transition:none;
  5292. }
  5293. #u4265 .text {
  5294. position:absolute;
  5295. align-self:center;
  5296. padding:2px 2px 2px 2px;
  5297. box-sizing:border-box;
  5298. width:100%;
  5299. }
  5300. #u4265_img {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:38px;
  5306. height:37px;
  5307. }
  5308. #u4265_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u4266_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:27px;
  5320. height:17px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 0);
  5323. border-radius:0px;
  5324. filter:drop-shadow(none);
  5325. transition:none;
  5326. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:12px;
  5330. color:#FFFFFF;
  5331. }
  5332. #u4266 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:206px;
  5336. top:659px;
  5337. width:27px;
  5338. height:17px;
  5339. display:flex;
  5340. transition:none;
  5341. transform-origin:50% 50%;
  5342. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:12px;
  5346. color:#FFFFFF;
  5347. }
  5348. #u4266 .text {
  5349. position:absolute;
  5350. align-self:flex-start;
  5351. padding:0px 0px 0px 0px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u4266_text {
  5356. border-width:0px;
  5357. white-space:nowrap;
  5358. text-transform:none;
  5359. }
  5360. #u4267 {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:0px;
  5366. height:0px;
  5367. }
  5368. #u4268_div {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:240px;
  5374. height:23px;
  5375. background:inherit;
  5376. background-color:rgba(255, 255, 255, 0);
  5377. border-radius:0px;
  5378. filter:drop-shadow(none);
  5379. transition:none;
  5380. font-size:12px;
  5381. }
  5382. #u4268 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:1241px;
  5386. top:446px;
  5387. width:240px;
  5388. height:23px;
  5389. display:flex;
  5390. transition:none;
  5391. transform-origin:50% 50%;
  5392. font-size:12px;
  5393. }
  5394. #u4268 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:2px 2px 2px 2px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u4268_text {
  5402. border-width:0px;
  5403. word-wrap:break-word;
  5404. text-transform:none;
  5405. visibility:hidden;
  5406. }
  5407. #u4269_div {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:65px;
  5413. height:21px;
  5414. background:inherit;
  5415. background-color:rgba(255, 255, 255, 0);
  5416. border-radius:0px;
  5417. filter:drop-shadow(none);
  5418. transition:none;
  5419. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:12px;
  5423. color:rgba(255, 255, 255, 0.6980392156862745);
  5424. text-align:left;
  5425. }
  5426. #u4269 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:1241px;
  5430. top:447px;
  5431. width:65px;
  5432. height:21px;
  5433. display:flex;
  5434. transition:none;
  5435. transform-origin:50% 50%;
  5436. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:12px;
  5440. color:rgba(255, 255, 255, 0.6980392156862745);
  5441. text-align:left;
  5442. }
  5443. #u4269 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 2px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u4269_text {
  5451. border-width:0px;
  5452. white-space:nowrap;
  5453. text-transform:none;
  5454. }
  5455. #u4270_div {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:19px;
  5461. height:21px;
  5462. background:inherit;
  5463. background-color:rgba(255, 255, 255, 0);
  5464. border-radius:0px;
  5465. filter:drop-shadow(none);
  5466. transition:none;
  5467. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:12px;
  5471. color:#FFFFFF;
  5472. text-align:left;
  5473. }
  5474. #u4270 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:1327px;
  5478. top:447px;
  5479. width:19px;
  5480. height:21px;
  5481. display:flex;
  5482. transition:none;
  5483. transform-origin:50% 50%;
  5484. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:12px;
  5488. color:#FFFFFF;
  5489. text-align:left;
  5490. }
  5491. #u4270 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 2px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u4270_text {
  5499. border-width:0px;
  5500. white-space:nowrap;
  5501. text-transform:none;
  5502. }
  5503. #u4271_div {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:49px;
  5509. height:21px;
  5510. background:inherit;
  5511. background-color:rgba(255, 255, 255, 0);
  5512. border-radius:0px;
  5513. filter:drop-shadow(none);
  5514. transition:none;
  5515. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:12px;
  5519. color:#FFFFFF;
  5520. text-align:left;
  5521. }
  5522. #u4271 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:1436px;
  5526. top:447px;
  5527. width:49px;
  5528. height:21px;
  5529. display:flex;
  5530. transition:none;
  5531. transform-origin:50% 50%;
  5532. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:12px;
  5536. color:#FFFFFF;
  5537. text-align:left;
  5538. }
  5539. #u4271 .text {
  5540. position:absolute;
  5541. align-self:center;
  5542. padding:2px 2px 2px 2px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u4271_text {
  5547. border-width:0px;
  5548. white-space:nowrap;
  5549. text-transform:none;
  5550. }
  5551. #u4272_div {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:19px;
  5557. height:21px;
  5558. background:inherit;
  5559. background-color:rgba(255, 255, 255, 0);
  5560. border-radius:0px;
  5561. filter:drop-shadow(none);
  5562. transition:none;
  5563. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. font-size:12px;
  5567. color:#FFFFFF;
  5568. text-align:left;
  5569. }
  5570. #u4272 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:1392px;
  5574. top:447px;
  5575. width:19px;
  5576. height:21px;
  5577. display:flex;
  5578. transition:none;
  5579. transform-origin:50% 50%;
  5580. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:12px;
  5584. color:#FFFFFF;
  5585. text-align:left;
  5586. }
  5587. #u4272 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 2px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u4272_text {
  5595. border-width:0px;
  5596. white-space:nowrap;
  5597. text-transform:none;
  5598. }
  5599. #u4273 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:0px;
  5605. height:0px;
  5606. }
  5607. #u4274_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:240px;
  5613. height:23px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 0);
  5616. border-radius:0px;
  5617. filter:drop-shadow(none);
  5618. transition:none;
  5619. font-size:12px;
  5620. }
  5621. #u4274 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:1241px;
  5625. top:470px;
  5626. width:240px;
  5627. height:23px;
  5628. display:flex;
  5629. transition:none;
  5630. transform-origin:50% 50%;
  5631. font-size:12px;
  5632. }
  5633. #u4274 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u4274_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. visibility:hidden;
  5645. }
  5646. #u4275_div {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:53px;
  5652. height:21px;
  5653. background:inherit;
  5654. background-color:rgba(255, 255, 255, 0);
  5655. border-radius:0px;
  5656. filter:drop-shadow(none);
  5657. transition:none;
  5658. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:12px;
  5662. color:rgba(255, 255, 255, 0.6980392156862745);
  5663. text-align:left;
  5664. }
  5665. #u4275 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:1241px;
  5669. top:471px;
  5670. width:53px;
  5671. height:21px;
  5672. display:flex;
  5673. transition:none;
  5674. transform-origin:50% 50%;
  5675. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5676. font-weight:400;
  5677. font-style:normal;
  5678. font-size:12px;
  5679. color:rgba(255, 255, 255, 0.6980392156862745);
  5680. text-align:left;
  5681. }
  5682. #u4275 .text {
  5683. position:absolute;
  5684. align-self:center;
  5685. padding:2px 2px 2px 2px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u4275_text {
  5690. border-width:0px;
  5691. white-space:nowrap;
  5692. text-transform:none;
  5693. }
  5694. #u4276_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:19px;
  5700. height:21px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 0);
  5703. border-radius:0px;
  5704. filter:drop-shadow(none);
  5705. transition:none;
  5706. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:12px;
  5710. color:#FFFFFF;
  5711. text-align:left;
  5712. }
  5713. #u4276 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:1327px;
  5717. top:471px;
  5718. width:19px;
  5719. height:21px;
  5720. display:flex;
  5721. transition:none;
  5722. transform-origin:50% 50%;
  5723. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#FFFFFF;
  5728. text-align:left;
  5729. }
  5730. #u4276 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 2px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u4276_text {
  5738. border-width:0px;
  5739. white-space:nowrap;
  5740. text-transform:none;
  5741. }
  5742. #u4277_div {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:49px;
  5748. height:21px;
  5749. background:inherit;
  5750. background-color:rgba(255, 255, 255, 0);
  5751. border-radius:0px;
  5752. filter:drop-shadow(none);
  5753. transition:none;
  5754. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5755. font-weight:400;
  5756. font-style:normal;
  5757. font-size:12px;
  5758. color:#FFFFFF;
  5759. text-align:left;
  5760. }
  5761. #u4277 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:1436px;
  5765. top:471px;
  5766. width:49px;
  5767. height:21px;
  5768. display:flex;
  5769. transition:none;
  5770. transform-origin:50% 50%;
  5771. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:12px;
  5775. color:#FFFFFF;
  5776. text-align:left;
  5777. }
  5778. #u4277 .text {
  5779. position:absolute;
  5780. align-self:center;
  5781. padding:2px 2px 2px 2px;
  5782. box-sizing:border-box;
  5783. width:100%;
  5784. }
  5785. #u4277_text {
  5786. border-width:0px;
  5787. white-space:nowrap;
  5788. text-transform:none;
  5789. }
  5790. #u4278_div {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:19px;
  5796. height:21px;
  5797. background:inherit;
  5798. background-color:rgba(255, 255, 255, 0);
  5799. border-radius:0px;
  5800. filter:drop-shadow(none);
  5801. transition:none;
  5802. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:12px;
  5806. color:#FFFFFF;
  5807. text-align:left;
  5808. }
  5809. #u4278 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:1392px;
  5813. top:471px;
  5814. width:19px;
  5815. height:21px;
  5816. display:flex;
  5817. transition:none;
  5818. transform-origin:50% 50%;
  5819. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:12px;
  5823. color:#FFFFFF;
  5824. text-align:left;
  5825. }
  5826. #u4278 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 2px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u4278_text {
  5834. border-width:0px;
  5835. white-space:nowrap;
  5836. text-transform:none;
  5837. }
  5838. #u4279 {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:0px;
  5844. height:0px;
  5845. }
  5846. #u4280_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:240px;
  5852. height:23px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 0);
  5855. border-radius:0px;
  5856. filter:drop-shadow(none);
  5857. transition:none;
  5858. font-size:12px;
  5859. }
  5860. #u4280 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:1241px;
  5864. top:494px;
  5865. width:240px;
  5866. height:23px;
  5867. display:flex;
  5868. transition:none;
  5869. transform-origin:50% 50%;
  5870. font-size:12px;
  5871. }
  5872. #u4280 .text {
  5873. position:absolute;
  5874. align-self:center;
  5875. padding:2px 2px 2px 2px;
  5876. box-sizing:border-box;
  5877. width:100%;
  5878. }
  5879. #u4280_text {
  5880. border-width:0px;
  5881. word-wrap:break-word;
  5882. text-transform:none;
  5883. visibility:hidden;
  5884. }
  5885. #u4281_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:53px;
  5891. height:21px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 0);
  5894. border-radius:0px;
  5895. filter:drop-shadow(none);
  5896. transition:none;
  5897. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:12px;
  5901. color:rgba(255, 255, 255, 0.6980392156862745);
  5902. text-align:left;
  5903. }
  5904. #u4281 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:1241px;
  5908. top:495px;
  5909. width:53px;
  5910. height:21px;
  5911. display:flex;
  5912. transition:none;
  5913. transform-origin:50% 50%;
  5914. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:12px;
  5918. color:rgba(255, 255, 255, 0.6980392156862745);
  5919. text-align:left;
  5920. }
  5921. #u4281 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 2px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u4281_text {
  5929. border-width:0px;
  5930. white-space:nowrap;
  5931. text-transform:none;
  5932. }
  5933. #u4282_div {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:19px;
  5939. height:21px;
  5940. background:inherit;
  5941. background-color:rgba(255, 255, 255, 0);
  5942. border-radius:0px;
  5943. filter:drop-shadow(none);
  5944. transition:none;
  5945. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:12px;
  5949. color:#FFFFFF;
  5950. text-align:left;
  5951. }
  5952. #u4282 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:1327px;
  5956. top:495px;
  5957. width:19px;
  5958. height:21px;
  5959. display:flex;
  5960. transition:none;
  5961. transform-origin:50% 50%;
  5962. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:12px;
  5966. color:#FFFFFF;
  5967. text-align:left;
  5968. }
  5969. #u4282 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 2px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u4282_text {
  5977. border-width:0px;
  5978. white-space:nowrap;
  5979. text-transform:none;
  5980. }
  5981. #u4283_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:49px;
  5987. height:21px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 0);
  5990. border-radius:0px;
  5991. filter:drop-shadow(none);
  5992. transition:none;
  5993. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:12px;
  5997. color:#FFFFFF;
  5998. text-align:left;
  5999. }
  6000. #u4283 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:1436px;
  6004. top:495px;
  6005. width:49px;
  6006. height:21px;
  6007. display:flex;
  6008. transition:none;
  6009. transform-origin:50% 50%;
  6010. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:12px;
  6014. color:#FFFFFF;
  6015. text-align:left;
  6016. }
  6017. #u4283 .text {
  6018. position:absolute;
  6019. align-self:center;
  6020. padding:2px 2px 2px 2px;
  6021. box-sizing:border-box;
  6022. width:100%;
  6023. }
  6024. #u4283_text {
  6025. border-width:0px;
  6026. white-space:nowrap;
  6027. text-transform:none;
  6028. }
  6029. #u4284_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:19px;
  6035. height:21px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 0);
  6038. border-radius:0px;
  6039. filter:drop-shadow(none);
  6040. transition:none;
  6041. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:12px;
  6045. color:#FFFFFF;
  6046. text-align:left;
  6047. }
  6048. #u4284 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:1392px;
  6052. top:495px;
  6053. width:19px;
  6054. height:21px;
  6055. display:flex;
  6056. transition:none;
  6057. transform-origin:50% 50%;
  6058. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:12px;
  6062. color:#FFFFFF;
  6063. text-align:left;
  6064. }
  6065. #u4284 .text {
  6066. position:absolute;
  6067. align-self:center;
  6068. padding:2px 2px 2px 2px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u4284_text {
  6073. border-width:0px;
  6074. white-space:nowrap;
  6075. text-transform:none;
  6076. }
  6077. #u4285 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:0px;
  6083. height:0px;
  6084. }
  6085. #u4286_div {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:240px;
  6091. height:23px;
  6092. background:inherit;
  6093. background-color:rgba(255, 255, 255, 0);
  6094. border-radius:0px;
  6095. filter:drop-shadow(none);
  6096. transition:none;
  6097. font-size:12px;
  6098. }
  6099. #u4286 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:1241px;
  6103. top:518px;
  6104. width:240px;
  6105. height:23px;
  6106. display:flex;
  6107. transition:none;
  6108. transform-origin:50% 50%;
  6109. font-size:12px;
  6110. }
  6111. #u4286 .text {
  6112. position:absolute;
  6113. align-self:center;
  6114. padding:2px 2px 2px 2px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u4286_text {
  6119. border-width:0px;
  6120. word-wrap:break-word;
  6121. text-transform:none;
  6122. visibility:hidden;
  6123. }
  6124. #u4287_div {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:53px;
  6130. height:21px;
  6131. background:inherit;
  6132. background-color:rgba(255, 255, 255, 0);
  6133. border-radius:0px;
  6134. filter:drop-shadow(none);
  6135. transition:none;
  6136. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:12px;
  6140. color:rgba(255, 255, 255, 0.6980392156862745);
  6141. text-align:left;
  6142. }
  6143. #u4287 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:1241px;
  6147. top:519px;
  6148. width:53px;
  6149. height:21px;
  6150. display:flex;
  6151. transition:none;
  6152. transform-origin:50% 50%;
  6153. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:12px;
  6157. color:rgba(255, 255, 255, 0.6980392156862745);
  6158. text-align:left;
  6159. }
  6160. #u4287 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 2px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u4287_text {
  6168. border-width:0px;
  6169. white-space:nowrap;
  6170. text-transform:none;
  6171. }
  6172. #u4288_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:19px;
  6178. height:21px;
  6179. background:inherit;
  6180. background-color:rgba(255, 255, 255, 0);
  6181. border-radius:0px;
  6182. filter:drop-shadow(none);
  6183. transition:none;
  6184. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:12px;
  6188. color:#FFFFFF;
  6189. text-align:left;
  6190. }
  6191. #u4288 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:1327px;
  6195. top:519px;
  6196. width:19px;
  6197. height:21px;
  6198. display:flex;
  6199. transition:none;
  6200. transform-origin:50% 50%;
  6201. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:12px;
  6205. color:#FFFFFF;
  6206. text-align:left;
  6207. }
  6208. #u4288 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:2px 2px 2px 2px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u4288_text {
  6216. border-width:0px;
  6217. white-space:nowrap;
  6218. text-transform:none;
  6219. }
  6220. #u4289_div {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:49px;
  6226. height:21px;
  6227. background:inherit;
  6228. background-color:rgba(255, 255, 255, 0);
  6229. border-radius:0px;
  6230. filter:drop-shadow(none);
  6231. transition:none;
  6232. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:12px;
  6236. color:#FFFFFF;
  6237. text-align:left;
  6238. }
  6239. #u4289 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:1436px;
  6243. top:519px;
  6244. width:49px;
  6245. height:21px;
  6246. display:flex;
  6247. transition:none;
  6248. transform-origin:50% 50%;
  6249. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#FFFFFF;
  6254. text-align:left;
  6255. }
  6256. #u4289 .text {
  6257. position:absolute;
  6258. align-self:center;
  6259. padding:2px 2px 2px 2px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u4289_text {
  6264. border-width:0px;
  6265. white-space:nowrap;
  6266. text-transform:none;
  6267. }
  6268. #u4290_div {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:19px;
  6274. height:21px;
  6275. background:inherit;
  6276. background-color:rgba(255, 255, 255, 0);
  6277. border-radius:0px;
  6278. filter:drop-shadow(none);
  6279. transition:none;
  6280. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:12px;
  6284. color:#FFFFFF;
  6285. text-align:left;
  6286. }
  6287. #u4290 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:1392px;
  6291. top:519px;
  6292. width:19px;
  6293. height:21px;
  6294. display:flex;
  6295. transition:none;
  6296. transform-origin:50% 50%;
  6297. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:12px;
  6301. color:#FFFFFF;
  6302. text-align:left;
  6303. }
  6304. #u4290 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:2px 2px 2px 2px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u4290_text {
  6312. border-width:0px;
  6313. white-space:nowrap;
  6314. text-transform:none;
  6315. }
  6316. #u4291 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:0px;
  6322. height:0px;
  6323. }
  6324. #u4292_div {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:240px;
  6330. height:23px;
  6331. background:inherit;
  6332. background-color:rgba(255, 255, 255, 0);
  6333. border-radius:0px;
  6334. filter:drop-shadow(none);
  6335. transition:none;
  6336. font-size:12px;
  6337. }
  6338. #u4292 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:1241px;
  6342. top:542px;
  6343. width:240px;
  6344. height:23px;
  6345. display:flex;
  6346. transition:none;
  6347. transform-origin:50% 50%;
  6348. font-size:12px;
  6349. }
  6350. #u4292 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u4292_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u4293_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:53px;
  6369. height:21px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 0);
  6372. border-radius:0px;
  6373. filter:drop-shadow(none);
  6374. transition:none;
  6375. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. font-size:12px;
  6379. color:rgba(255, 255, 255, 0.6980392156862745);
  6380. text-align:left;
  6381. }
  6382. #u4293 {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:1241px;
  6386. top:543px;
  6387. width:53px;
  6388. height:21px;
  6389. display:flex;
  6390. transition:none;
  6391. transform-origin:50% 50%;
  6392. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:12px;
  6396. color:rgba(255, 255, 255, 0.6980392156862745);
  6397. text-align:left;
  6398. }
  6399. #u4293 .text {
  6400. position:absolute;
  6401. align-self:center;
  6402. padding:2px 2px 2px 2px;
  6403. box-sizing:border-box;
  6404. width:100%;
  6405. }
  6406. #u4293_text {
  6407. border-width:0px;
  6408. white-space:nowrap;
  6409. text-transform:none;
  6410. }
  6411. #u4294_div {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:19px;
  6417. height:21px;
  6418. background:inherit;
  6419. background-color:rgba(255, 255, 255, 0);
  6420. border-radius:0px;
  6421. filter:drop-shadow(none);
  6422. transition:none;
  6423. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6424. font-weight:400;
  6425. font-style:normal;
  6426. font-size:12px;
  6427. color:#FFFFFF;
  6428. text-align:left;
  6429. }
  6430. #u4294 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:1327px;
  6434. top:543px;
  6435. width:19px;
  6436. height:21px;
  6437. display:flex;
  6438. transition:none;
  6439. transform-origin:50% 50%;
  6440. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6441. font-weight:400;
  6442. font-style:normal;
  6443. font-size:12px;
  6444. color:#FFFFFF;
  6445. text-align:left;
  6446. }
  6447. #u4294 .text {
  6448. position:absolute;
  6449. align-self:center;
  6450. padding:2px 2px 2px 2px;
  6451. box-sizing:border-box;
  6452. width:100%;
  6453. }
  6454. #u4294_text {
  6455. border-width:0px;
  6456. white-space:nowrap;
  6457. text-transform:none;
  6458. }
  6459. #u4295_div {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:0px;
  6464. width:49px;
  6465. height:21px;
  6466. background:inherit;
  6467. background-color:rgba(255, 255, 255, 0);
  6468. border-radius:0px;
  6469. filter:drop-shadow(none);
  6470. transition:none;
  6471. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6472. font-weight:400;
  6473. font-style:normal;
  6474. font-size:12px;
  6475. color:#FFFFFF;
  6476. text-align:left;
  6477. }
  6478. #u4295 {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:1436px;
  6482. top:543px;
  6483. width:49px;
  6484. height:21px;
  6485. display:flex;
  6486. transition:none;
  6487. transform-origin:50% 50%;
  6488. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:12px;
  6492. color:#FFFFFF;
  6493. text-align:left;
  6494. }
  6495. #u4295 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:2px 2px 2px 2px;
  6499. box-sizing:border-box;
  6500. width:100%;
  6501. }
  6502. #u4295_text {
  6503. border-width:0px;
  6504. white-space:nowrap;
  6505. text-transform:none;
  6506. }
  6507. #u4296_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:19px;
  6513. height:21px;
  6514. background:inherit;
  6515. background-color:rgba(255, 255, 255, 0);
  6516. border-radius:0px;
  6517. filter:drop-shadow(none);
  6518. transition:none;
  6519. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:12px;
  6523. color:#FFFFFF;
  6524. text-align:left;
  6525. }
  6526. #u4296 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:1392px;
  6530. top:543px;
  6531. width:19px;
  6532. height:21px;
  6533. display:flex;
  6534. transition:none;
  6535. transform-origin:50% 50%;
  6536. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6537. font-weight:400;
  6538. font-style:normal;
  6539. font-size:12px;
  6540. color:#FFFFFF;
  6541. text-align:left;
  6542. }
  6543. #u4296 .text {
  6544. position:absolute;
  6545. align-self:center;
  6546. padding:2px 2px 2px 2px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u4296_text {
  6551. border-width:0px;
  6552. white-space:nowrap;
  6553. text-transform:none;
  6554. }
  6555. #u4297 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:0px;
  6561. height:0px;
  6562. }
  6563. #u4298_div {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:56px;
  6569. height:50px;
  6570. background:inherit;
  6571. background-color:rgba(245, 154, 35, 0.2);
  6572. box-sizing:border-box;
  6573. border-width:1px;
  6574. border-style:solid;
  6575. border-color:rgba(245, 154, 35, 0.4);
  6576. border-radius:0px;
  6577. filter:drop-shadow(none);
  6578. transition:none;
  6579. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:12px;
  6583. color:#FFFFFF;
  6584. text-align:left;
  6585. }
  6586. #u4298 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:1236px;
  6590. top:271px;
  6591. width:56px;
  6592. height:50px;
  6593. display:flex;
  6594. transition:none;
  6595. transform-origin:50% 50%;
  6596. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6597. font-weight:400;
  6598. font-style:normal;
  6599. font-size:12px;
  6600. color:#FFFFFF;
  6601. text-align:left;
  6602. }
  6603. #u4298 .text {
  6604. position:absolute;
  6605. align-self:center;
  6606. padding:2px 2px 2px 10px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u4298_text {
  6611. border-width:0px;
  6612. word-wrap:break-word;
  6613. text-transform:none;
  6614. visibility:hidden;
  6615. }
  6616. #u4299_div {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:30px;
  6622. height:17px;
  6623. background:inherit;
  6624. background-color:rgba(255, 255, 255, 0);
  6625. border-radius:0px;
  6626. filter:drop-shadow(none);
  6627. transition:none;
  6628. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:12px;
  6632. color:#FFFFFF;
  6633. text-align:center;
  6634. }
  6635. #u4299 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:1249px;
  6639. top:279px;
  6640. width:30px;
  6641. height:17px;
  6642. display:flex;
  6643. transition:none;
  6644. transform-origin:50% 50%;
  6645. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:12px;
  6649. color:#FFFFFF;
  6650. text-align:center;
  6651. }
  6652. #u4299 .text {
  6653. position:absolute;
  6654. align-self:flex-start;
  6655. padding:0px 0px 0px 0px;
  6656. box-sizing:border-box;
  6657. width:100%;
  6658. }
  6659. #u4299_text {
  6660. border-width:0px;
  6661. word-wrap:break-word;
  6662. text-transform:none;
  6663. }
  6664. #u4300_div {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:46px;
  6670. height:14px;
  6671. background:inherit;
  6672. background-color:rgba(255, 255, 255, 0);
  6673. border-radius:0px;
  6674. filter:drop-shadow(none);
  6675. transition:none;
  6676. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:10px;
  6680. color:#FFFFFF;
  6681. text-align:center;
  6682. }
  6683. #u4300 {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:1242px;
  6687. top:299px;
  6688. width:46px;
  6689. height:14px;
  6690. display:flex;
  6691. transition:none;
  6692. transform-origin:50% 50%;
  6693. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:10px;
  6697. color:#FFFFFF;
  6698. text-align:center;
  6699. }
  6700. #u4300 .text {
  6701. position:absolute;
  6702. align-self:flex-start;
  6703. padding:0px 0px 0px 0px;
  6704. box-sizing:border-box;
  6705. width:100%;
  6706. }
  6707. #u4300_text {
  6708. border-width:0px;
  6709. word-wrap:break-word;
  6710. text-transform:none;
  6711. }
  6712. #u4301 {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:0px;
  6718. height:0px;
  6719. }
  6720. #u4302_div {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:56px;
  6726. height:50px;
  6727. background:inherit;
  6728. background-color:rgba(245, 154, 35, 0.2);
  6729. box-sizing:border-box;
  6730. border-width:1px;
  6731. border-style:solid;
  6732. border-color:rgba(245, 154, 35, 0.4);
  6733. border-radius:0px;
  6734. filter:drop-shadow(none);
  6735. transition:none;
  6736. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:12px;
  6740. color:#FFFFFF;
  6741. text-align:left;
  6742. }
  6743. #u4302 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:1298px;
  6747. top:271px;
  6748. width:56px;
  6749. height:50px;
  6750. display:flex;
  6751. transition:none;
  6752. transform-origin:50% 50%;
  6753. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:12px;
  6757. color:#FFFFFF;
  6758. text-align:left;
  6759. }
  6760. #u4302 .text {
  6761. position:absolute;
  6762. align-self:center;
  6763. padding:2px 2px 2px 10px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u4302_text {
  6768. border-width:0px;
  6769. word-wrap:break-word;
  6770. text-transform:none;
  6771. visibility:hidden;
  6772. }
  6773. #u4303_div {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:30px;
  6779. height:17px;
  6780. background:inherit;
  6781. background-color:rgba(255, 255, 255, 0);
  6782. border-radius:0px;
  6783. filter:drop-shadow(none);
  6784. transition:none;
  6785. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:12px;
  6789. color:#FFFFFF;
  6790. text-align:center;
  6791. }
  6792. #u4303 {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:1312px;
  6796. top:279px;
  6797. width:30px;
  6798. height:17px;
  6799. display:flex;
  6800. transition:none;
  6801. transform-origin:50% 50%;
  6802. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:12px;
  6806. color:#FFFFFF;
  6807. text-align:center;
  6808. }
  6809. #u4303 .text {
  6810. position:absolute;
  6811. align-self:flex-start;
  6812. padding:0px 0px 0px 0px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u4303_text {
  6817. border-width:0px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. }
  6821. #u4304_div {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:0px;
  6825. top:0px;
  6826. width:46px;
  6827. height:14px;
  6828. background:inherit;
  6829. background-color:rgba(255, 255, 255, 0);
  6830. border-radius:0px;
  6831. filter:drop-shadow(none);
  6832. transition:none;
  6833. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:10px;
  6837. color:#FFFFFF;
  6838. text-align:center;
  6839. }
  6840. #u4304 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:1304px;
  6844. top:299px;
  6845. width:46px;
  6846. height:14px;
  6847. display:flex;
  6848. transition:none;
  6849. transform-origin:50% 50%;
  6850. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:10px;
  6854. color:#FFFFFF;
  6855. text-align:center;
  6856. }
  6857. #u4304 .text {
  6858. position:absolute;
  6859. align-self:flex-start;
  6860. padding:0px 0px 0px 0px;
  6861. box-sizing:border-box;
  6862. width:100%;
  6863. }
  6864. #u4304_text {
  6865. border-width:0px;
  6866. word-wrap:break-word;
  6867. text-transform:none;
  6868. }
  6869. #u4305 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:0px;
  6875. height:0px;
  6876. }
  6877. #u4306_div {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:56px;
  6883. height:50px;
  6884. background:inherit;
  6885. background-color:rgba(245, 154, 35, 0.2);
  6886. box-sizing:border-box;
  6887. border-width:1px;
  6888. border-style:solid;
  6889. border-color:rgba(245, 154, 35, 0.4);
  6890. border-radius:0px;
  6891. filter:drop-shadow(none);
  6892. transition:none;
  6893. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:12px;
  6897. color:#FFFFFF;
  6898. text-align:left;
  6899. }
  6900. #u4306 {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:1358px;
  6904. top:271px;
  6905. width:56px;
  6906. height:50px;
  6907. display:flex;
  6908. transition:none;
  6909. transform-origin:50% 50%;
  6910. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:12px;
  6914. color:#FFFFFF;
  6915. text-align:left;
  6916. }
  6917. #u4306 .text {
  6918. position:absolute;
  6919. align-self:center;
  6920. padding:2px 2px 2px 10px;
  6921. box-sizing:border-box;
  6922. width:100%;
  6923. }
  6924. #u4306_text {
  6925. border-width:0px;
  6926. word-wrap:break-word;
  6927. text-transform:none;
  6928. visibility:hidden;
  6929. }
  6930. #u4307_div {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:30px;
  6936. height:17px;
  6937. background:inherit;
  6938. background-color:rgba(255, 255, 255, 0);
  6939. border-radius:0px;
  6940. filter:drop-shadow(none);
  6941. transition:none;
  6942. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:12px;
  6946. color:#FFFFFF;
  6947. text-align:center;
  6948. }
  6949. #u4307 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:1372px;
  6953. top:279px;
  6954. width:30px;
  6955. height:17px;
  6956. display:flex;
  6957. transition:none;
  6958. transform-origin:50% 50%;
  6959. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6960. font-weight:400;
  6961. font-style:normal;
  6962. font-size:12px;
  6963. color:#FFFFFF;
  6964. text-align:center;
  6965. }
  6966. #u4307 .text {
  6967. position:absolute;
  6968. align-self:flex-start;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u4307_text {
  6974. border-width:0px;
  6975. word-wrap:break-word;
  6976. text-transform:none;
  6977. }
  6978. #u4308_div {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:46px;
  6984. height:14px;
  6985. background:inherit;
  6986. background-color:rgba(255, 255, 255, 0);
  6987. border-radius:0px;
  6988. filter:drop-shadow(none);
  6989. transition:none;
  6990. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:10px;
  6994. color:#FFFFFF;
  6995. text-align:center;
  6996. }
  6997. #u4308 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:1364px;
  7001. top:299px;
  7002. width:46px;
  7003. height:14px;
  7004. display:flex;
  7005. transition:none;
  7006. transform-origin:50% 50%;
  7007. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7008. font-weight:400;
  7009. font-style:normal;
  7010. font-size:10px;
  7011. color:#FFFFFF;
  7012. text-align:center;
  7013. }
  7014. #u4308 .text {
  7015. position:absolute;
  7016. align-self:flex-start;
  7017. padding:0px 0px 0px 0px;
  7018. box-sizing:border-box;
  7019. width:100%;
  7020. }
  7021. #u4308_text {
  7022. border-width:0px;
  7023. word-wrap:break-word;
  7024. text-transform:none;
  7025. }
  7026. #u4309 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:0px;
  7032. height:0px;
  7033. }
  7034. #u4310_div {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:56px;
  7040. height:50px;
  7041. background:inherit;
  7042. background-color:rgba(245, 154, 35, 0.2);
  7043. box-sizing:border-box;
  7044. border-width:1px;
  7045. border-style:solid;
  7046. border-color:rgba(245, 154, 35, 0.4);
  7047. border-radius:0px;
  7048. filter:drop-shadow(none);
  7049. transition:none;
  7050. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:12px;
  7054. color:#FFFFFF;
  7055. text-align:left;
  7056. }
  7057. #u4310 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:1420px;
  7061. top:271px;
  7062. width:56px;
  7063. height:50px;
  7064. display:flex;
  7065. transition:none;
  7066. transform-origin:50% 50%;
  7067. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:12px;
  7071. color:#FFFFFF;
  7072. text-align:left;
  7073. }
  7074. #u4310 .text {
  7075. position:absolute;
  7076. align-self:center;
  7077. padding:2px 2px 2px 10px;
  7078. box-sizing:border-box;
  7079. width:100%;
  7080. }
  7081. #u4310_text {
  7082. border-width:0px;
  7083. word-wrap:break-word;
  7084. text-transform:none;
  7085. visibility:hidden;
  7086. }
  7087. #u4311_div {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:30px;
  7093. height:17px;
  7094. background:inherit;
  7095. background-color:rgba(255, 255, 255, 0);
  7096. border-radius:0px;
  7097. filter:drop-shadow(none);
  7098. transition:none;
  7099. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. font-size:12px;
  7103. color:#FFFFFF;
  7104. text-align:center;
  7105. }
  7106. #u4311 {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:1434px;
  7110. top:279px;
  7111. width:30px;
  7112. height:17px;
  7113. display:flex;
  7114. transition:none;
  7115. transform-origin:50% 50%;
  7116. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7117. font-weight:400;
  7118. font-style:normal;
  7119. font-size:12px;
  7120. color:#FFFFFF;
  7121. text-align:center;
  7122. }
  7123. #u4311 .text {
  7124. position:absolute;
  7125. align-self:flex-start;
  7126. padding:0px 0px 0px 0px;
  7127. box-sizing:border-box;
  7128. width:100%;
  7129. }
  7130. #u4311_text {
  7131. border-width:0px;
  7132. word-wrap:break-word;
  7133. text-transform:none;
  7134. }
  7135. #u4312_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:46px;
  7141. height:14px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 255, 0);
  7144. border-radius:0px;
  7145. filter:drop-shadow(none);
  7146. transition:none;
  7147. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:10px;
  7151. color:#FFFFFF;
  7152. text-align:center;
  7153. }
  7154. #u4312 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:1426px;
  7158. top:299px;
  7159. width:46px;
  7160. height:14px;
  7161. display:flex;
  7162. transition:none;
  7163. transform-origin:50% 50%;
  7164. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7165. font-weight:400;
  7166. font-style:normal;
  7167. font-size:10px;
  7168. color:#FFFFFF;
  7169. text-align:center;
  7170. }
  7171. #u4312 .text {
  7172. position:absolute;
  7173. align-self:flex-start;
  7174. padding:0px 0px 0px 0px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u4312_text {
  7179. border-width:0px;
  7180. word-wrap:break-word;
  7181. text-transform:none;
  7182. }
  7183. #u4313 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:0px;
  7189. height:0px;
  7190. }
  7191. #u4314_div {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:56px;
  7197. height:50px;
  7198. background:inherit;
  7199. background-color:rgba(245, 154, 35, 0.2);
  7200. box-sizing:border-box;
  7201. border-width:1px;
  7202. border-style:solid;
  7203. border-color:rgba(245, 154, 35, 0.4);
  7204. border-radius:0px;
  7205. filter:drop-shadow(none);
  7206. transition:none;
  7207. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:12px;
  7211. color:#FFFFFF;
  7212. text-align:left;
  7213. }
  7214. #u4314 {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:1236px;
  7218. top:326px;
  7219. width:56px;
  7220. height:50px;
  7221. display:flex;
  7222. transition:none;
  7223. transform-origin:50% 50%;
  7224. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7225. font-weight:400;
  7226. font-style:normal;
  7227. font-size:12px;
  7228. color:#FFFFFF;
  7229. text-align:left;
  7230. }
  7231. #u4314 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 10px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u4314_text {
  7239. border-width:0px;
  7240. word-wrap:break-word;
  7241. text-transform:none;
  7242. visibility:hidden;
  7243. }
  7244. #u4315_div {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:30px;
  7250. height:17px;
  7251. background:inherit;
  7252. background-color:rgba(255, 255, 255, 0);
  7253. border-radius:0px;
  7254. filter:drop-shadow(none);
  7255. transition:none;
  7256. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:12px;
  7260. color:#FFFFFF;
  7261. text-align:center;
  7262. }
  7263. #u4315 {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:1249px;
  7267. top:334px;
  7268. width:30px;
  7269. height:17px;
  7270. display:flex;
  7271. transition:none;
  7272. transform-origin:50% 50%;
  7273. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:12px;
  7277. color:#FFFFFF;
  7278. text-align:center;
  7279. }
  7280. #u4315 .text {
  7281. position:absolute;
  7282. align-self:flex-start;
  7283. padding:0px 0px 0px 0px;
  7284. box-sizing:border-box;
  7285. width:100%;
  7286. }
  7287. #u4315_text {
  7288. border-width:0px;
  7289. word-wrap:break-word;
  7290. text-transform:none;
  7291. }
  7292. #u4316_div {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:46px;
  7298. height:14px;
  7299. background:inherit;
  7300. background-color:rgba(255, 255, 255, 0);
  7301. border-radius:0px;
  7302. filter:drop-shadow(none);
  7303. transition:none;
  7304. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:10px;
  7308. color:#FFFFFF;
  7309. text-align:center;
  7310. }
  7311. #u4316 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:1242px;
  7315. top:354px;
  7316. width:46px;
  7317. height:14px;
  7318. display:flex;
  7319. transition:none;
  7320. transform-origin:50% 50%;
  7321. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:10px;
  7325. color:#FFFFFF;
  7326. text-align:center;
  7327. }
  7328. #u4316 .text {
  7329. position:absolute;
  7330. align-self:flex-start;
  7331. padding:0px 0px 0px 0px;
  7332. box-sizing:border-box;
  7333. width:100%;
  7334. }
  7335. #u4316_text {
  7336. border-width:0px;
  7337. word-wrap:break-word;
  7338. text-transform:none;
  7339. }
  7340. #u4317 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:0px;
  7346. height:0px;
  7347. }
  7348. #u4318_div {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:0px;
  7352. top:0px;
  7353. width:56px;
  7354. height:50px;
  7355. background:inherit;
  7356. background-color:rgba(245, 154, 35, 0.2);
  7357. box-sizing:border-box;
  7358. border-width:1px;
  7359. border-style:solid;
  7360. border-color:rgba(245, 154, 35, 0.4);
  7361. border-radius:0px;
  7362. filter:drop-shadow(none);
  7363. transition:none;
  7364. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7365. font-weight:400;
  7366. font-style:normal;
  7367. font-size:12px;
  7368. color:#FFFFFF;
  7369. text-align:left;
  7370. }
  7371. #u4318 {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:1298px;
  7375. top:326px;
  7376. width:56px;
  7377. height:50px;
  7378. display:flex;
  7379. transition:none;
  7380. transform-origin:50% 50%;
  7381. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7382. font-weight:400;
  7383. font-style:normal;
  7384. font-size:12px;
  7385. color:#FFFFFF;
  7386. text-align:left;
  7387. }
  7388. #u4318 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:2px 2px 2px 10px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u4318_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. visibility:hidden;
  7400. }
  7401. #u4319_div {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:30px;
  7407. height:17px;
  7408. background:inherit;
  7409. background-color:rgba(255, 255, 255, 0);
  7410. border-radius:0px;
  7411. filter:drop-shadow(none);
  7412. transition:none;
  7413. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:12px;
  7417. color:#FFFFFF;
  7418. text-align:center;
  7419. }
  7420. #u4319 {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:1312px;
  7424. top:334px;
  7425. width:30px;
  7426. height:17px;
  7427. display:flex;
  7428. transition:none;
  7429. transform-origin:50% 50%;
  7430. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:12px;
  7434. color:#FFFFFF;
  7435. text-align:center;
  7436. }
  7437. #u4319 .text {
  7438. position:absolute;
  7439. align-self:flex-start;
  7440. padding:0px 0px 0px 0px;
  7441. box-sizing:border-box;
  7442. width:100%;
  7443. }
  7444. #u4319_text {
  7445. border-width:0px;
  7446. word-wrap:break-word;
  7447. text-transform:none;
  7448. }
  7449. #u4320_div {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:0px;
  7453. top:0px;
  7454. width:46px;
  7455. height:14px;
  7456. background:inherit;
  7457. background-color:rgba(255, 255, 255, 0);
  7458. border-radius:0px;
  7459. filter:drop-shadow(none);
  7460. transition:none;
  7461. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:10px;
  7465. color:#FFFFFF;
  7466. text-align:center;
  7467. }
  7468. #u4320 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:1304px;
  7472. top:354px;
  7473. width:46px;
  7474. height:14px;
  7475. display:flex;
  7476. transition:none;
  7477. transform-origin:50% 50%;
  7478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:10px;
  7482. color:#FFFFFF;
  7483. text-align:center;
  7484. }
  7485. #u4320 .text {
  7486. position:absolute;
  7487. align-self:flex-start;
  7488. padding:0px 0px 0px 0px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u4320_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. }
  7497. #u4321 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:0px;
  7503. height:0px;
  7504. }
  7505. #u4322_div {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:56px;
  7511. height:50px;
  7512. background:inherit;
  7513. background-color:rgba(245, 154, 35, 0.2);
  7514. box-sizing:border-box;
  7515. border-width:1px;
  7516. border-style:solid;
  7517. border-color:rgba(245, 154, 35, 0.4);
  7518. border-radius:0px;
  7519. filter:drop-shadow(none);
  7520. transition:none;
  7521. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7522. font-weight:400;
  7523. font-style:normal;
  7524. font-size:12px;
  7525. color:#FFFFFF;
  7526. text-align:left;
  7527. }
  7528. #u4322 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:1358px;
  7532. top:326px;
  7533. width:56px;
  7534. height:50px;
  7535. display:flex;
  7536. transition:none;
  7537. transform-origin:50% 50%;
  7538. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:12px;
  7542. color:#FFFFFF;
  7543. text-align:left;
  7544. }
  7545. #u4322 .text {
  7546. position:absolute;
  7547. align-self:center;
  7548. padding:2px 2px 2px 10px;
  7549. box-sizing:border-box;
  7550. width:100%;
  7551. }
  7552. #u4322_text {
  7553. border-width:0px;
  7554. word-wrap:break-word;
  7555. text-transform:none;
  7556. visibility:hidden;
  7557. }
  7558. #u4323_div {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:0px;
  7562. top:0px;
  7563. width:30px;
  7564. height:17px;
  7565. background:inherit;
  7566. background-color:rgba(255, 255, 255, 0);
  7567. border-radius:0px;
  7568. filter:drop-shadow(none);
  7569. transition:none;
  7570. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7571. font-weight:400;
  7572. font-style:normal;
  7573. font-size:12px;
  7574. color:#FFFFFF;
  7575. text-align:center;
  7576. }
  7577. #u4323 {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:1372px;
  7581. top:334px;
  7582. width:30px;
  7583. height:17px;
  7584. display:flex;
  7585. transition:none;
  7586. transform-origin:50% 50%;
  7587. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:12px;
  7591. color:#FFFFFF;
  7592. text-align:center;
  7593. }
  7594. #u4323 .text {
  7595. position:absolute;
  7596. align-self:flex-start;
  7597. padding:0px 0px 0px 0px;
  7598. box-sizing:border-box;
  7599. width:100%;
  7600. }
  7601. #u4323_text {
  7602. border-width:0px;
  7603. word-wrap:break-word;
  7604. text-transform:none;
  7605. }
  7606. #u4324_div {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:46px;
  7612. height:14px;
  7613. background:inherit;
  7614. background-color:rgba(255, 255, 255, 0);
  7615. border-radius:0px;
  7616. filter:drop-shadow(none);
  7617. transition:none;
  7618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7619. font-weight:400;
  7620. font-style:normal;
  7621. font-size:10px;
  7622. color:#FFFFFF;
  7623. text-align:center;
  7624. }
  7625. #u4324 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:1364px;
  7629. top:354px;
  7630. width:46px;
  7631. height:14px;
  7632. display:flex;
  7633. transition:none;
  7634. transform-origin:50% 50%;
  7635. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7636. font-weight:400;
  7637. font-style:normal;
  7638. font-size:10px;
  7639. color:#FFFFFF;
  7640. text-align:center;
  7641. }
  7642. #u4324 .text {
  7643. position:absolute;
  7644. align-self:flex-start;
  7645. padding:0px 0px 0px 0px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u4324_text {
  7650. border-width:0px;
  7651. word-wrap:break-word;
  7652. text-transform:none;
  7653. }
  7654. #u4325 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:0px;
  7660. height:0px;
  7661. }
  7662. #u4326_div {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:240px;
  7668. height:23px;
  7669. background:inherit;
  7670. background-color:rgba(255, 255, 255, 0);
  7671. border-radius:0px;
  7672. filter:drop-shadow(none);
  7673. transition:none;
  7674. font-size:12px;
  7675. }
  7676. #u4326 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:1241px;
  7680. top:566px;
  7681. width:240px;
  7682. height:23px;
  7683. display:flex;
  7684. transition:none;
  7685. transform-origin:50% 50%;
  7686. font-size:12px;
  7687. }
  7688. #u4326 .text {
  7689. position:absolute;
  7690. align-self:center;
  7691. padding:2px 2px 2px 2px;
  7692. box-sizing:border-box;
  7693. width:100%;
  7694. }
  7695. #u4326_text {
  7696. border-width:0px;
  7697. word-wrap:break-word;
  7698. text-transform:none;
  7699. visibility:hidden;
  7700. }
  7701. #u4327_div {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:53px;
  7707. height:21px;
  7708. background:inherit;
  7709. background-color:rgba(255, 255, 255, 0);
  7710. border-radius:0px;
  7711. filter:drop-shadow(none);
  7712. transition:none;
  7713. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7714. font-weight:400;
  7715. font-style:normal;
  7716. font-size:12px;
  7717. color:rgba(255, 255, 255, 0.6980392156862745);
  7718. text-align:left;
  7719. }
  7720. #u4327 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:1241px;
  7724. top:567px;
  7725. width:53px;
  7726. height:21px;
  7727. display:flex;
  7728. transition:none;
  7729. transform-origin:50% 50%;
  7730. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7731. font-weight:400;
  7732. font-style:normal;
  7733. font-size:12px;
  7734. color:rgba(255, 255, 255, 0.6980392156862745);
  7735. text-align:left;
  7736. }
  7737. #u4327 .text {
  7738. position:absolute;
  7739. align-self:center;
  7740. padding:2px 2px 2px 2px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u4327_text {
  7745. border-width:0px;
  7746. white-space:nowrap;
  7747. text-transform:none;
  7748. }
  7749. #u4328_div {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:19px;
  7755. height:21px;
  7756. background:inherit;
  7757. background-color:rgba(255, 255, 255, 0);
  7758. border-radius:0px;
  7759. filter:drop-shadow(none);
  7760. transition:none;
  7761. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7762. font-weight:400;
  7763. font-style:normal;
  7764. font-size:12px;
  7765. color:#FFFFFF;
  7766. text-align:left;
  7767. }
  7768. #u4328 {
  7769. border-width:0px;
  7770. position:absolute;
  7771. left:1327px;
  7772. top:567px;
  7773. width:19px;
  7774. height:21px;
  7775. display:flex;
  7776. transition:none;
  7777. transform-origin:50% 50%;
  7778. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7779. font-weight:400;
  7780. font-style:normal;
  7781. font-size:12px;
  7782. color:#FFFFFF;
  7783. text-align:left;
  7784. }
  7785. #u4328 .text {
  7786. position:absolute;
  7787. align-self:center;
  7788. padding:2px 2px 2px 2px;
  7789. box-sizing:border-box;
  7790. width:100%;
  7791. }
  7792. #u4328_text {
  7793. border-width:0px;
  7794. white-space:nowrap;
  7795. text-transform:none;
  7796. }
  7797. #u4329_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:49px;
  7803. height:21px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 0);
  7806. border-radius:0px;
  7807. filter:drop-shadow(none);
  7808. transition:none;
  7809. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:12px;
  7813. color:#FFFFFF;
  7814. text-align:left;
  7815. }
  7816. #u4329 {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:1436px;
  7820. top:567px;
  7821. width:49px;
  7822. height:21px;
  7823. display:flex;
  7824. transition:none;
  7825. transform-origin:50% 50%;
  7826. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7827. font-weight:400;
  7828. font-style:normal;
  7829. font-size:12px;
  7830. color:#FFFFFF;
  7831. text-align:left;
  7832. }
  7833. #u4329 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:2px 2px 2px 2px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u4329_text {
  7841. border-width:0px;
  7842. white-space:nowrap;
  7843. text-transform:none;
  7844. }
  7845. #u4330_div {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:19px;
  7851. height:21px;
  7852. background:inherit;
  7853. background-color:rgba(255, 255, 255, 0);
  7854. border-radius:0px;
  7855. filter:drop-shadow(none);
  7856. transition:none;
  7857. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7858. font-weight:400;
  7859. font-style:normal;
  7860. font-size:12px;
  7861. color:#FFFFFF;
  7862. text-align:left;
  7863. }
  7864. #u4330 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:1392px;
  7868. top:567px;
  7869. width:19px;
  7870. height:21px;
  7871. display:flex;
  7872. transition:none;
  7873. transform-origin:50% 50%;
  7874. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:12px;
  7878. color:#FFFFFF;
  7879. text-align:left;
  7880. }
  7881. #u4330 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 2px 2px 2px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u4330_text {
  7889. border-width:0px;
  7890. white-space:nowrap;
  7891. text-transform:none;
  7892. }
  7893. #u4331 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:0px;
  7899. height:0px;
  7900. }
  7901. #u4332_div {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:240px;
  7907. height:23px;
  7908. background:inherit;
  7909. background-color:rgba(255, 255, 255, 0);
  7910. border-radius:0px;
  7911. filter:drop-shadow(none);
  7912. transition:none;
  7913. font-size:12px;
  7914. }
  7915. #u4332 {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:1241px;
  7919. top:590px;
  7920. width:240px;
  7921. height:23px;
  7922. display:flex;
  7923. transition:none;
  7924. transform-origin:50% 50%;
  7925. font-size:12px;
  7926. }
  7927. #u4332 .text {
  7928. position:absolute;
  7929. align-self:center;
  7930. padding:2px 2px 2px 2px;
  7931. box-sizing:border-box;
  7932. width:100%;
  7933. }
  7934. #u4332_text {
  7935. border-width:0px;
  7936. word-wrap:break-word;
  7937. text-transform:none;
  7938. visibility:hidden;
  7939. }
  7940. #u4333_div {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:0px;
  7944. top:0px;
  7945. width:53px;
  7946. height:21px;
  7947. background:inherit;
  7948. background-color:rgba(255, 255, 255, 0);
  7949. border-radius:0px;
  7950. filter:drop-shadow(none);
  7951. transition:none;
  7952. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7953. font-weight:400;
  7954. font-style:normal;
  7955. font-size:12px;
  7956. color:rgba(255, 255, 255, 0.6980392156862745);
  7957. text-align:left;
  7958. }
  7959. #u4333 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:1241px;
  7963. top:591px;
  7964. width:53px;
  7965. height:21px;
  7966. display:flex;
  7967. transition:none;
  7968. transform-origin:50% 50%;
  7969. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:12px;
  7973. color:rgba(255, 255, 255, 0.6980392156862745);
  7974. text-align:left;
  7975. }
  7976. #u4333 .text {
  7977. position:absolute;
  7978. align-self:center;
  7979. padding:2px 2px 2px 2px;
  7980. box-sizing:border-box;
  7981. width:100%;
  7982. }
  7983. #u4333_text {
  7984. border-width:0px;
  7985. white-space:nowrap;
  7986. text-transform:none;
  7987. }
  7988. #u4334_div {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:0px;
  7992. top:0px;
  7993. width:19px;
  7994. height:21px;
  7995. background:inherit;
  7996. background-color:rgba(255, 255, 255, 0);
  7997. border-radius:0px;
  7998. filter:drop-shadow(none);
  7999. transition:none;
  8000. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:12px;
  8004. color:#FFFFFF;
  8005. text-align:left;
  8006. }
  8007. #u4334 {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:1327px;
  8011. top:591px;
  8012. width:19px;
  8013. height:21px;
  8014. display:flex;
  8015. transition:none;
  8016. transform-origin:50% 50%;
  8017. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8018. font-weight:400;
  8019. font-style:normal;
  8020. font-size:12px;
  8021. color:#FFFFFF;
  8022. text-align:left;
  8023. }
  8024. #u4334 .text {
  8025. position:absolute;
  8026. align-self:center;
  8027. padding:2px 2px 2px 2px;
  8028. box-sizing:border-box;
  8029. width:100%;
  8030. }
  8031. #u4334_text {
  8032. border-width:0px;
  8033. white-space:nowrap;
  8034. text-transform:none;
  8035. }
  8036. #u4335_div {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:0px;
  8040. top:0px;
  8041. width:49px;
  8042. height:21px;
  8043. background:inherit;
  8044. background-color:rgba(255, 255, 255, 0);
  8045. border-radius:0px;
  8046. filter:drop-shadow(none);
  8047. transition:none;
  8048. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. font-size:12px;
  8052. color:#FFFFFF;
  8053. text-align:left;
  8054. }
  8055. #u4335 {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:1436px;
  8059. top:591px;
  8060. width:49px;
  8061. height:21px;
  8062. display:flex;
  8063. transition:none;
  8064. transform-origin:50% 50%;
  8065. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8066. font-weight:400;
  8067. font-style:normal;
  8068. font-size:12px;
  8069. color:#FFFFFF;
  8070. text-align:left;
  8071. }
  8072. #u4335 .text {
  8073. position:absolute;
  8074. align-self:center;
  8075. padding:2px 2px 2px 2px;
  8076. box-sizing:border-box;
  8077. width:100%;
  8078. }
  8079. #u4335_text {
  8080. border-width:0px;
  8081. white-space:nowrap;
  8082. text-transform:none;
  8083. }
  8084. #u4336_div {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:0px;
  8088. top:0px;
  8089. width:19px;
  8090. height:21px;
  8091. background:inherit;
  8092. background-color:rgba(255, 255, 255, 0);
  8093. border-radius:0px;
  8094. filter:drop-shadow(none);
  8095. transition:none;
  8096. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8097. font-weight:400;
  8098. font-style:normal;
  8099. font-size:12px;
  8100. color:#FFFFFF;
  8101. text-align:left;
  8102. }
  8103. #u4336 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:1392px;
  8107. top:591px;
  8108. width:19px;
  8109. height:21px;
  8110. display:flex;
  8111. transition:none;
  8112. transform-origin:50% 50%;
  8113. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8114. font-weight:400;
  8115. font-style:normal;
  8116. font-size:12px;
  8117. color:#FFFFFF;
  8118. text-align:left;
  8119. }
  8120. #u4336 .text {
  8121. position:absolute;
  8122. align-self:center;
  8123. padding:2px 2px 2px 2px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u4336_text {
  8128. border-width:0px;
  8129. white-space:nowrap;
  8130. text-transform:none;
  8131. }
  8132. #u4337 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:0px;
  8138. height:0px;
  8139. }
  8140. #u4338_div {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:240px;
  8146. height:23px;
  8147. background:inherit;
  8148. background-color:rgba(255, 255, 255, 0);
  8149. border-radius:0px;
  8150. filter:drop-shadow(none);
  8151. transition:none;
  8152. font-size:12px;
  8153. }
  8154. #u4338 {
  8155. border-width:0px;
  8156. position:absolute;
  8157. left:1241px;
  8158. top:614px;
  8159. width:240px;
  8160. height:23px;
  8161. display:flex;
  8162. transition:none;
  8163. transform-origin:50% 50%;
  8164. font-size:12px;
  8165. }
  8166. #u4338 .text {
  8167. position:absolute;
  8168. align-self:center;
  8169. padding:2px 2px 2px 2px;
  8170. box-sizing:border-box;
  8171. width:100%;
  8172. }
  8173. #u4338_text {
  8174. border-width:0px;
  8175. word-wrap:break-word;
  8176. text-transform:none;
  8177. visibility:hidden;
  8178. }
  8179. #u4339_div {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:0px;
  8183. top:0px;
  8184. width:53px;
  8185. height:21px;
  8186. background:inherit;
  8187. background-color:rgba(255, 255, 255, 0);
  8188. border-radius:0px;
  8189. filter:drop-shadow(none);
  8190. transition:none;
  8191. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:12px;
  8195. color:rgba(255, 255, 255, 0.6980392156862745);
  8196. text-align:left;
  8197. }
  8198. #u4339 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:1241px;
  8202. top:615px;
  8203. width:53px;
  8204. height:21px;
  8205. display:flex;
  8206. transition:none;
  8207. transform-origin:50% 50%;
  8208. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:12px;
  8212. color:rgba(255, 255, 255, 0.6980392156862745);
  8213. text-align:left;
  8214. }
  8215. #u4339 .text {
  8216. position:absolute;
  8217. align-self:center;
  8218. padding:2px 2px 2px 2px;
  8219. box-sizing:border-box;
  8220. width:100%;
  8221. }
  8222. #u4339_text {
  8223. border-width:0px;
  8224. white-space:nowrap;
  8225. text-transform:none;
  8226. }
  8227. #u4340_div {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:0px;
  8231. top:0px;
  8232. width:19px;
  8233. height:21px;
  8234. background:inherit;
  8235. background-color:rgba(255, 255, 255, 0);
  8236. border-radius:0px;
  8237. filter:drop-shadow(none);
  8238. transition:none;
  8239. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. font-size:12px;
  8243. color:#FFFFFF;
  8244. text-align:left;
  8245. }
  8246. #u4340 {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:1327px;
  8250. top:615px;
  8251. width:19px;
  8252. height:21px;
  8253. display:flex;
  8254. transition:none;
  8255. transform-origin:50% 50%;
  8256. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:12px;
  8260. color:#FFFFFF;
  8261. text-align:left;
  8262. }
  8263. #u4340 .text {
  8264. position:absolute;
  8265. align-self:center;
  8266. padding:2px 2px 2px 2px;
  8267. box-sizing:border-box;
  8268. width:100%;
  8269. }
  8270. #u4340_text {
  8271. border-width:0px;
  8272. white-space:nowrap;
  8273. text-transform:none;
  8274. }
  8275. #u4341_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:49px;
  8281. height:21px;
  8282. background:inherit;
  8283. background-color:rgba(255, 255, 255, 0);
  8284. border-radius:0px;
  8285. filter:drop-shadow(none);
  8286. transition:none;
  8287. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8288. font-weight:400;
  8289. font-style:normal;
  8290. font-size:12px;
  8291. color:#FFFFFF;
  8292. text-align:left;
  8293. }
  8294. #u4341 {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:1436px;
  8298. top:615px;
  8299. width:49px;
  8300. height:21px;
  8301. display:flex;
  8302. transition:none;
  8303. transform-origin:50% 50%;
  8304. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8305. font-weight:400;
  8306. font-style:normal;
  8307. font-size:12px;
  8308. color:#FFFFFF;
  8309. text-align:left;
  8310. }
  8311. #u4341 .text {
  8312. position:absolute;
  8313. align-self:center;
  8314. padding:2px 2px 2px 2px;
  8315. box-sizing:border-box;
  8316. width:100%;
  8317. }
  8318. #u4341_text {
  8319. border-width:0px;
  8320. white-space:nowrap;
  8321. text-transform:none;
  8322. }
  8323. #u4342_div {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:19px;
  8329. height:21px;
  8330. background:inherit;
  8331. background-color:rgba(255, 255, 255, 0);
  8332. border-radius:0px;
  8333. filter:drop-shadow(none);
  8334. transition:none;
  8335. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8336. font-weight:400;
  8337. font-style:normal;
  8338. font-size:12px;
  8339. color:#FFFFFF;
  8340. text-align:left;
  8341. }
  8342. #u4342 {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:1392px;
  8346. top:615px;
  8347. width:19px;
  8348. height:21px;
  8349. display:flex;
  8350. transition:none;
  8351. transform-origin:50% 50%;
  8352. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8353. font-weight:400;
  8354. font-style:normal;
  8355. font-size:12px;
  8356. color:#FFFFFF;
  8357. text-align:left;
  8358. }
  8359. #u4342 .text {
  8360. position:absolute;
  8361. align-self:center;
  8362. padding:2px 2px 2px 2px;
  8363. box-sizing:border-box;
  8364. width:100%;
  8365. }
  8366. #u4342_text {
  8367. border-width:0px;
  8368. white-space:nowrap;
  8369. text-transform:none;
  8370. }
  8371. #u4343 {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:0px;
  8377. height:0px;
  8378. }
  8379. #u4344_div {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:0px;
  8383. top:0px;
  8384. width:240px;
  8385. height:23px;
  8386. background:inherit;
  8387. background-color:rgba(255, 255, 255, 0);
  8388. border-radius:0px;
  8389. filter:drop-shadow(none);
  8390. transition:none;
  8391. font-size:12px;
  8392. }
  8393. #u4344 {
  8394. border-width:0px;
  8395. position:absolute;
  8396. left:1241px;
  8397. top:638px;
  8398. width:240px;
  8399. height:23px;
  8400. display:flex;
  8401. transition:none;
  8402. transform-origin:50% 50%;
  8403. font-size:12px;
  8404. }
  8405. #u4344 .text {
  8406. position:absolute;
  8407. align-self:center;
  8408. padding:2px 2px 2px 2px;
  8409. box-sizing:border-box;
  8410. width:100%;
  8411. }
  8412. #u4344_text {
  8413. border-width:0px;
  8414. word-wrap:break-word;
  8415. text-transform:none;
  8416. visibility:hidden;
  8417. }
  8418. #u4345_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:53px;
  8424. height:21px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 0);
  8427. border-radius:0px;
  8428. filter:drop-shadow(none);
  8429. transition:none;
  8430. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:12px;
  8434. color:rgba(255, 255, 255, 0.6980392156862745);
  8435. text-align:left;
  8436. }
  8437. #u4345 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:1241px;
  8441. top:639px;
  8442. width:53px;
  8443. height:21px;
  8444. display:flex;
  8445. transition:none;
  8446. transform-origin:50% 50%;
  8447. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:12px;
  8451. color:rgba(255, 255, 255, 0.6980392156862745);
  8452. text-align:left;
  8453. }
  8454. #u4345 .text {
  8455. position:absolute;
  8456. align-self:center;
  8457. padding:2px 2px 2px 2px;
  8458. box-sizing:border-box;
  8459. width:100%;
  8460. }
  8461. #u4345_text {
  8462. border-width:0px;
  8463. white-space:nowrap;
  8464. text-transform:none;
  8465. }
  8466. #u4346_div {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:19px;
  8472. height:21px;
  8473. background:inherit;
  8474. background-color:rgba(255, 255, 255, 0);
  8475. border-radius:0px;
  8476. filter:drop-shadow(none);
  8477. transition:none;
  8478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8479. font-weight:400;
  8480. font-style:normal;
  8481. font-size:12px;
  8482. color:#FFFFFF;
  8483. text-align:left;
  8484. }
  8485. #u4346 {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:1327px;
  8489. top:639px;
  8490. width:19px;
  8491. height:21px;
  8492. display:flex;
  8493. transition:none;
  8494. transform-origin:50% 50%;
  8495. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8496. font-weight:400;
  8497. font-style:normal;
  8498. font-size:12px;
  8499. color:#FFFFFF;
  8500. text-align:left;
  8501. }
  8502. #u4346 .text {
  8503. position:absolute;
  8504. align-self:center;
  8505. padding:2px 2px 2px 2px;
  8506. box-sizing:border-box;
  8507. width:100%;
  8508. }
  8509. #u4346_text {
  8510. border-width:0px;
  8511. white-space:nowrap;
  8512. text-transform:none;
  8513. }
  8514. #u4347_div {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:49px;
  8520. height:21px;
  8521. background:inherit;
  8522. background-color:rgba(255, 255, 255, 0);
  8523. border-radius:0px;
  8524. filter:drop-shadow(none);
  8525. transition:none;
  8526. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8527. font-weight:400;
  8528. font-style:normal;
  8529. font-size:12px;
  8530. color:#FFFFFF;
  8531. text-align:left;
  8532. }
  8533. #u4347 {
  8534. border-width:0px;
  8535. position:absolute;
  8536. left:1436px;
  8537. top:639px;
  8538. width:49px;
  8539. height:21px;
  8540. display:flex;
  8541. transition:none;
  8542. transform-origin:50% 50%;
  8543. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:12px;
  8547. color:#FFFFFF;
  8548. text-align:left;
  8549. }
  8550. #u4347 .text {
  8551. position:absolute;
  8552. align-self:center;
  8553. padding:2px 2px 2px 2px;
  8554. box-sizing:border-box;
  8555. width:100%;
  8556. }
  8557. #u4347_text {
  8558. border-width:0px;
  8559. white-space:nowrap;
  8560. text-transform:none;
  8561. }
  8562. #u4348_div {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:0px;
  8566. top:0px;
  8567. width:19px;
  8568. height:21px;
  8569. background:inherit;
  8570. background-color:rgba(255, 255, 255, 0);
  8571. border-radius:0px;
  8572. filter:drop-shadow(none);
  8573. transition:none;
  8574. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:12px;
  8578. color:#FFFFFF;
  8579. text-align:left;
  8580. }
  8581. #u4348 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:1392px;
  8585. top:639px;
  8586. width:19px;
  8587. height:21px;
  8588. display:flex;
  8589. transition:none;
  8590. transform-origin:50% 50%;
  8591. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:12px;
  8595. color:#FFFFFF;
  8596. text-align:left;
  8597. }
  8598. #u4348 .text {
  8599. position:absolute;
  8600. align-self:center;
  8601. padding:2px 2px 2px 2px;
  8602. box-sizing:border-box;
  8603. width:100%;
  8604. }
  8605. #u4348_text {
  8606. border-width:0px;
  8607. white-space:nowrap;
  8608. text-transform:none;
  8609. }
  8610. #u4349 {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:0px;
  8616. height:0px;
  8617. }
  8618. #u4350_div {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:56px;
  8624. height:50px;
  8625. background:inherit;
  8626. background-color:rgba(245, 154, 35, 0.2);
  8627. box-sizing:border-box;
  8628. border-width:1px;
  8629. border-style:solid;
  8630. border-color:rgba(245, 154, 35, 0.4);
  8631. border-radius:0px;
  8632. filter:drop-shadow(none);
  8633. transition:none;
  8634. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:12px;
  8638. color:#FFFFFF;
  8639. text-align:left;
  8640. }
  8641. #u4350 {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:1420px;
  8645. top:326px;
  8646. width:56px;
  8647. height:50px;
  8648. display:flex;
  8649. transition:none;
  8650. transform-origin:50% 50%;
  8651. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:12px;
  8655. color:#FFFFFF;
  8656. text-align:left;
  8657. }
  8658. #u4350 .text {
  8659. position:absolute;
  8660. align-self:center;
  8661. padding:2px 2px 2px 10px;
  8662. box-sizing:border-box;
  8663. width:100%;
  8664. }
  8665. #u4350_text {
  8666. border-width:0px;
  8667. word-wrap:break-word;
  8668. text-transform:none;
  8669. visibility:hidden;
  8670. }
  8671. #u4351_div {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:0px;
  8675. top:0px;
  8676. width:30px;
  8677. height:17px;
  8678. background:inherit;
  8679. background-color:rgba(255, 255, 255, 0);
  8680. border-radius:0px;
  8681. filter:drop-shadow(none);
  8682. transition:none;
  8683. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:12px;
  8687. color:#FFFFFF;
  8688. text-align:center;
  8689. }
  8690. #u4351 {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:1434px;
  8694. top:334px;
  8695. width:30px;
  8696. height:17px;
  8697. display:flex;
  8698. transition:none;
  8699. transform-origin:50% 50%;
  8700. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8701. font-weight:400;
  8702. font-style:normal;
  8703. font-size:12px;
  8704. color:#FFFFFF;
  8705. text-align:center;
  8706. }
  8707. #u4351 .text {
  8708. position:absolute;
  8709. align-self:flex-start;
  8710. padding:0px 0px 0px 0px;
  8711. box-sizing:border-box;
  8712. width:100%;
  8713. }
  8714. #u4351_text {
  8715. border-width:0px;
  8716. word-wrap:break-word;
  8717. text-transform:none;
  8718. }
  8719. #u4352_div {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:0px;
  8723. top:0px;
  8724. width:46px;
  8725. height:14px;
  8726. background:inherit;
  8727. background-color:rgba(255, 255, 255, 0);
  8728. border-radius:0px;
  8729. filter:drop-shadow(none);
  8730. transition:none;
  8731. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:10px;
  8735. color:#FFFFFF;
  8736. text-align:center;
  8737. }
  8738. #u4352 {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:1426px;
  8742. top:354px;
  8743. width:46px;
  8744. height:14px;
  8745. display:flex;
  8746. transition:none;
  8747. transform-origin:50% 50%;
  8748. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8749. font-weight:400;
  8750. font-style:normal;
  8751. font-size:10px;
  8752. color:#FFFFFF;
  8753. text-align:center;
  8754. }
  8755. #u4352 .text {
  8756. position:absolute;
  8757. align-self:flex-start;
  8758. padding:0px 0px 0px 0px;
  8759. box-sizing:border-box;
  8760. width:100%;
  8761. }
  8762. #u4352_text {
  8763. border-width:0px;
  8764. word-wrap:break-word;
  8765. text-transform:none;
  8766. }
  8767. #u4353 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:0px;
  8771. top:0px;
  8772. width:0px;
  8773. height:0px;
  8774. }
  8775. #u4354 {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:474px;
  8779. top:292px;
  8780. width:20px;
  8781. height:30px;
  8782. display:flex;
  8783. transition:none;
  8784. }
  8785. #u4354 .text {
  8786. position:absolute;
  8787. align-self:center;
  8788. padding:2px 2px 2px 2px;
  8789. box-sizing:border-box;
  8790. width:100%;
  8791. }
  8792. #u4354_img {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:-5px;
  8796. top:-5px;
  8797. width:30px;
  8798. height:40px;
  8799. }
  8800. #u4354_text {
  8801. border-width:0px;
  8802. word-wrap:break-word;
  8803. text-transform:none;
  8804. visibility:hidden;
  8805. }
  8806. #u4355_div {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:0px;
  8810. top:0px;
  8811. width:57px;
  8812. height:13px;
  8813. background:inherit;
  8814. background-color:rgba(245, 154, 35, 1);
  8815. border-radius:4px;
  8816. filter:drop-shadow(none);
  8817. transition:none;
  8818. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8819. font-weight:400;
  8820. font-style:normal;
  8821. font-size:7px;
  8822. color:#FFFFFF;
  8823. }
  8824. #u4355 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:489px;
  8828. top:281px;
  8829. width:57px;
  8830. height:13px;
  8831. display:flex;
  8832. transition:none;
  8833. transform-origin:50% 50%;
  8834. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8835. font-weight:400;
  8836. font-style:normal;
  8837. font-size:7px;
  8838. color:#FFFFFF;
  8839. }
  8840. #u4355 .text {
  8841. position:absolute;
  8842. align-self:center;
  8843. padding:2px 2px 2px 2px;
  8844. box-sizing:border-box;
  8845. width:100%;
  8846. }
  8847. #u4355_text {
  8848. border-width:0px;
  8849. word-wrap:break-word;
  8850. text-transform:none;
  8851. }
  8852. #u4356 {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:1015px;
  8856. top:392px;
  8857. width:20px;
  8858. height:30px;
  8859. display:flex;
  8860. transition:none;
  8861. }
  8862. #u4356 .text {
  8863. position:absolute;
  8864. align-self:center;
  8865. padding:2px 2px 2px 2px;
  8866. box-sizing:border-box;
  8867. width:100%;
  8868. }
  8869. #u4356_img {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:-5px;
  8873. top:-5px;
  8874. width:30px;
  8875. height:40px;
  8876. }
  8877. #u4356_text {
  8878. border-width:0px;
  8879. word-wrap:break-word;
  8880. text-transform:none;
  8881. visibility:hidden;
  8882. }
  8883. #u4357_div {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:57px;
  8889. height:13px;
  8890. background:inherit;
  8891. background-color:rgba(245, 154, 35, 1);
  8892. border-radius:4px;
  8893. filter:drop-shadow(none);
  8894. transition:none;
  8895. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8896. font-weight:400;
  8897. font-style:normal;
  8898. font-size:7px;
  8899. color:#FFFFFF;
  8900. }
  8901. #u4357 {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:1030px;
  8905. top:381px;
  8906. width:57px;
  8907. height:13px;
  8908. display:flex;
  8909. transition:none;
  8910. transform-origin:50% 50%;
  8911. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:7px;
  8915. color:#FFFFFF;
  8916. }
  8917. #u4357 .text {
  8918. position:absolute;
  8919. align-self:center;
  8920. padding:2px 2px 2px 2px;
  8921. box-sizing:border-box;
  8922. width:100%;
  8923. }
  8924. #u4357_text {
  8925. border-width:0px;
  8926. word-wrap:break-word;
  8927. text-transform:none;
  8928. }
  8929. #u4358 {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:882px;
  8933. top:303px;
  8934. width:20px;
  8935. height:30px;
  8936. display:flex;
  8937. transition:none;
  8938. }
  8939. #u4358 .text {
  8940. position:absolute;
  8941. align-self:center;
  8942. padding:2px 2px 2px 2px;
  8943. box-sizing:border-box;
  8944. width:100%;
  8945. }
  8946. #u4358_img {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:-5px;
  8950. top:-5px;
  8951. width:30px;
  8952. height:40px;
  8953. }
  8954. #u4358_text {
  8955. border-width:0px;
  8956. word-wrap:break-word;
  8957. text-transform:none;
  8958. visibility:hidden;
  8959. }
  8960. #u4359_div {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:0px;
  8964. top:0px;
  8965. width:57px;
  8966. height:13px;
  8967. background:inherit;
  8968. background-color:rgba(245, 154, 35, 1);
  8969. border-radius:4px;
  8970. filter:drop-shadow(none);
  8971. transition:none;
  8972. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8973. font-weight:400;
  8974. font-style:normal;
  8975. font-size:7px;
  8976. color:#FFFFFF;
  8977. }
  8978. #u4359 {
  8979. border-width:0px;
  8980. position:absolute;
  8981. left:897px;
  8982. top:292px;
  8983. width:57px;
  8984. height:13px;
  8985. display:flex;
  8986. transition:none;
  8987. transform-origin:50% 50%;
  8988. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8989. font-weight:400;
  8990. font-style:normal;
  8991. font-size:7px;
  8992. color:#FFFFFF;
  8993. }
  8994. #u4359 .text {
  8995. position:absolute;
  8996. align-self:center;
  8997. padding:2px 2px 2px 2px;
  8998. box-sizing:border-box;
  8999. width:100%;
  9000. }
  9001. #u4359_text {
  9002. border-width:0px;
  9003. word-wrap:break-word;
  9004. text-transform:none;
  9005. }
  9006. #u4360 {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:0px;
  9012. height:0px;
  9013. }
  9014. #u4361 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:0px;
  9018. top:0px;
  9019. width:0px;
  9020. height:0px;
  9021. }
  9022. #u4362_div {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:0px;
  9026. top:0px;
  9027. width:57px;
  9028. height:20px;
  9029. background:inherit;
  9030. background-color:rgba(28, 33, 30, 1);
  9031. border-radius:0px;
  9032. filter:drop-shadow(none);
  9033. transition:none;
  9034. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9035. font-weight:500;
  9036. font-style:normal;
  9037. font-size:14px;
  9038. color:#FFFFFF;
  9039. }
  9040. #u4362 {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:412px;
  9044. top:824px;
  9045. width:57px;
  9046. height:20px;
  9047. display:flex;
  9048. transition:none;
  9049. transform-origin:50% 50%;
  9050. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9051. font-weight:500;
  9052. font-style:normal;
  9053. font-size:14px;
  9054. color:#FFFFFF;
  9055. }
  9056. #u4362 .text {
  9057. position:absolute;
  9058. align-self:flex-start;
  9059. padding:0px 0px 0px 0px;
  9060. box-sizing:border-box;
  9061. width:100%;
  9062. }
  9063. #u4362_text {
  9064. border-width:0px;
  9065. white-space:nowrap;
  9066. text-transform:none;
  9067. }
  9068. #u4363 {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:424px;
  9072. top:783px;
  9073. width:33px;
  9074. height:39px;
  9075. display:flex;
  9076. transition:none;
  9077. color:#FFFFFF;
  9078. }
  9079. #u4363 .text {
  9080. position:absolute;
  9081. align-self:center;
  9082. padding:2px 2px 2px 2px;
  9083. box-sizing:border-box;
  9084. width:100%;
  9085. }
  9086. #u4363_img {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:0px;
  9090. top:0px;
  9091. width:33px;
  9092. height:39px;
  9093. }
  9094. #u4363_text {
  9095. border-width:0px;
  9096. word-wrap:break-word;
  9097. text-transform:none;
  9098. }
  9099. #u4364 {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:0px;
  9105. height:0px;
  9106. }
  9107. #u4365_div {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:57px;
  9113. height:20px;
  9114. background:inherit;
  9115. background-color:rgba(28, 33, 30, 1);
  9116. border-radius:0px;
  9117. filter:drop-shadow(none);
  9118. transition:none;
  9119. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9120. font-weight:500;
  9121. font-style:normal;
  9122. font-size:14px;
  9123. color:#FFFFFF;
  9124. }
  9125. #u4365 {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:486px;
  9129. top:824px;
  9130. width:57px;
  9131. height:20px;
  9132. display:flex;
  9133. transition:none;
  9134. transform-origin:50% 50%;
  9135. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9136. font-weight:500;
  9137. font-style:normal;
  9138. font-size:14px;
  9139. color:#FFFFFF;
  9140. }
  9141. #u4365 .text {
  9142. position:absolute;
  9143. align-self:flex-start;
  9144. padding:0px 0px 0px 0px;
  9145. box-sizing:border-box;
  9146. width:100%;
  9147. }
  9148. #u4365_text {
  9149. border-width:0px;
  9150. white-space:nowrap;
  9151. text-transform:none;
  9152. }
  9153. #u4366 {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:498px;
  9157. top:783px;
  9158. width:33px;
  9159. height:39px;
  9160. display:flex;
  9161. transition:none;
  9162. color:#FFFFFF;
  9163. }
  9164. #u4366 .text {
  9165. position:absolute;
  9166. align-self:center;
  9167. padding:2px 2px 2px 2px;
  9168. box-sizing:border-box;
  9169. width:100%;
  9170. }
  9171. #u4366_img {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:33px;
  9177. height:39px;
  9178. }
  9179. #u4366_text {
  9180. border-width:0px;
  9181. word-wrap:break-word;
  9182. text-transform:none;
  9183. }
  9184. #u4367 {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:0px;
  9188. top:0px;
  9189. width:0px;
  9190. height:0px;
  9191. }
  9192. #u4368_div {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:0px;
  9196. top:0px;
  9197. width:57px;
  9198. height:20px;
  9199. background:inherit;
  9200. background-color:rgba(28, 33, 30, 1);
  9201. border-radius:0px;
  9202. filter:drop-shadow(none);
  9203. transition:none;
  9204. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9205. font-weight:500;
  9206. font-style:normal;
  9207. font-size:14px;
  9208. color:#FFFFFF;
  9209. }
  9210. #u4368 {
  9211. border-width:0px;
  9212. position:absolute;
  9213. left:335px;
  9214. top:824px;
  9215. width:57px;
  9216. height:20px;
  9217. display:flex;
  9218. transition:none;
  9219. transform-origin:50% 50%;
  9220. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9221. font-weight:500;
  9222. font-style:normal;
  9223. font-size:14px;
  9224. color:#FFFFFF;
  9225. }
  9226. #u4368 .text {
  9227. position:absolute;
  9228. align-self:flex-start;
  9229. padding:0px 0px 0px 0px;
  9230. box-sizing:border-box;
  9231. width:100%;
  9232. }
  9233. #u4368_text {
  9234. border-width:0px;
  9235. white-space:nowrap;
  9236. text-transform:none;
  9237. }
  9238. #u4369 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:347px;
  9242. top:783px;
  9243. width:33px;
  9244. height:39px;
  9245. display:flex;
  9246. transition:none;
  9247. color:#FFFFFF;
  9248. }
  9249. #u4369 .text {
  9250. position:absolute;
  9251. align-self:center;
  9252. padding:2px 2px 2px 2px;
  9253. box-sizing:border-box;
  9254. width:100%;
  9255. }
  9256. #u4369_img {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:0px;
  9260. top:0px;
  9261. width:33px;
  9262. height:39px;
  9263. }
  9264. #u4369_text {
  9265. border-width:0px;
  9266. word-wrap:break-word;
  9267. text-transform:none;
  9268. }
  9269. #u4370_div {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:0px;
  9273. top:0px;
  9274. width:59px;
  9275. height:20px;
  9276. background:inherit;
  9277. background-color:rgba(28, 33, 30, 1);
  9278. border-radius:0px;
  9279. filter:drop-shadow(none);
  9280. transition:none;
  9281. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9282. font-weight:500;
  9283. font-style:normal;
  9284. font-size:14px;
  9285. color:#FFFFFF;
  9286. }
  9287. #u4370 {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:335px;
  9291. top:824px;
  9292. width:59px;
  9293. height:20px;
  9294. display:flex;
  9295. transition:none;
  9296. transform-origin:50% 50%;
  9297. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9298. font-weight:500;
  9299. font-style:normal;
  9300. font-size:14px;
  9301. color:#FFFFFF;
  9302. }
  9303. #u4370 .text {
  9304. position:absolute;
  9305. align-self:flex-start;
  9306. padding:0px 0px 0px 0px;
  9307. box-sizing:border-box;
  9308. width:100%;
  9309. }
  9310. #u4370_text {
  9311. border-width:0px;
  9312. word-wrap:break-word;
  9313. text-transform:none;
  9314. }
  9315. #u4371 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:0px;
  9319. top:0px;
  9320. width:0px;
  9321. height:0px;
  9322. }
  9323. #u4372_div {
  9324. border-width:0px;
  9325. position:absolute;
  9326. left:0px;
  9327. top:0px;
  9328. width:57px;
  9329. height:20px;
  9330. background:inherit;
  9331. background-color:rgba(28, 33, 30, 1);
  9332. border-radius:0px;
  9333. filter:drop-shadow(none);
  9334. transition:none;
  9335. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9336. font-weight:500;
  9337. font-style:normal;
  9338. font-size:14px;
  9339. color:#FFFFFF;
  9340. }
  9341. #u4372 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:561px;
  9345. top:824px;
  9346. width:57px;
  9347. height:20px;
  9348. display:flex;
  9349. transition:none;
  9350. transform-origin:50% 50%;
  9351. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9352. font-weight:500;
  9353. font-style:normal;
  9354. font-size:14px;
  9355. color:#FFFFFF;
  9356. }
  9357. #u4372 .text {
  9358. position:absolute;
  9359. align-self:flex-start;
  9360. padding:0px 0px 0px 0px;
  9361. box-sizing:border-box;
  9362. width:100%;
  9363. }
  9364. #u4372_text {
  9365. border-width:0px;
  9366. white-space:nowrap;
  9367. text-transform:none;
  9368. }
  9369. #u4373 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:573px;
  9373. top:783px;
  9374. width:33px;
  9375. height:39px;
  9376. display:flex;
  9377. transition:none;
  9378. color:#FFFFFF;
  9379. }
  9380. #u4373 .text {
  9381. position:absolute;
  9382. align-self:center;
  9383. padding:2px 2px 2px 2px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u4373_img {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:0px;
  9391. top:0px;
  9392. width:33px;
  9393. height:39px;
  9394. }
  9395. #u4373_text {
  9396. border-width:0px;
  9397. word-wrap:break-word;
  9398. text-transform:none;
  9399. }
  9400. #u4374 {
  9401. border-width:0px;
  9402. position:absolute;
  9403. left:0px;
  9404. top:0px;
  9405. width:0px;
  9406. height:0px;
  9407. }
  9408. #u4375_div {
  9409. border-width:0px;
  9410. position:absolute;
  9411. left:0px;
  9412. top:0px;
  9413. width:57px;
  9414. height:20px;
  9415. background:inherit;
  9416. background-color:rgba(28, 33, 30, 1);
  9417. border-radius:0px;
  9418. filter:drop-shadow(none);
  9419. transition:none;
  9420. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9421. font-weight:500;
  9422. font-style:normal;
  9423. font-size:14px;
  9424. color:#FFFFFF;
  9425. }
  9426. #u4375 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:636px;
  9430. top:824px;
  9431. width:57px;
  9432. height:20px;
  9433. display:flex;
  9434. transition:none;
  9435. transform-origin:50% 50%;
  9436. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9437. font-weight:500;
  9438. font-style:normal;
  9439. font-size:14px;
  9440. color:#FFFFFF;
  9441. }
  9442. #u4375 .text {
  9443. position:absolute;
  9444. align-self:flex-start;
  9445. padding:0px 0px 0px 0px;
  9446. box-sizing:border-box;
  9447. width:100%;
  9448. }
  9449. #u4375_text {
  9450. border-width:0px;
  9451. white-space:nowrap;
  9452. text-transform:none;
  9453. }
  9454. #u4376 {
  9455. border-width:0px;
  9456. position:absolute;
  9457. left:648px;
  9458. top:783px;
  9459. width:33px;
  9460. height:39px;
  9461. display:flex;
  9462. transition:none;
  9463. color:#FFFFFF;
  9464. }
  9465. #u4376 .text {
  9466. position:absolute;
  9467. align-self:center;
  9468. padding:2px 2px 2px 2px;
  9469. box-sizing:border-box;
  9470. width:100%;
  9471. }
  9472. #u4376_img {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:0px;
  9476. top:0px;
  9477. width:33px;
  9478. height:39px;
  9479. }
  9480. #u4376_text {
  9481. border-width:0px;
  9482. word-wrap:break-word;
  9483. text-transform:none;
  9484. }
  9485. #u4377 {
  9486. border-width:0px;
  9487. position:absolute;
  9488. left:0px;
  9489. top:0px;
  9490. width:0px;
  9491. height:0px;
  9492. }
  9493. #u4378_div {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:0px;
  9497. top:0px;
  9498. width:56px;
  9499. height:20px;
  9500. background:inherit;
  9501. background-color:rgba(28, 33, 30, 1);
  9502. border-radius:0px;
  9503. filter:drop-shadow(none);
  9504. transition:none;
  9505. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9506. font-weight:500;
  9507. font-style:normal;
  9508. font-size:14px;
  9509. color:#FFFFFF;
  9510. }
  9511. #u4378 {
  9512. border-width:0px;
  9513. position:absolute;
  9514. left:787px;
  9515. top:824px;
  9516. width:56px;
  9517. height:20px;
  9518. display:flex;
  9519. transition:none;
  9520. transform-origin:50% 50%;
  9521. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9522. font-weight:500;
  9523. font-style:normal;
  9524. font-size:14px;
  9525. color:#FFFFFF;
  9526. }
  9527. #u4378 .text {
  9528. position:absolute;
  9529. align-self:flex-start;
  9530. padding:0px 0px 0px 0px;
  9531. box-sizing:border-box;
  9532. width:100%;
  9533. }
  9534. #u4378_text {
  9535. border-width:0px;
  9536. white-space:nowrap;
  9537. text-transform:none;
  9538. }
  9539. #u4379 {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:799px;
  9543. top:783px;
  9544. width:33px;
  9545. height:39px;
  9546. display:flex;
  9547. transition:none;
  9548. color:#FFFFFF;
  9549. }
  9550. #u4379 .text {
  9551. position:absolute;
  9552. align-self:center;
  9553. padding:2px 2px 2px 2px;
  9554. box-sizing:border-box;
  9555. width:100%;
  9556. }
  9557. #u4379_img {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:33px;
  9563. height:39px;
  9564. }
  9565. #u4379_text {
  9566. border-width:0px;
  9567. word-wrap:break-word;
  9568. text-transform:none;
  9569. }
  9570. #u4380 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:0px;
  9574. top:0px;
  9575. width:0px;
  9576. height:0px;
  9577. }
  9578. #u4381_div {
  9579. border-width:0px;
  9580. position:absolute;
  9581. left:0px;
  9582. top:0px;
  9583. width:59px;
  9584. height:20px;
  9585. background:inherit;
  9586. background-color:rgba(28, 33, 30, 1);
  9587. border-radius:0px;
  9588. filter:drop-shadow(none);
  9589. transition:none;
  9590. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9591. font-weight:500;
  9592. font-style:normal;
  9593. font-size:14px;
  9594. color:#FFFFFF;
  9595. }
  9596. #u4381 {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:711px;
  9600. top:824px;
  9601. width:59px;
  9602. height:20px;
  9603. display:flex;
  9604. transition:none;
  9605. transform-origin:50% 50%;
  9606. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9607. font-weight:500;
  9608. font-style:normal;
  9609. font-size:14px;
  9610. color:#FFFFFF;
  9611. }
  9612. #u4381 .text {
  9613. position:absolute;
  9614. align-self:flex-start;
  9615. padding:0px 0px 0px 0px;
  9616. box-sizing:border-box;
  9617. width:100%;
  9618. }
  9619. #u4381_text {
  9620. border-width:0px;
  9621. word-wrap:break-word;
  9622. text-transform:none;
  9623. }
  9624. #u4382 {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:722px;
  9628. top:783px;
  9629. width:33px;
  9630. height:39px;
  9631. display:flex;
  9632. transition:none;
  9633. color:#FFFFFF;
  9634. }
  9635. #u4382 .text {
  9636. position:absolute;
  9637. align-self:center;
  9638. padding:2px 2px 2px 2px;
  9639. box-sizing:border-box;
  9640. width:100%;
  9641. }
  9642. #u4382_img {
  9643. border-width:0px;
  9644. position:absolute;
  9645. left:0px;
  9646. top:0px;
  9647. width:33px;
  9648. height:39px;
  9649. }
  9650. #u4382_text {
  9651. border-width:0px;
  9652. word-wrap:break-word;
  9653. text-transform:none;
  9654. }
  9655. #u4383 {
  9656. border-width:0px;
  9657. position:absolute;
  9658. left:0px;
  9659. top:0px;
  9660. width:0px;
  9661. height:0px;
  9662. }
  9663. #u4384_div {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:0px;
  9667. top:0px;
  9668. width:57px;
  9669. height:20px;
  9670. background:inherit;
  9671. background-color:rgba(28, 33, 30, 1);
  9672. border-radius:0px;
  9673. filter:drop-shadow(none);
  9674. transition:none;
  9675. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9676. font-weight:500;
  9677. font-style:normal;
  9678. font-size:14px;
  9679. color:#FFFFFF;
  9680. }
  9681. #u4384 {
  9682. border-width:0px;
  9683. position:absolute;
  9684. left:861px;
  9685. top:824px;
  9686. width:57px;
  9687. height:20px;
  9688. display:flex;
  9689. transition:none;
  9690. transform-origin:50% 50%;
  9691. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9692. font-weight:500;
  9693. font-style:normal;
  9694. font-size:14px;
  9695. color:#FFFFFF;
  9696. }
  9697. #u4384 .text {
  9698. position:absolute;
  9699. align-self:flex-start;
  9700. padding:0px 0px 0px 0px;
  9701. box-sizing:border-box;
  9702. width:100%;
  9703. }
  9704. #u4384_text {
  9705. border-width:0px;
  9706. white-space:nowrap;
  9707. text-transform:none;
  9708. }
  9709. #u4385 {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:874px;
  9713. top:783px;
  9714. width:33px;
  9715. height:39px;
  9716. display:flex;
  9717. transition:none;
  9718. color:#FFFFFF;
  9719. }
  9720. #u4385 .text {
  9721. position:absolute;
  9722. align-self:center;
  9723. padding:2px 2px 2px 2px;
  9724. box-sizing:border-box;
  9725. width:100%;
  9726. }
  9727. #u4385_img {
  9728. border-width:0px;
  9729. position:absolute;
  9730. left:0px;
  9731. top:0px;
  9732. width:33px;
  9733. height:39px;
  9734. }
  9735. #u4385_text {
  9736. border-width:0px;
  9737. word-wrap:break-word;
  9738. text-transform:none;
  9739. }
  9740. #u4386 {
  9741. border-width:0px;
  9742. position:absolute;
  9743. left:0px;
  9744. top:0px;
  9745. width:0px;
  9746. height:0px;
  9747. }
  9748. #u4387_div {
  9749. border-width:0px;
  9750. position:absolute;
  9751. left:0px;
  9752. top:0px;
  9753. width:68px;
  9754. height:20px;
  9755. background:inherit;
  9756. background-color:rgba(28, 33, 30, 1);
  9757. border-radius:0px;
  9758. filter:drop-shadow(none);
  9759. transition:none;
  9760. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9761. font-weight:500;
  9762. font-style:normal;
  9763. font-size:14px;
  9764. color:#FFFFFF;
  9765. text-align:center;
  9766. }
  9767. #u4387 {
  9768. border-width:0px;
  9769. position:absolute;
  9770. left:936px;
  9771. top:824px;
  9772. width:68px;
  9773. height:20px;
  9774. display:flex;
  9775. transition:none;
  9776. transform-origin:50% 50%;
  9777. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9778. font-weight:500;
  9779. font-style:normal;
  9780. font-size:14px;
  9781. color:#FFFFFF;
  9782. text-align:center;
  9783. }
  9784. #u4387 .text {
  9785. position:absolute;
  9786. align-self:flex-start;
  9787. padding:0px 0px 0px 0px;
  9788. box-sizing:border-box;
  9789. width:100%;
  9790. }
  9791. #u4387_text {
  9792. border-width:0px;
  9793. word-wrap:break-word;
  9794. text-transform:none;
  9795. }
  9796. #u4388 {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:952px;
  9800. top:783px;
  9801. width:33px;
  9802. height:39px;
  9803. display:flex;
  9804. transition:none;
  9805. color:#FFFFFF;
  9806. }
  9807. #u4388 .text {
  9808. position:absolute;
  9809. align-self:center;
  9810. padding:2px 2px 2px 2px;
  9811. box-sizing:border-box;
  9812. width:100%;
  9813. }
  9814. #u4388_img {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:0px;
  9818. top:0px;
  9819. width:33px;
  9820. height:39px;
  9821. }
  9822. #u4388_text {
  9823. border-width:0px;
  9824. word-wrap:break-word;
  9825. text-transform:none;
  9826. }
  9827. #u4389 {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:0px;
  9831. top:0px;
  9832. width:0px;
  9833. height:0px;
  9834. }
  9835. #u4390_div {
  9836. border-width:0px;
  9837. position:absolute;
  9838. left:0px;
  9839. top:0px;
  9840. width:68px;
  9841. height:20px;
  9842. background:inherit;
  9843. background-color:rgba(28, 33, 30, 1);
  9844. border-radius:0px;
  9845. filter:drop-shadow(none);
  9846. transition:none;
  9847. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9848. font-weight:500;
  9849. font-style:normal;
  9850. font-size:14px;
  9851. color:#FFFFFF;
  9852. text-align:center;
  9853. }
  9854. #u4390 {
  9855. border-width:0px;
  9856. position:absolute;
  9857. left:1021px;
  9858. top:824px;
  9859. width:68px;
  9860. height:20px;
  9861. display:flex;
  9862. transition:none;
  9863. transform-origin:50% 50%;
  9864. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9865. font-weight:500;
  9866. font-style:normal;
  9867. font-size:14px;
  9868. color:#FFFFFF;
  9869. text-align:center;
  9870. }
  9871. #u4390 .text {
  9872. position:absolute;
  9873. align-self:flex-start;
  9874. padding:0px 0px 0px 0px;
  9875. box-sizing:border-box;
  9876. width:100%;
  9877. }
  9878. #u4390_text {
  9879. border-width:0px;
  9880. word-wrap:break-word;
  9881. text-transform:none;
  9882. }
  9883. #u4391 {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:1037px;
  9887. top:783px;
  9888. width:33px;
  9889. height:39px;
  9890. display:flex;
  9891. transition:none;
  9892. color:#FFFFFF;
  9893. }
  9894. #u4391 .text {
  9895. position:absolute;
  9896. align-self:center;
  9897. padding:2px 2px 2px 2px;
  9898. box-sizing:border-box;
  9899. width:100%;
  9900. }
  9901. #u4391_img {
  9902. border-width:0px;
  9903. position:absolute;
  9904. left:0px;
  9905. top:0px;
  9906. width:33px;
  9907. height:39px;
  9908. }
  9909. #u4391_text {
  9910. border-width:0px;
  9911. word-wrap:break-word;
  9912. text-transform:none;
  9913. }
  9914. #u4392 {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:0px;
  9918. top:0px;
  9919. width:0px;
  9920. height:0px;
  9921. }
  9922. #u4393_div {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:0px;
  9926. top:0px;
  9927. width:68px;
  9928. height:20px;
  9929. background:inherit;
  9930. background-color:rgba(28, 33, 30, 1);
  9931. border-radius:0px;
  9932. filter:drop-shadow(none);
  9933. transition:none;
  9934. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9935. font-weight:500;
  9936. font-style:normal;
  9937. font-size:14px;
  9938. color:#FFFFFF;
  9939. text-align:center;
  9940. }
  9941. #u4393 {
  9942. border-width:0px;
  9943. position:absolute;
  9944. left:1107px;
  9945. top:824px;
  9946. width:68px;
  9947. height:20px;
  9948. display:flex;
  9949. transition:none;
  9950. transform-origin:50% 50%;
  9951. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  9952. font-weight:500;
  9953. font-style:normal;
  9954. font-size:14px;
  9955. color:#FFFFFF;
  9956. text-align:center;
  9957. }
  9958. #u4393 .text {
  9959. position:absolute;
  9960. align-self:flex-start;
  9961. padding:0px 0px 0px 0px;
  9962. box-sizing:border-box;
  9963. width:100%;
  9964. }
  9965. #u4393_text {
  9966. border-width:0px;
  9967. word-wrap:break-word;
  9968. text-transform:none;
  9969. }
  9970. #u4394 {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:1123px;
  9974. top:783px;
  9975. width:33px;
  9976. height:39px;
  9977. display:flex;
  9978. transition:none;
  9979. color:#FFFFFF;
  9980. }
  9981. #u4394 .text {
  9982. position:absolute;
  9983. align-self:center;
  9984. padding:2px 2px 2px 2px;
  9985. box-sizing:border-box;
  9986. width:100%;
  9987. }
  9988. #u4394_img {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:0px;
  9992. top:0px;
  9993. width:33px;
  9994. height:39px;
  9995. }
  9996. #u4394_text {
  9997. border-width:0px;
  9998. word-wrap:break-word;
  9999. text-transform:none;
  10000. }