styles.css 158 KB

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