styles.css 166 KB

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