styles.css 131 KB

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