styles.css 232 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1510px;
  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. #u1680_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1510px;
  25. height:858px;
  26. }
  27. #u1680 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1510px;
  33. height:858px;
  34. display:flex;
  35. }
  36. #u1680 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u1680_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u1681_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:240px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(245, 154, 35, 0.2);
  58. box-sizing:border-box;
  59. border-width:2px;
  60. border-style:solid;
  61. border-color:rgba(245, 154, 35, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  72. font-weight:400;
  73. font-style:normal;
  74. font-size:18px;
  75. color:#FFFFFF;
  76. text-align:left;
  77. }
  78. #u1681 {
  79. border-width:0px;
  80. position:absolute;
  81. left:27px;
  82. top:107px;
  83. width:240px;
  84. height:40px;
  85. display:flex;
  86. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  87. font-weight:400;
  88. font-style:normal;
  89. font-size:18px;
  90. color:#FFFFFF;
  91. text-align:left;
  92. }
  93. #u1681 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 10px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u1681_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. }
  105. #u1682_div {
  106. border-width:0px;
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:240px;
  111. height:40px;
  112. background:inherit;
  113. background-color:rgba(245, 154, 35, 0.2);
  114. box-sizing:border-box;
  115. border-width:2px;
  116. border-style:solid;
  117. border-color:rgba(245, 154, 35, 1);
  118. border-left:0px;
  119. border-top:0px;
  120. border-right:0px;
  121. border-radius:0px;
  122. border-bottom-right-radius:0px;
  123. border-bottom-left-radius:0px;
  124. -moz-box-shadow:none;
  125. -webkit-box-shadow:none;
  126. box-shadow:none;
  127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  128. font-weight:400;
  129. font-style:normal;
  130. font-size:18px;
  131. color:#FFFFFF;
  132. text-align:left;
  133. }
  134. #u1682 {
  135. border-width:0px;
  136. position:absolute;
  137. left:1236px;
  138. top:107px;
  139. width:240px;
  140. height:40px;
  141. display:flex;
  142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  143. font-weight:400;
  144. font-style:normal;
  145. font-size:18px;
  146. color:#FFFFFF;
  147. text-align:left;
  148. }
  149. #u1682 .text {
  150. position:absolute;
  151. align-self:center;
  152. padding:2px 2px 2px 10px;
  153. box-sizing:border-box;
  154. width:100%;
  155. }
  156. #u1682_text {
  157. border-width:0px;
  158. word-wrap:break-word;
  159. text-transform:none;
  160. }
  161. #u1683_img {
  162. border-width:0px;
  163. position:absolute;
  164. left:0px;
  165. top:0px;
  166. width:96px;
  167. height:96px;
  168. }
  169. #u1683 {
  170. border-width:0px;
  171. position:absolute;
  172. left:41px;
  173. top:157px;
  174. width:96px;
  175. height:96px;
  176. display:flex;
  177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  178. font-style:normal;
  179. color:#FFFFFF;
  180. }
  181. #u1683 .text {
  182. position:absolute;
  183. align-self:center;
  184. padding:2px 2px 2px 2px;
  185. box-sizing:border-box;
  186. width:100%;
  187. }
  188. #u1683_text {
  189. border-width:0px;
  190. word-wrap:break-word;
  191. text-transform:none;
  192. }
  193. #u1684_div {
  194. border-width:0px;
  195. position:absolute;
  196. left:0px;
  197. top:0px;
  198. width:70px;
  199. height:94px;
  200. background:inherit;
  201. background-color:rgba(255, 255, 255, 0);
  202. border:none;
  203. border-radius:0px;
  204. -moz-box-shadow:none;
  205. -webkit-box-shadow:none;
  206. box-shadow:none;
  207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  208. font-weight:400;
  209. font-style:normal;
  210. font-size:12px;
  211. color:rgba(255, 255, 255, 0.698039215686274);
  212. text-align:left;
  213. line-height:30px;
  214. }
  215. #u1684 {
  216. border-width:0px;
  217. position:absolute;
  218. left:157px;
  219. top:157px;
  220. width:70px;
  221. height:94px;
  222. display:flex;
  223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  224. font-weight:400;
  225. font-style:normal;
  226. font-size:12px;
  227. color:rgba(255, 255, 255, 0.698039215686274);
  228. text-align:left;
  229. line-height:30px;
  230. }
  231. #u1684 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:2px 2px 2px 2px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u1684_text {
  239. border-width:0px;
  240. white-space:nowrap;
  241. text-transform:none;
  242. }
  243. #u1685_div {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:98px;
  249. height:34px;
  250. background:inherit;
  251. background-color:rgba(255, 255, 255, 0);
  252. border:none;
  253. border-radius:0px;
  254. -moz-box-shadow:none;
  255. -webkit-box-shadow:none;
  256. box-shadow:none;
  257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  258. font-weight:400;
  259. font-style:normal;
  260. font-size:12px;
  261. color:rgba(255, 255, 255, 0.698039215686274);
  262. text-align:left;
  263. line-height:30px;
  264. }
  265. #u1685 {
  266. border-width:0px;
  267. position:absolute;
  268. left:9px;
  269. top:262px;
  270. width:98px;
  271. height:34px;
  272. display:flex;
  273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  274. font-weight:400;
  275. font-style:normal;
  276. font-size:12px;
  277. color:rgba(255, 255, 255, 0.698039215686274);
  278. text-align:left;
  279. line-height:30px;
  280. }
  281. #u1685 .text {
  282. position:absolute;
  283. align-self:center;
  284. padding:2px 2px 2px 2px;
  285. box-sizing:border-box;
  286. width:100%;
  287. }
  288. #u1685_text {
  289. border-width:0px;
  290. white-space:nowrap;
  291. text-transform:none;
  292. }
  293. #u1686_div {
  294. border-width:0px;
  295. position:absolute;
  296. left:0px;
  297. top:0px;
  298. width:98px;
  299. height:34px;
  300. background:inherit;
  301. background-color:rgba(255, 255, 255, 0);
  302. border:none;
  303. border-radius:0px;
  304. -moz-box-shadow:none;
  305. -webkit-box-shadow:none;
  306. box-shadow:none;
  307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  308. font-weight:400;
  309. font-style:normal;
  310. font-size:12px;
  311. color:rgba(255, 255, 255, 0.698039215686274);
  312. text-align:left;
  313. line-height:30px;
  314. }
  315. #u1686 {
  316. border-width:0px;
  317. position:absolute;
  318. left:124px;
  319. top:262px;
  320. width:98px;
  321. height:34px;
  322. display:flex;
  323. opacity:0.9;
  324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  325. font-weight:400;
  326. font-style:normal;
  327. font-size:12px;
  328. color:rgba(255, 255, 255, 0.698039215686274);
  329. text-align:left;
  330. line-height:30px;
  331. }
  332. #u1686 .text {
  333. position:absolute;
  334. align-self:center;
  335. padding:2px 2px 2px 2px;
  336. box-sizing:border-box;
  337. width:100%;
  338. }
  339. #u1686_text {
  340. border-width:0px;
  341. white-space:nowrap;
  342. text-transform:none;
  343. }
  344. #u1687_div {
  345. border-width:0px;
  346. position:absolute;
  347. left:0px;
  348. top:0px;
  349. width:240px;
  350. height:40px;
  351. background:inherit;
  352. background-color:rgba(245, 154, 35, 0.2);
  353. box-sizing:border-box;
  354. border-width:2px;
  355. border-style:solid;
  356. border-color:rgba(245, 154, 35, 1);
  357. border-left:0px;
  358. border-top:0px;
  359. border-right:0px;
  360. border-radius:0px;
  361. border-bottom-right-radius:0px;
  362. border-bottom-left-radius:0px;
  363. -moz-box-shadow:none;
  364. -webkit-box-shadow:none;
  365. box-shadow:none;
  366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  367. font-weight:400;
  368. font-style:normal;
  369. font-size:18px;
  370. color:#FFFFFF;
  371. text-align:left;
  372. }
  373. #u1687 {
  374. border-width:0px;
  375. position:absolute;
  376. left:27px;
  377. top:311px;
  378. width:240px;
  379. height:40px;
  380. display:flex;
  381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  382. font-weight:400;
  383. font-style:normal;
  384. font-size:18px;
  385. color:#FFFFFF;
  386. text-align:left;
  387. }
  388. #u1687 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 10px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u1687_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. }
  400. #u1688_div {
  401. border-width:0px;
  402. position:absolute;
  403. left:0px;
  404. top:0px;
  405. width:29px;
  406. height:124px;
  407. background:inherit;
  408. background-color:rgba(255, 255, 255, 0);
  409. border:none;
  410. border-radius:0px;
  411. -moz-box-shadow:none;
  412. -webkit-box-shadow:none;
  413. box-shadow:none;
  414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  415. font-weight:400;
  416. font-style:normal;
  417. font-size:12px;
  418. color:rgba(255, 255, 255, 0.698039215686274);
  419. text-align:left;
  420. line-height:30px;
  421. }
  422. #u1688 {
  423. border-width:0px;
  424. position:absolute;
  425. left:37px;
  426. top:429px;
  427. width:29px;
  428. height:124px;
  429. display:flex;
  430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  431. font-weight:400;
  432. font-style:normal;
  433. font-size:12px;
  434. color:rgba(255, 255, 255, 0.698039215686274);
  435. text-align:left;
  436. line-height:30px;
  437. }
  438. #u1688 .text {
  439. position:absolute;
  440. align-self:center;
  441. padding:2px 2px 2px 2px;
  442. box-sizing:border-box;
  443. width:100%;
  444. }
  445. #u1688_text {
  446. border-width:0px;
  447. white-space:nowrap;
  448. text-transform:none;
  449. }
  450. #u1689 {
  451. border-width:0px;
  452. position:absolute;
  453. left:0px;
  454. top:0px;
  455. width:0px;
  456. height:0px;
  457. }
  458. #u1690_img {
  459. border-width:0px;
  460. position:absolute;
  461. left:0px;
  462. top:0px;
  463. width:114px;
  464. height:80px;
  465. }
  466. #u1690 {
  467. border-width:0px;
  468. position:absolute;
  469. left:1207px;
  470. top:-325px;
  471. width:114px;
  472. height:80px;
  473. display:flex;
  474. }
  475. #u1690 .text {
  476. position:absolute;
  477. align-self:center;
  478. padding:2px 2px 2px 2px;
  479. box-sizing:border-box;
  480. width:100%;
  481. }
  482. #u1690_text {
  483. border-width:0px;
  484. word-wrap:break-word;
  485. text-transform:none;
  486. visibility:hidden;
  487. }
  488. #u1691_img {
  489. border-width:0px;
  490. position:absolute;
  491. left:0px;
  492. top:0px;
  493. width:114px;
  494. height:80px;
  495. }
  496. #u1691 {
  497. border-width:0px;
  498. position:absolute;
  499. left:1327px;
  500. top:-325px;
  501. width:114px;
  502. height:80px;
  503. display:flex;
  504. }
  505. #u1691 .text {
  506. position:absolute;
  507. align-self:center;
  508. padding:2px 2px 2px 2px;
  509. box-sizing:border-box;
  510. width:100%;
  511. }
  512. #u1691_text {
  513. border-width:0px;
  514. word-wrap:break-word;
  515. text-transform:none;
  516. visibility:hidden;
  517. }
  518. #u1692_img {
  519. border-width:0px;
  520. position:absolute;
  521. left:0px;
  522. top:0px;
  523. width:114px;
  524. height:80px;
  525. }
  526. #u1692 {
  527. border-width:0px;
  528. position:absolute;
  529. left:1207px;
  530. top:-240px;
  531. width:114px;
  532. height:80px;
  533. display:flex;
  534. }
  535. #u1692 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u1692_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. visibility:hidden;
  547. }
  548. #u1693_img {
  549. border-width:0px;
  550. position:absolute;
  551. left:0px;
  552. top:0px;
  553. width:114px;
  554. height:80px;
  555. }
  556. #u1693 {
  557. border-width:0px;
  558. position:absolute;
  559. left:1327px;
  560. top:-240px;
  561. width:114px;
  562. height:80px;
  563. display:flex;
  564. }
  565. #u1693 .text {
  566. position:absolute;
  567. align-self:center;
  568. padding:2px 2px 2px 2px;
  569. box-sizing:border-box;
  570. width:100%;
  571. }
  572. #u1693_text {
  573. border-width:0px;
  574. word-wrap:break-word;
  575. text-transform:none;
  576. visibility:hidden;
  577. }
  578. #u1694_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:19px;
  584. height:13px;
  585. background:inherit;
  586. background-color:rgba(217, 0, 27, 1);
  587. border:none;
  588. border-radius:4px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  593. font-weight:400;
  594. font-style:normal;
  595. font-size:7px;
  596. color:#FFFFFF;
  597. }
  598. #u1694 {
  599. border-width:0px;
  600. position:absolute;
  601. left:1302px;
  602. top:-325px;
  603. width:19px;
  604. height:13px;
  605. display:flex;
  606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  607. font-weight:400;
  608. font-style:normal;
  609. font-size:7px;
  610. color:#FFFFFF;
  611. }
  612. #u1694 .text {
  613. position:absolute;
  614. align-self:center;
  615. padding:2px 2px 2px 2px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u1694_text {
  620. border-width:0px;
  621. white-space:nowrap;
  622. text-transform:none;
  623. }
  624. #u1695_div {
  625. border-width:0px;
  626. position:absolute;
  627. left:0px;
  628. top:0px;
  629. width:240px;
  630. height:40px;
  631. background:inherit;
  632. background-color:rgba(245, 154, 35, 0.2);
  633. box-sizing:border-box;
  634. border-width:2px;
  635. border-style:solid;
  636. border-color:rgba(245, 154, 35, 1);
  637. border-left:0px;
  638. border-top:0px;
  639. border-right:0px;
  640. border-radius:0px;
  641. border-bottom-right-radius:0px;
  642. border-bottom-left-radius:0px;
  643. -moz-box-shadow:none;
  644. -webkit-box-shadow:none;
  645. box-shadow:none;
  646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  647. font-weight:400;
  648. font-style:normal;
  649. font-size:18px;
  650. color:#FFFFFF;
  651. text-align:left;
  652. }
  653. #u1695 {
  654. border-width:0px;
  655. position:absolute;
  656. left:1236px;
  657. top:492px;
  658. width:240px;
  659. height:40px;
  660. display:flex;
  661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  662. font-weight:400;
  663. font-style:normal;
  664. font-size:18px;
  665. color:#FFFFFF;
  666. text-align:left;
  667. }
  668. #u1695 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 10px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u1695_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. }
  680. #u1696_div {
  681. border-width:0px;
  682. position:absolute;
  683. left:0px;
  684. top:0px;
  685. width:29px;
  686. height:34px;
  687. background:inherit;
  688. background-color:rgba(255, 255, 255, 0);
  689. border:none;
  690. border-radius:0px;
  691. -moz-box-shadow:none;
  692. -webkit-box-shadow:none;
  693. box-shadow:none;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. font-size:12px;
  698. color:rgba(255, 255, 255, 0.698039215686274);
  699. text-align:left;
  700. line-height:30px;
  701. }
  702. #u1696 {
  703. border-width:0px;
  704. position:absolute;
  705. left:1437px;
  706. top:495px;
  707. width:29px;
  708. height:34px;
  709. display:flex;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:12px;
  714. color:rgba(255, 255, 255, 0.698039215686274);
  715. text-align:left;
  716. line-height:30px;
  717. }
  718. #u1696 .text {
  719. position:absolute;
  720. align-self:center;
  721. padding:2px 2px 2px 2px;
  722. box-sizing:border-box;
  723. width:100%;
  724. }
  725. #u1696_text {
  726. border-width:0px;
  727. white-space:nowrap;
  728. text-transform:none;
  729. }
  730. #u1697_div {
  731. border-width:0px;
  732. position:absolute;
  733. left:0px;
  734. top:0px;
  735. width:83px;
  736. height:24px;
  737. background:inherit;
  738. background-color:rgba(245, 154, 35, 0);
  739. border:none;
  740. border-left:0px;
  741. border-top:0px;
  742. border-right:0px;
  743. border-radius:0px;
  744. border-bottom-right-radius:0px;
  745. border-bottom-left-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:14px;
  753. color:#FFFFFF;
  754. text-align:left;
  755. }
  756. #u1697 {
  757. border-width:0px;
  758. position:absolute;
  759. left:64px;
  760. top:367px;
  761. width:83px;
  762. height:24px;
  763. display:flex;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:14px;
  768. color:#FFFFFF;
  769. text-align:left;
  770. }
  771. #u1697 .text {
  772. position:absolute;
  773. align-self:center;
  774. padding:2px 2px 2px 10px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u1697_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u1698_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:67px;
  789. height:29px;
  790. background:inherit;
  791. background-color:rgba(245, 154, 35, 0);
  792. border:none;
  793. border-left:0px;
  794. border-top:0px;
  795. border-right:0px;
  796. border-radius:0px;
  797. border-bottom-right-radius:0px;
  798. border-bottom-left-radius:0px;
  799. -moz-box-shadow:none;
  800. -webkit-box-shadow:none;
  801. box-shadow:none;
  802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  803. font-weight:500;
  804. font-style:normal;
  805. font-size:18px;
  806. color:#FFFFFF;
  807. text-align:left;
  808. }
  809. #u1698 {
  810. border-width:0px;
  811. position:absolute;
  812. left:147px;
  813. top:364px;
  814. width:67px;
  815. height:29px;
  816. display:flex;
  817. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  818. font-weight:500;
  819. font-style:normal;
  820. font-size:18px;
  821. color:#FFFFFF;
  822. text-align:left;
  823. }
  824. #u1698 .text {
  825. position:absolute;
  826. align-self:center;
  827. padding:2px 2px 2px 10px;
  828. box-sizing:border-box;
  829. width:100%;
  830. }
  831. #u1698_text {
  832. border-width:0px;
  833. white-space:nowrap;
  834. text-transform:none;
  835. }
  836. #u1699_div {
  837. border-width:0px;
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:27px;
  842. height:124px;
  843. background:inherit;
  844. background-color:rgba(255, 255, 255, 0);
  845. border:none;
  846. border-radius:0px;
  847. -moz-box-shadow:none;
  848. -webkit-box-shadow:none;
  849. box-shadow:none;
  850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  851. font-weight:400;
  852. font-style:normal;
  853. font-size:12px;
  854. color:rgba(255, 255, 255, 0.698039215686274);
  855. text-align:left;
  856. line-height:30px;
  857. }
  858. #u1699 {
  859. border-width:0px;
  860. position:absolute;
  861. left:192px;
  862. top:429px;
  863. width:27px;
  864. height:124px;
  865. display:flex;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:12px;
  870. color:rgba(255, 255, 255, 0.698039215686274);
  871. text-align:left;
  872. line-height:30px;
  873. }
  874. #u1699 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u1699_text {
  882. border-width:0px;
  883. white-space:nowrap;
  884. text-transform:none;
  885. }
  886. #u1700_div {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:31px;
  892. height:124px;
  893. background:inherit;
  894. background-color:rgba(255, 255, 255, 0);
  895. border:none;
  896. border-radius:0px;
  897. -moz-box-shadow:none;
  898. -webkit-box-shadow:none;
  899. box-shadow:none;
  900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:12px;
  904. color:rgba(255, 255, 255, 0.698039215686274);
  905. text-align:left;
  906. line-height:30px;
  907. }
  908. #u1700 {
  909. border-width:0px;
  910. position:absolute;
  911. left:238px;
  912. top:429px;
  913. width:31px;
  914. height:124px;
  915. display:flex;
  916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  917. font-weight:400;
  918. font-style:normal;
  919. font-size:12px;
  920. color:rgba(255, 255, 255, 0.698039215686274);
  921. text-align:left;
  922. line-height:30px;
  923. }
  924. #u1700 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u1700_text {
  932. border-width:0px;
  933. white-space:nowrap;
  934. text-transform:none;
  935. }
  936. #u1701_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:65px;
  942. height:30px;
  943. background:inherit;
  944. background-color:rgba(245, 154, 35, 0);
  945. box-sizing:border-box;
  946. border-width:2px;
  947. border-style:solid;
  948. border-color:rgba(245, 154, 35, 1);
  949. border-left:0px;
  950. border-top:0px;
  951. border-right:0px;
  952. border-radius:0px;
  953. border-bottom-right-radius:0px;
  954. border-bottom-left-radius:0px;
  955. -moz-box-shadow:none;
  956. -webkit-box-shadow:none;
  957. box-shadow:none;
  958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  959. font-weight:400;
  960. font-style:normal;
  961. font-size:12px;
  962. color:#FFFFFF;
  963. text-align:left;
  964. }
  965. #u1701 {
  966. border-width:0px;
  967. position:absolute;
  968. left:37px;
  969. top:399px;
  970. width:65px;
  971. height:30px;
  972. display:flex;
  973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:12px;
  977. color:#FFFFFF;
  978. text-align:left;
  979. }
  980. #u1701 .text {
  981. position:absolute;
  982. align-self:center;
  983. padding:2px 2px 2px 2px;
  984. box-sizing:border-box;
  985. width:100%;
  986. }
  987. #u1701_text {
  988. border-width:0px;
  989. white-space:nowrap;
  990. text-transform:none;
  991. }
  992. #u1702_div {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:53px;
  998. height:30px;
  999. background:inherit;
  1000. background-color:rgba(245, 154, 35, 0);
  1001. border:none;
  1002. border-left:0px;
  1003. border-top:0px;
  1004. border-right:0px;
  1005. border-radius:0px;
  1006. border-bottom-right-radius:0px;
  1007. border-bottom-left-radius:0px;
  1008. -moz-box-shadow:none;
  1009. -webkit-box-shadow:none;
  1010. box-shadow:none;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:12px;
  1015. color:#FFFFFF;
  1016. text-align:left;
  1017. }
  1018. #u1702 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:122px;
  1022. top:399px;
  1023. width:53px;
  1024. height:30px;
  1025. display:flex;
  1026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1027. font-weight:400;
  1028. font-style:normal;
  1029. font-size:12px;
  1030. color:#FFFFFF;
  1031. text-align:left;
  1032. }
  1033. #u1702 .text {
  1034. position:absolute;
  1035. align-self:center;
  1036. padding:2px 2px 2px 2px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u1702_text {
  1041. border-width:0px;
  1042. white-space:nowrap;
  1043. text-transform:none;
  1044. }
  1045. #u1703_div {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:0px;
  1049. top:0px;
  1050. width:240px;
  1051. height:40px;
  1052. background:inherit;
  1053. background-color:rgba(245, 154, 35, 0.2);
  1054. box-sizing:border-box;
  1055. border-width:2px;
  1056. border-style:solid;
  1057. border-color:rgba(245, 154, 35, 1);
  1058. border-left:0px;
  1059. border-top:0px;
  1060. border-right:0px;
  1061. border-radius:0px;
  1062. border-bottom-right-radius:0px;
  1063. border-bottom-left-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:18px;
  1071. color:#FFFFFF;
  1072. text-align:left;
  1073. }
  1074. #u1703 {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:27px;
  1078. top:565px;
  1079. width:240px;
  1080. height:40px;
  1081. display:flex;
  1082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1083. font-weight:400;
  1084. font-style:normal;
  1085. font-size:18px;
  1086. color:#FFFFFF;
  1087. text-align:left;
  1088. }
  1089. #u1703 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 10px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u1703_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. }
  1101. #u1704 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:0px;
  1107. height:0px;
  1108. }
  1109. #u1705_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:14px;
  1115. height:11px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border:none;
  1119. border-radius:0px;
  1120. -moz-box-shadow:none;
  1121. -webkit-box-shadow:none;
  1122. box-shadow:none;
  1123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1124. font-weight:400;
  1125. font-style:normal;
  1126. font-size:8px;
  1127. color:rgba(255, 255, 255, 0.435294117647059);
  1128. }
  1129. #u1705 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:27px;
  1133. top:753px;
  1134. width:14px;
  1135. height:11px;
  1136. display:flex;
  1137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. font-size:8px;
  1141. color:rgba(255, 255, 255, 0.435294117647059);
  1142. }
  1143. #u1705 .text {
  1144. position:absolute;
  1145. align-self:flex-start;
  1146. padding:0px 0px 0px 0px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u1705_text {
  1151. border-width:0px;
  1152. white-space:nowrap;
  1153. text-transform:none;
  1154. }
  1155. #u1706_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:14px;
  1161. height:11px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 0);
  1164. border:none;
  1165. border-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1170. font-weight:400;
  1171. font-style:normal;
  1172. font-size:8px;
  1173. color:rgba(255, 255, 255, 0.435294117647059);
  1174. }
  1175. #u1706 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:45px;
  1179. top:753px;
  1180. width:14px;
  1181. height:11px;
  1182. display:flex;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:8px;
  1187. color:rgba(255, 255, 255, 0.435294117647059);
  1188. }
  1189. #u1706 .text {
  1190. position:absolute;
  1191. align-self:flex-start;
  1192. padding:0px 0px 0px 0px;
  1193. box-sizing:border-box;
  1194. width:100%;
  1195. }
  1196. #u1706_text {
  1197. border-width:0px;
  1198. white-space:nowrap;
  1199. text-transform:none;
  1200. }
  1201. #u1707_div {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:0px;
  1205. top:0px;
  1206. width:14px;
  1207. height:11px;
  1208. background:inherit;
  1209. background-color:rgba(255, 255, 255, 0);
  1210. border:none;
  1211. border-radius:0px;
  1212. -moz-box-shadow:none;
  1213. -webkit-box-shadow:none;
  1214. box-shadow:none;
  1215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1216. font-weight:400;
  1217. font-style:normal;
  1218. font-size:8px;
  1219. color:rgba(255, 255, 255, 0.435294117647059);
  1220. }
  1221. #u1707 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:64px;
  1225. top:753px;
  1226. width:14px;
  1227. height:11px;
  1228. display:flex;
  1229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1230. font-weight:400;
  1231. font-style:normal;
  1232. font-size:8px;
  1233. color:rgba(255, 255, 255, 0.435294117647059);
  1234. }
  1235. #u1707 .text {
  1236. position:absolute;
  1237. align-self:flex-start;
  1238. padding:0px 0px 0px 0px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u1707_text {
  1243. border-width:0px;
  1244. white-space:nowrap;
  1245. text-transform:none;
  1246. }
  1247. #u1708_div {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:14px;
  1253. height:11px;
  1254. background:inherit;
  1255. background-color:rgba(255, 255, 255, 0);
  1256. border:none;
  1257. border-radius:0px;
  1258. -moz-box-shadow:none;
  1259. -webkit-box-shadow:none;
  1260. box-shadow:none;
  1261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1262. font-weight:400;
  1263. font-style:normal;
  1264. font-size:8px;
  1265. color:rgba(255, 255, 255, 0.435294117647059);
  1266. }
  1267. #u1708 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:82px;
  1271. top:753px;
  1272. width:14px;
  1273. height:11px;
  1274. display:flex;
  1275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1276. font-weight:400;
  1277. font-style:normal;
  1278. font-size:8px;
  1279. color:rgba(255, 255, 255, 0.435294117647059);
  1280. }
  1281. #u1708 .text {
  1282. position:absolute;
  1283. align-self:flex-start;
  1284. padding:0px 0px 0px 0px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u1708_text {
  1289. border-width:0px;
  1290. white-space:nowrap;
  1291. text-transform:none;
  1292. }
  1293. #u1709_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:14px;
  1299. height:11px;
  1300. background:inherit;
  1301. background-color:rgba(255, 255, 255, 0);
  1302. border:none;
  1303. border-radius:0px;
  1304. -moz-box-shadow:none;
  1305. -webkit-box-shadow:none;
  1306. box-shadow:none;
  1307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:8px;
  1311. color:rgba(255, 255, 255, 0.435294117647059);
  1312. }
  1313. #u1709 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:100px;
  1317. top:753px;
  1318. width:14px;
  1319. height:11px;
  1320. display:flex;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:8px;
  1325. color:rgba(255, 255, 255, 0.435294117647059);
  1326. }
  1327. #u1709 .text {
  1328. position:absolute;
  1329. align-self:flex-start;
  1330. padding:0px 0px 0px 0px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u1709_text {
  1335. border-width:0px;
  1336. white-space:nowrap;
  1337. text-transform:none;
  1338. }
  1339. #u1710_div {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:17px;
  1345. height:11px;
  1346. background:inherit;
  1347. background-color:rgba(255, 255, 255, 0);
  1348. border:none;
  1349. border-radius:0px;
  1350. -moz-box-shadow:none;
  1351. -webkit-box-shadow:none;
  1352. box-shadow:none;
  1353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1354. font-weight:400;
  1355. font-style:normal;
  1356. font-size:8px;
  1357. color:rgba(255, 255, 255, 0.435294117647059);
  1358. }
  1359. #u1710 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:119px;
  1363. top:753px;
  1364. width:17px;
  1365. height:11px;
  1366. display:flex;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:8px;
  1371. color:rgba(255, 255, 255, 0.435294117647059);
  1372. }
  1373. #u1710 .text {
  1374. position:absolute;
  1375. align-self:flex-start;
  1376. padding:0px 0px 0px 0px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u1710_text {
  1381. border-width:0px;
  1382. white-space:nowrap;
  1383. text-transform:none;
  1384. }
  1385. #u1711_div {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:17px;
  1391. height:11px;
  1392. background:inherit;
  1393. background-color:rgba(255, 255, 255, 0);
  1394. border:none;
  1395. border-radius:0px;
  1396. -moz-box-shadow:none;
  1397. -webkit-box-shadow:none;
  1398. box-shadow:none;
  1399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1400. font-weight:400;
  1401. font-style:normal;
  1402. font-size:8px;
  1403. color:rgba(255, 255, 255, 0.435294117647059);
  1404. }
  1405. #u1711 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:140px;
  1409. top:753px;
  1410. width:17px;
  1411. height:11px;
  1412. display:flex;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:8px;
  1417. color:rgba(255, 255, 255, 0.435294117647059);
  1418. }
  1419. #u1711 .text {
  1420. position:absolute;
  1421. align-self:flex-start;
  1422. padding:0px 0px 0px 0px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u1711_text {
  1427. border-width:0px;
  1428. white-space:nowrap;
  1429. text-transform:none;
  1430. }
  1431. #u1712_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:17px;
  1437. height:11px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 255, 0);
  1440. border:none;
  1441. border-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:8px;
  1449. color:rgba(255, 255, 255, 0.435294117647059);
  1450. }
  1451. #u1712 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:162px;
  1455. top:753px;
  1456. width:17px;
  1457. height:11px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:8px;
  1463. color:rgba(255, 255, 255, 0.435294117647059);
  1464. }
  1465. #u1712 .text {
  1466. position:absolute;
  1467. align-self:flex-start;
  1468. padding:0px 0px 0px 0px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u1712_text {
  1473. border-width:0px;
  1474. white-space:nowrap;
  1475. text-transform:none;
  1476. }
  1477. #u1713_div {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:17px;
  1483. height:11px;
  1484. background:inherit;
  1485. background-color:rgba(255, 255, 255, 0);
  1486. border:none;
  1487. border-radius:0px;
  1488. -moz-box-shadow:none;
  1489. -webkit-box-shadow:none;
  1490. box-shadow:none;
  1491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1492. font-weight:400;
  1493. font-style:normal;
  1494. font-size:8px;
  1495. color:rgba(255, 255, 255, 0.435294117647059);
  1496. }
  1497. #u1713 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:183px;
  1501. top:753px;
  1502. width:17px;
  1503. height:11px;
  1504. display:flex;
  1505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1506. font-weight:400;
  1507. font-style:normal;
  1508. font-size:8px;
  1509. color:rgba(255, 255, 255, 0.435294117647059);
  1510. }
  1511. #u1713 .text {
  1512. position:absolute;
  1513. align-self:flex-start;
  1514. padding:0px 0px 0px 0px;
  1515. box-sizing:border-box;
  1516. width:100%;
  1517. }
  1518. #u1713_text {
  1519. border-width:0px;
  1520. white-space:nowrap;
  1521. text-transform:none;
  1522. }
  1523. #u1714_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:17px;
  1529. height:11px;
  1530. background:inherit;
  1531. background-color:rgba(255, 255, 255, 0);
  1532. border:none;
  1533. border-radius:0px;
  1534. -moz-box-shadow:none;
  1535. -webkit-box-shadow:none;
  1536. box-shadow:none;
  1537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1538. font-weight:400;
  1539. font-style:normal;
  1540. font-size:8px;
  1541. color:rgba(255, 255, 255, 0.435294117647059);
  1542. }
  1543. #u1714 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:204px;
  1547. top:753px;
  1548. width:17px;
  1549. height:11px;
  1550. display:flex;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:8px;
  1555. color:rgba(255, 255, 255, 0.435294117647059);
  1556. }
  1557. #u1714 .text {
  1558. position:absolute;
  1559. align-self:flex-start;
  1560. padding:0px 0px 0px 0px;
  1561. box-sizing:border-box;
  1562. width:100%;
  1563. }
  1564. #u1714_text {
  1565. border-width:0px;
  1566. white-space:nowrap;
  1567. text-transform:none;
  1568. }
  1569. #u1715_div {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:19px;
  1575. height:11px;
  1576. background:inherit;
  1577. background-color:rgba(255, 255, 255, 0);
  1578. border:none;
  1579. border-radius:0px;
  1580. -moz-box-shadow:none;
  1581. -webkit-box-shadow:none;
  1582. box-shadow:none;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. font-size:8px;
  1587. color:rgba(255, 255, 255, 0.435294117647059);
  1588. }
  1589. #u1715 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:226px;
  1593. top:753px;
  1594. width:19px;
  1595. height:11px;
  1596. display:flex;
  1597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1598. font-weight:400;
  1599. font-style:normal;
  1600. font-size:8px;
  1601. color:rgba(255, 255, 255, 0.435294117647059);
  1602. }
  1603. #u1715 .text {
  1604. position:absolute;
  1605. align-self:flex-start;
  1606. padding:0px 0px 0px 0px;
  1607. box-sizing:border-box;
  1608. width:100%;
  1609. }
  1610. #u1715_text {
  1611. border-width:0px;
  1612. white-space:nowrap;
  1613. text-transform:none;
  1614. }
  1615. #u1716_div {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:19px;
  1621. height:11px;
  1622. background:inherit;
  1623. background-color:rgba(255, 255, 255, 0);
  1624. border:none;
  1625. border-radius:0px;
  1626. -moz-box-shadow:none;
  1627. -webkit-box-shadow:none;
  1628. box-shadow:none;
  1629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1630. font-weight:400;
  1631. font-style:normal;
  1632. font-size:8px;
  1633. color:rgba(255, 255, 255, 0.435294117647059);
  1634. }
  1635. #u1716 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:249px;
  1639. top:753px;
  1640. width:19px;
  1641. height:11px;
  1642. display:flex;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:8px;
  1647. color:rgba(255, 255, 255, 0.435294117647059);
  1648. }
  1649. #u1716 .text {
  1650. position:absolute;
  1651. align-self:flex-start;
  1652. padding:0px 0px 0px 0px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u1716_text {
  1657. border-width:0px;
  1658. white-space:nowrap;
  1659. text-transform:none;
  1660. }
  1661. #u1717 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:0px;
  1667. height:0px;
  1668. }
  1669. #u1718_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:240px;
  1675. height:85px;
  1676. }
  1677. #u1718 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:28px;
  1681. top:642px;
  1682. width:239px;
  1683. height:84px;
  1684. display:flex;
  1685. color:rgba(255, 255, 255, 0.435294117647059);
  1686. }
  1687. #u1718 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 2px 2px 2px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u1718_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. visibility:hidden;
  1699. }
  1700. #u1719_img {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:239px;
  1706. height:92px;
  1707. }
  1708. #u1719 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:27px;
  1712. top:657px;
  1713. width:238px;
  1714. height:91px;
  1715. display:flex;
  1716. color:rgba(255, 255, 255, 0.435294117647059);
  1717. }
  1718. #u1719 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:2px 2px 2px 2px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u1719_text {
  1726. border-width:0px;
  1727. word-wrap:break-word;
  1728. text-transform:none;
  1729. visibility:hidden;
  1730. }
  1731. #u1720_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:240px;
  1737. height:4px;
  1738. }
  1739. #u1720 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:27px;
  1743. top:747px;
  1744. width:239px;
  1745. height:3px;
  1746. display:flex;
  1747. }
  1748. #u1720 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u1720_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u1721 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:0px;
  1767. height:0px;
  1768. }
  1769. #u1722 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:0px;
  1775. height:0px;
  1776. }
  1777. #u1723_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:11px;
  1783. height:2px;
  1784. }
  1785. #u1723 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:181px;
  1789. top:624px;
  1790. width:10px;
  1791. height:1px;
  1792. display:flex;
  1793. }
  1794. #u1723 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 2px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u1723_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. visibility:hidden;
  1806. }
  1807. #u1724_div {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:15px;
  1813. height:18px;
  1814. background:inherit;
  1815. background-color:rgba(255, 255, 255, 0);
  1816. border:none;
  1817. border-radius:0px;
  1818. -moz-box-shadow:none;
  1819. -webkit-box-shadow:none;
  1820. box-shadow:none;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:10px;
  1825. color:#FFFFFF;
  1826. text-align:left;
  1827. }
  1828. #u1724 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:194px;
  1832. top:615px;
  1833. width:15px;
  1834. height:18px;
  1835. display:flex;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:10px;
  1840. color:#FFFFFF;
  1841. text-align:left;
  1842. }
  1843. #u1724 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u1724_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u1725 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:0px;
  1861. height:0px;
  1862. }
  1863. #u1726_img {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:11px;
  1869. height:2px;
  1870. }
  1871. #u1726 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:239px;
  1875. top:624px;
  1876. width:10px;
  1877. height:1px;
  1878. display:flex;
  1879. }
  1880. #u1726 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u1726_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u1727_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:15px;
  1899. height:18px;
  1900. background:inherit;
  1901. background-color:rgba(255, 255, 255, 0);
  1902. border:none;
  1903. border-radius:0px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:10px;
  1911. color:#FFFFFF;
  1912. text-align:left;
  1913. }
  1914. #u1727 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:252px;
  1918. top:615px;
  1919. width:15px;
  1920. height:18px;
  1921. display:flex;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:10px;
  1926. color:#FFFFFF;
  1927. text-align:left;
  1928. }
  1929. #u1727 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 2px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u1727_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u1728 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:0px;
  1947. height:0px;
  1948. }
  1949. #u1729_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:41px;
  1955. height:21px;
  1956. background:inherit;
  1957. background-color:rgba(245, 154, 35, 0);
  1958. border:none;
  1959. border-left:0px;
  1960. border-top:0px;
  1961. border-right:0px;
  1962. border-radius:0px;
  1963. border-bottom-right-radius:0px;
  1964. border-bottom-left-radius:0px;
  1965. -moz-box-shadow:none;
  1966. -webkit-box-shadow:none;
  1967. box-shadow:none;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. color:#FFFFFF;
  1973. }
  1974. #u1729 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:1249px;
  1978. top:186px;
  1979. width:41px;
  1980. height:21px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. color:#FFFFFF;
  1987. }
  1988. #u1729 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u1729_text {
  1996. border-width:0px;
  1997. white-space:nowrap;
  1998. text-transform:none;
  1999. }
  2000. #u1730_div {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:34px;
  2006. height:29px;
  2007. background:inherit;
  2008. background-color:rgba(245, 154, 35, 0);
  2009. border:none;
  2010. border-left:0px;
  2011. border-top:0px;
  2012. border-right:0px;
  2013. border-radius:0px;
  2014. border-bottom-right-radius:0px;
  2015. border-bottom-left-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2020. font-weight:500;
  2021. font-style:normal;
  2022. font-size:18px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u1730 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:1252px;
  2029. top:157px;
  2030. width:34px;
  2031. height:29px;
  2032. display:flex;
  2033. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2034. font-weight:500;
  2035. font-style:normal;
  2036. font-size:18px;
  2037. color:#FFFFFF;
  2038. }
  2039. #u1730 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u1730_text {
  2047. border-width:0px;
  2048. white-space:nowrap;
  2049. text-transform:none;
  2050. }
  2051. #u1731 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:0px;
  2057. height:0px;
  2058. }
  2059. #u1732_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:41px;
  2065. height:21px;
  2066. background:inherit;
  2067. background-color:rgba(245, 154, 35, 0);
  2068. border:none;
  2069. border-left:0px;
  2070. border-top:0px;
  2071. border-right:0px;
  2072. border-radius:0px;
  2073. border-bottom-right-radius:0px;
  2074. border-bottom-left-radius:0px;
  2075. -moz-box-shadow:none;
  2076. -webkit-box-shadow:none;
  2077. box-shadow:none;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u1732 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:1312px;
  2088. top:186px;
  2089. width:41px;
  2090. height:21px;
  2091. display:flex;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. color:#FFFFFF;
  2097. }
  2098. #u1732 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u1732_text {
  2106. border-width:0px;
  2107. white-space:nowrap;
  2108. text-transform:none;
  2109. }
  2110. #u1733_div {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:34px;
  2116. height:29px;
  2117. background:inherit;
  2118. background-color:rgba(245, 154, 35, 0);
  2119. border:none;
  2120. border-left:0px;
  2121. border-top:0px;
  2122. border-right:0px;
  2123. border-radius:0px;
  2124. border-bottom-right-radius:0px;
  2125. border-bottom-left-radius:0px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2130. font-weight:500;
  2131. font-style:normal;
  2132. font-size:18px;
  2133. color:#FFFFFF;
  2134. }
  2135. #u1733 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:1315px;
  2139. top:157px;
  2140. width:34px;
  2141. height:29px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2144. font-weight:500;
  2145. font-style:normal;
  2146. font-size:18px;
  2147. color:#FFFFFF;
  2148. }
  2149. #u1733 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u1733_text {
  2157. border-width:0px;
  2158. white-space:nowrap;
  2159. text-transform:none;
  2160. }
  2161. #u1734 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:0px;
  2167. height:0px;
  2168. }
  2169. #u1735_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:29px;
  2175. height:21px;
  2176. background:inherit;
  2177. background-color:rgba(245, 154, 35, 0);
  2178. border:none;
  2179. border-left:0px;
  2180. border-top:0px;
  2181. border-right:0px;
  2182. border-radius:0px;
  2183. border-bottom-right-radius:0px;
  2184. border-bottom-left-radius:0px;
  2185. -moz-box-shadow:none;
  2186. -webkit-box-shadow:none;
  2187. box-shadow:none;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:12px;
  2192. color:#FFFFFF;
  2193. }
  2194. #u1735 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:1438px;
  2198. top:186px;
  2199. width:29px;
  2200. height:21px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. color:#FFFFFF;
  2207. }
  2208. #u1735 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u1735_text {
  2216. border-width:0px;
  2217. white-space:nowrap;
  2218. text-transform:none;
  2219. }
  2220. #u1736_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:27px;
  2226. height:29px;
  2227. background:inherit;
  2228. background-color:rgba(245, 154, 35, 0);
  2229. border:none;
  2230. border-left:0px;
  2231. border-top:0px;
  2232. border-right:0px;
  2233. border-radius:0px;
  2234. border-bottom-right-radius:0px;
  2235. border-bottom-left-radius:0px;
  2236. -moz-box-shadow:none;
  2237. -webkit-box-shadow:none;
  2238. box-shadow:none;
  2239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2240. font-weight:500;
  2241. font-style:normal;
  2242. font-size:18px;
  2243. color:#FFFFFF;
  2244. }
  2245. #u1736 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:1439px;
  2249. top:157px;
  2250. width:27px;
  2251. height:29px;
  2252. display:flex;
  2253. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2254. font-weight:500;
  2255. font-style:normal;
  2256. font-size:18px;
  2257. color:#FFFFFF;
  2258. }
  2259. #u1736 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 2px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u1736_text {
  2267. border-width:0px;
  2268. white-space:nowrap;
  2269. text-transform:none;
  2270. }
  2271. #u1737 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:0px;
  2277. height:0px;
  2278. }
  2279. #u1738_img {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:240px;
  2285. height:30px;
  2286. }
  2287. #u1738 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:1242px;
  2291. top:232px;
  2292. width:240px;
  2293. height:30px;
  2294. display:flex;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:12px;
  2299. color:#FFFFFF;
  2300. text-align:left;
  2301. }
  2302. #u1738 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:2px 2px 2px 10px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u1738_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. visibility:hidden;
  2314. }
  2315. #u1739_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:73px;
  2321. height:17px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. color:#FFFFFF;
  2334. }
  2335. #u1739 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:1252px;
  2339. top:237px;
  2340. width:73px;
  2341. height:17px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:12px;
  2347. color:#FFFFFF;
  2348. }
  2349. #u1739 .text {
  2350. position:absolute;
  2351. align-self:flex-start;
  2352. padding:0px 0px 0px 0px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u1739_text {
  2357. border-width:0px;
  2358. white-space:nowrap;
  2359. text-transform:none;
  2360. }
  2361. #u1740_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:29px;
  2367. height:34px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 0);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:12px;
  2379. color:rgba(255, 255, 255, 0.698039215686274);
  2380. text-align:left;
  2381. line-height:30px;
  2382. }
  2383. #u1740 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:1453px;
  2387. top:232px;
  2388. width:29px;
  2389. height:34px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. color:rgba(255, 255, 255, 0.698039215686274);
  2396. text-align:left;
  2397. line-height:30px;
  2398. }
  2399. #u1740 .text {
  2400. position:absolute;
  2401. align-self:center;
  2402. padding:2px 2px 2px 2px;
  2403. box-sizing:border-box;
  2404. width:100%;
  2405. }
  2406. #u1740_text {
  2407. border-width:0px;
  2408. white-space:nowrap;
  2409. text-transform:none;
  2410. }
  2411. #u1741 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:0px;
  2417. height:0px;
  2418. }
  2419. #u1742_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:240px;
  2425. height:60px;
  2426. }
  2427. #u1742 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:1236px;
  2431. top:542px;
  2432. width:240px;
  2433. height:60px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. color:#FFFFFF;
  2440. text-align:left;
  2441. }
  2442. #u1742 .text {
  2443. position:absolute;
  2444. align-self:center;
  2445. padding:2px 2px 2px 10px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u1742_text {
  2450. border-width:0px;
  2451. word-wrap:break-word;
  2452. text-transform:none;
  2453. visibility:hidden;
  2454. }
  2455. #u1743_img {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:62px;
  2461. height:60px;
  2462. }
  2463. #u1743 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:1236px;
  2467. top:542px;
  2468. width:62px;
  2469. height:60px;
  2470. display:flex;
  2471. }
  2472. #u1743 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 2px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u1743_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u1744_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:41px;
  2491. height:21px;
  2492. background:inherit;
  2493. background-color:rgba(245, 154, 35, 0);
  2494. border:none;
  2495. border-left:0px;
  2496. border-top:0px;
  2497. border-right:0px;
  2498. border-radius:0px;
  2499. border-bottom-right-radius:0px;
  2500. border-bottom-left-radius:0px;
  2501. -moz-box-shadow:none;
  2502. -webkit-box-shadow:none;
  2503. box-shadow:none;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. color:#FFFFFF;
  2509. text-align:left;
  2510. }
  2511. #u1744 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:1303px;
  2515. top:546px;
  2516. width:41px;
  2517. height:21px;
  2518. display:flex;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:12px;
  2523. color:#FFFFFF;
  2524. text-align:left;
  2525. }
  2526. #u1744 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 2px 2px 2px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u1744_text {
  2534. border-width:0px;
  2535. white-space:nowrap;
  2536. text-transform:none;
  2537. }
  2538. #u1745_div {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:75px;
  2544. height:32px;
  2545. background:inherit;
  2546. background-color:rgba(245, 154, 35, 0);
  2547. border:none;
  2548. border-left:0px;
  2549. border-top:0px;
  2550. border-right:0px;
  2551. border-radius:0px;
  2552. border-bottom-right-radius:0px;
  2553. border-bottom-left-radius:0px;
  2554. -moz-box-shadow:none;
  2555. -webkit-box-shadow:none;
  2556. box-shadow:none;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:10px;
  2561. color:#FFFFFF;
  2562. text-align:left;
  2563. }
  2564. #u1745 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:1303px;
  2568. top:567px;
  2569. width:75px;
  2570. height:32px;
  2571. display:flex;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:10px;
  2576. color:#FFFFFF;
  2577. text-align:left;
  2578. }
  2579. #u1745 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u1745_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u1746_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:24px;
  2597. height:13px;
  2598. background:inherit;
  2599. background-color:rgba(245, 154, 35, 1);
  2600. border:none;
  2601. border-radius:40px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. font-size:8px;
  2609. color:rgba(255, 255, 255, 0.698039215686274);
  2610. }
  2611. #u1746 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:1356px;
  2615. top:550px;
  2616. width:24px;
  2617. height:13px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:8px;
  2623. color:rgba(255, 255, 255, 0.698039215686274);
  2624. }
  2625. #u1746 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:0px 0px 2px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u1746_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. }
  2637. #u1747 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:0px;
  2643. height:0px;
  2644. }
  2645. #u1748_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:240px;
  2651. height:60px;
  2652. }
  2653. #u1748 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1236px;
  2657. top:612px;
  2658. width:240px;
  2659. height:60px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:12px;
  2665. color:#FFFFFF;
  2666. text-align:left;
  2667. }
  2668. #u1748 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:2px 2px 2px 10px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u1748_text {
  2676. border-width:0px;
  2677. word-wrap:break-word;
  2678. text-transform:none;
  2679. visibility:hidden;
  2680. }
  2681. #u1749_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:62px;
  2687. height:60px;
  2688. }
  2689. #u1749 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:1236px;
  2693. top:612px;
  2694. width:62px;
  2695. height:60px;
  2696. display:flex;
  2697. }
  2698. #u1749 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u1749_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u1750_div {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:53px;
  2717. height:21px;
  2718. background:inherit;
  2719. background-color:rgba(245, 154, 35, 0);
  2720. border:none;
  2721. border-left:0px;
  2722. border-top:0px;
  2723. border-right:0px;
  2724. border-radius:0px;
  2725. border-bottom-right-radius:0px;
  2726. border-bottom-left-radius:0px;
  2727. -moz-box-shadow:none;
  2728. -webkit-box-shadow:none;
  2729. box-shadow:none;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:12px;
  2734. color:#FFFFFF;
  2735. text-align:left;
  2736. }
  2737. #u1750 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:1303px;
  2741. top:616px;
  2742. width:53px;
  2743. height:21px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. color:#FFFFFF;
  2750. text-align:left;
  2751. }
  2752. #u1750 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 2px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u1750_text {
  2760. border-width:0px;
  2761. white-space:nowrap;
  2762. text-transform:none;
  2763. }
  2764. #u1751_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:75px;
  2770. height:32px;
  2771. background:inherit;
  2772. background-color:rgba(245, 154, 35, 0);
  2773. border:none;
  2774. border-left:0px;
  2775. border-top:0px;
  2776. border-right:0px;
  2777. border-radius:0px;
  2778. border-bottom-right-radius:0px;
  2779. border-bottom-left-radius:0px;
  2780. -moz-box-shadow:none;
  2781. -webkit-box-shadow:none;
  2782. box-shadow:none;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:10px;
  2787. color:#FFFFFF;
  2788. text-align:left;
  2789. }
  2790. #u1751 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:1303px;
  2794. top:637px;
  2795. width:75px;
  2796. height:32px;
  2797. display:flex;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:10px;
  2802. color:#FFFFFF;
  2803. text-align:left;
  2804. }
  2805. #u1751 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u1751_text {
  2813. border-width:0px;
  2814. white-space:nowrap;
  2815. text-transform:none;
  2816. }
  2817. #u1752_div {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:35px;
  2823. height:13px;
  2824. background:inherit;
  2825. background-color:rgba(217, 0, 27, 1);
  2826. border:none;
  2827. border-radius:40px;
  2828. -moz-box-shadow:none;
  2829. -webkit-box-shadow:none;
  2830. box-shadow:none;
  2831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:8px;
  2835. color:rgba(255, 255, 255, 0.698039215686274);
  2836. }
  2837. #u1752 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:1356px;
  2841. top:620px;
  2842. width:35px;
  2843. height:13px;
  2844. display:flex;
  2845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:8px;
  2849. color:rgba(255, 255, 255, 0.698039215686274);
  2850. }
  2851. #u1752 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:0px 0px 2px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u1752_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u1753 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:0px;
  2869. height:0px;
  2870. }
  2871. #u1754_div {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:41px;
  2877. height:21px;
  2878. background:inherit;
  2879. background-color:rgba(245, 154, 35, 0);
  2880. border:none;
  2881. border-left:0px;
  2882. border-top:0px;
  2883. border-right:0px;
  2884. border-radius:0px;
  2885. border-bottom-right-radius:0px;
  2886. border-bottom-left-radius:0px;
  2887. -moz-box-shadow:none;
  2888. -webkit-box-shadow:none;
  2889. box-shadow:none;
  2890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2891. font-weight:400;
  2892. font-style:normal;
  2893. font-size:12px;
  2894. color:#FFFFFF;
  2895. }
  2896. #u1754 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:1375px;
  2900. top:186px;
  2901. width:41px;
  2902. height:21px;
  2903. display:flex;
  2904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2905. font-weight:400;
  2906. font-style:normal;
  2907. font-size:12px;
  2908. color:#FFFFFF;
  2909. }
  2910. #u1754 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u1754_text {
  2918. border-width:0px;
  2919. white-space:nowrap;
  2920. text-transform:none;
  2921. }
  2922. #u1755_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:27px;
  2928. height:29px;
  2929. background:inherit;
  2930. background-color:rgba(245, 154, 35, 0);
  2931. border:none;
  2932. border-left:0px;
  2933. border-top:0px;
  2934. border-right:0px;
  2935. border-radius:0px;
  2936. border-bottom-right-radius:0px;
  2937. border-bottom-left-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2942. font-weight:500;
  2943. font-style:normal;
  2944. font-size:18px;
  2945. color:#FFFFFF;
  2946. }
  2947. #u1755 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:1382px;
  2951. top:157px;
  2952. width:27px;
  2953. height:29px;
  2954. display:flex;
  2955. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2956. font-weight:500;
  2957. font-style:normal;
  2958. font-size:18px;
  2959. color:#FFFFFF;
  2960. }
  2961. #u1755 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 2px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u1755_text {
  2969. border-width:0px;
  2970. white-space:nowrap;
  2971. text-transform:none;
  2972. }
  2973. #u1756_div {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:836px;
  2979. height:630px;
  2980. background:inherit;
  2981. background-color:rgba(51, 51, 51, 0.8);
  2982. border:none;
  2983. border-radius:0px;
  2984. -moz-box-shadow:none;
  2985. -webkit-box-shadow:none;
  2986. box-shadow:none;
  2987. }
  2988. #u1756 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:325px;
  2992. top:104px;
  2993. width:836px;
  2994. height:630px;
  2995. display:flex;
  2996. }
  2997. #u1756 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 2px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u1756_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u1757_div {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:157px;
  3016. height:29px;
  3017. background:inherit;
  3018. background-color:rgba(245, 154, 35, 0);
  3019. border:none;
  3020. border-left:0px;
  3021. border-top:0px;
  3022. border-right:0px;
  3023. border-radius:0px;
  3024. border-bottom-right-radius:0px;
  3025. border-bottom-left-radius:0px;
  3026. -moz-box-shadow:none;
  3027. -webkit-box-shadow:none;
  3028. box-shadow:none;
  3029. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3030. font-weight:500;
  3031. font-style:normal;
  3032. font-size:18px;
  3033. color:#F59A23;
  3034. text-align:left;
  3035. }
  3036. #u1757 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:337px;
  3040. top:129px;
  3041. width:157px;
  3042. height:29px;
  3043. display:flex;
  3044. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3045. font-weight:500;
  3046. font-style:normal;
  3047. font-size:18px;
  3048. color:#F59A23;
  3049. text-align:left;
  3050. }
  3051. #u1757 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 10px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u1757_text {
  3059. border-width:0px;
  3060. white-space:nowrap;
  3061. text-transform:none;
  3062. }
  3063. #u1758 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:0px;
  3069. height:0px;
  3070. }
  3071. #u1759_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:254px;
  3077. height:82px;
  3078. background:inherit;
  3079. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3080. box-sizing:border-box;
  3081. border-width:1px;
  3082. border-style:solid;
  3083. border-color:rgba(121, 121, 121, 1);
  3084. border-radius:0px;
  3085. -moz-box-shadow:none;
  3086. -webkit-box-shadow:none;
  3087. box-shadow:none;
  3088. }
  3089. #u1759 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:348px;
  3093. top:179px;
  3094. width:254px;
  3095. height:82px;
  3096. display:flex;
  3097. }
  3098. #u1759 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 2px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u1759_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. visibility:hidden;
  3110. }
  3111. #u1760_div {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:31px;
  3117. height:24px;
  3118. background:inherit;
  3119. background-color:rgba(245, 154, 35, 0);
  3120. border:none;
  3121. border-left:0px;
  3122. border-top:0px;
  3123. border-right:0px;
  3124. border-radius:0px;
  3125. border-bottom-right-radius:0px;
  3126. border-bottom-left-radius:0px;
  3127. -moz-box-shadow:none;
  3128. -webkit-box-shadow:none;
  3129. box-shadow:none;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. color:#FFFFFF;
  3135. text-align:left;
  3136. }
  3137. #u1760 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:415px;
  3141. top:186px;
  3142. width:31px;
  3143. height:24px;
  3144. display:flex;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:14px;
  3149. color:#FFFFFF;
  3150. text-align:left;
  3151. }
  3152. #u1760 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 0px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u1760_text {
  3160. border-width:0px;
  3161. white-space:nowrap;
  3162. text-transform:none;
  3163. }
  3164. #u1761_div {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:35px;
  3170. height:21px;
  3171. background:inherit;
  3172. background-color:rgba(245, 154, 35, 1);
  3173. border:none;
  3174. border-radius:11px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. color:#FFFFFF;
  3183. }
  3184. #u1761 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:458px;
  3188. top:188px;
  3189. width:35px;
  3190. height:21px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#FFFFFF;
  3197. }
  3198. #u1761 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 2px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u1761_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. }
  3210. #u1762_div {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:95px;
  3216. height:21px;
  3217. background:inherit;
  3218. background-color:rgba(245, 154, 35, 0);
  3219. border:none;
  3220. border-left:0px;
  3221. border-top:0px;
  3222. border-right:0px;
  3223. border-radius:0px;
  3224. border-bottom-right-radius:0px;
  3225. border-bottom-left-radius:0px;
  3226. -moz-box-shadow:none;
  3227. -webkit-box-shadow:none;
  3228. box-shadow:none;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#FFFFFF;
  3234. text-align:left;
  3235. }
  3236. #u1762 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:415px;
  3240. top:217px;
  3241. width:95px;
  3242. height:21px;
  3243. display:flex;
  3244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:12px;
  3248. color:#FFFFFF;
  3249. text-align:left;
  3250. }
  3251. #u1762 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 2px 2px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u1762_text {
  3259. border-width:0px;
  3260. white-space:nowrap;
  3261. text-transform:none;
  3262. }
  3263. #u1763_div {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:103px;
  3269. height:18px;
  3270. background:inherit;
  3271. background-color:rgba(245, 154, 35, 0);
  3272. border:none;
  3273. border-left:0px;
  3274. border-top:0px;
  3275. border-right:0px;
  3276. border-radius:0px;
  3277. border-bottom-right-radius:0px;
  3278. border-bottom-left-radius:0px;
  3279. -moz-box-shadow:none;
  3280. -webkit-box-shadow:none;
  3281. box-shadow:none;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:10px;
  3286. color:#FFFFFF;
  3287. text-align:left;
  3288. }
  3289. #u1763 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:415px;
  3293. top:238px;
  3294. width:103px;
  3295. height:18px;
  3296. display:flex;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:10px;
  3301. color:#FFFFFF;
  3302. text-align:left;
  3303. }
  3304. #u1763 .text {
  3305. position:absolute;
  3306. align-self:center;
  3307. padding:2px 2px 2px 0px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u1763_text {
  3312. border-width:0px;
  3313. white-space:nowrap;
  3314. text-transform:none;
  3315. }
  3316. #u1764_img {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:50px;
  3322. height:59px;
  3323. }
  3324. #u1764 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:356px;
  3328. top:190px;
  3329. width:50px;
  3330. height:59px;
  3331. display:flex;
  3332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. color:#FFFFFF;
  3336. }
  3337. #u1764 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 2px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u1764_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. }
  3349. #u1765 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:0px;
  3355. height:0px;
  3356. }
  3357. #u1766_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:254px;
  3363. height:82px;
  3364. background:inherit;
  3365. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3366. box-sizing:border-box;
  3367. border-width:1px;
  3368. border-style:solid;
  3369. border-color:rgba(121, 121, 121, 1);
  3370. border-radius:0px;
  3371. -moz-box-shadow:none;
  3372. -webkit-box-shadow:none;
  3373. box-shadow:none;
  3374. }
  3375. #u1766 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:612px;
  3379. top:179px;
  3380. width:254px;
  3381. height:82px;
  3382. display:flex;
  3383. }
  3384. #u1766 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 2px 2px 2px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u1766_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. visibility:hidden;
  3396. }
  3397. #u1767_div {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:45px;
  3403. height:24px;
  3404. background:inherit;
  3405. background-color:rgba(245, 154, 35, 0);
  3406. border:none;
  3407. border-left:0px;
  3408. border-top:0px;
  3409. border-right:0px;
  3410. border-radius:0px;
  3411. border-bottom-right-radius:0px;
  3412. border-bottom-left-radius:0px;
  3413. -moz-box-shadow:none;
  3414. -webkit-box-shadow:none;
  3415. box-shadow:none;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:14px;
  3420. color:#FFFFFF;
  3421. text-align:left;
  3422. }
  3423. #u1767 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:679px;
  3427. top:186px;
  3428. width:45px;
  3429. height:24px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:14px;
  3435. color:#FFFFFF;
  3436. text-align:left;
  3437. }
  3438. #u1767 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 2px 2px 0px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u1767_text {
  3446. border-width:0px;
  3447. white-space:nowrap;
  3448. text-transform:none;
  3449. }
  3450. #u1768_div {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:95px;
  3456. height:21px;
  3457. background:inherit;
  3458. background-color:rgba(245, 154, 35, 0);
  3459. border:none;
  3460. border-left:0px;
  3461. border-top:0px;
  3462. border-right:0px;
  3463. border-radius:0px;
  3464. border-bottom-right-radius:0px;
  3465. border-bottom-left-radius:0px;
  3466. -moz-box-shadow:none;
  3467. -webkit-box-shadow:none;
  3468. box-shadow:none;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#FFFFFF;
  3474. text-align:left;
  3475. }
  3476. #u1768 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:679px;
  3480. top:217px;
  3481. width:95px;
  3482. height:21px;
  3483. display:flex;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. color:#FFFFFF;
  3489. text-align:left;
  3490. }
  3491. #u1768 .text {
  3492. position:absolute;
  3493. align-self:center;
  3494. padding:2px 2px 2px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u1768_text {
  3499. border-width:0px;
  3500. white-space:nowrap;
  3501. text-transform:none;
  3502. }
  3503. #u1769_div {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:103px;
  3509. height:18px;
  3510. background:inherit;
  3511. background-color:rgba(245, 154, 35, 0);
  3512. border:none;
  3513. border-left:0px;
  3514. border-top:0px;
  3515. border-right:0px;
  3516. border-radius:0px;
  3517. border-bottom-right-radius:0px;
  3518. border-bottom-left-radius:0px;
  3519. -moz-box-shadow:none;
  3520. -webkit-box-shadow:none;
  3521. box-shadow:none;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:10px;
  3526. color:#FFFFFF;
  3527. text-align:left;
  3528. }
  3529. #u1769 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:679px;
  3533. top:238px;
  3534. width:103px;
  3535. height:18px;
  3536. display:flex;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:10px;
  3541. color:#FFFFFF;
  3542. text-align:left;
  3543. }
  3544. #u1769 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u1769_text {
  3552. border-width:0px;
  3553. white-space:nowrap;
  3554. text-transform:none;
  3555. }
  3556. #u1770_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:50px;
  3562. height:59px;
  3563. }
  3564. #u1770 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:620px;
  3568. top:190px;
  3569. width:50px;
  3570. height:59px;
  3571. display:flex;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. color:#FFFFFF;
  3576. }
  3577. #u1770 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 2px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u1770_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. }
  3589. #u1771 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:0px;
  3595. height:0px;
  3596. }
  3597. #u1772_div {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:254px;
  3603. height:82px;
  3604. background:inherit;
  3605. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3606. box-sizing:border-box;
  3607. border-width:1px;
  3608. border-style:solid;
  3609. border-color:rgba(121, 121, 121, 1);
  3610. border-radius:0px;
  3611. -moz-box-shadow:none;
  3612. -webkit-box-shadow:none;
  3613. box-shadow:none;
  3614. }
  3615. #u1772 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:876px;
  3619. top:179px;
  3620. width:254px;
  3621. height:82px;
  3622. display:flex;
  3623. }
  3624. #u1772 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 2px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u1772_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u1773_div {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:31px;
  3643. height:24px;
  3644. background:inherit;
  3645. background-color:rgba(245, 154, 35, 0);
  3646. border:none;
  3647. border-left:0px;
  3648. border-top:0px;
  3649. border-right:0px;
  3650. border-radius:0px;
  3651. border-bottom-right-radius:0px;
  3652. border-bottom-left-radius:0px;
  3653. -moz-box-shadow:none;
  3654. -webkit-box-shadow:none;
  3655. box-shadow:none;
  3656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:14px;
  3660. color:#FFFFFF;
  3661. text-align:left;
  3662. }
  3663. #u1773 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:943px;
  3667. top:186px;
  3668. width:31px;
  3669. height:24px;
  3670. display:flex;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:14px;
  3675. color:#FFFFFF;
  3676. text-align:left;
  3677. }
  3678. #u1773 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 2px 2px 0px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u1773_text {
  3686. border-width:0px;
  3687. white-space:nowrap;
  3688. text-transform:none;
  3689. }
  3690. #u1774_div {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:35px;
  3696. height:21px;
  3697. background:inherit;
  3698. background-color:rgba(245, 154, 35, 1);
  3699. border:none;
  3700. border-radius:11px;
  3701. -moz-box-shadow:none;
  3702. -webkit-box-shadow:none;
  3703. box-shadow:none;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. color:#FFFFFF;
  3709. }
  3710. #u1774 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:978px;
  3714. top:188px;
  3715. width:35px;
  3716. height:21px;
  3717. display:flex;
  3718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. color:#FFFFFF;
  3723. }
  3724. #u1774 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 2px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u1774_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. }
  3736. #u1775_div {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:71px;
  3742. height:21px;
  3743. background:inherit;
  3744. background-color:rgba(245, 154, 35, 0);
  3745. border:none;
  3746. border-left:0px;
  3747. border-top:0px;
  3748. border-right:0px;
  3749. border-radius:0px;
  3750. border-bottom-right-radius:0px;
  3751. border-bottom-left-radius:0px;
  3752. -moz-box-shadow:none;
  3753. -webkit-box-shadow:none;
  3754. box-shadow:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. color:#FFFFFF;
  3760. text-align:left;
  3761. }
  3762. #u1775 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:943px;
  3766. top:217px;
  3767. width:71px;
  3768. height:21px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:12px;
  3774. color:#FFFFFF;
  3775. text-align:left;
  3776. }
  3777. #u1775 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u1775_text {
  3785. border-width:0px;
  3786. white-space:nowrap;
  3787. text-transform:none;
  3788. }
  3789. #u1776_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:103px;
  3795. height:18px;
  3796. background:inherit;
  3797. background-color:rgba(245, 154, 35, 0);
  3798. border:none;
  3799. border-left:0px;
  3800. border-top:0px;
  3801. border-right:0px;
  3802. border-radius:0px;
  3803. border-bottom-right-radius:0px;
  3804. border-bottom-left-radius:0px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:10px;
  3812. color:#FFFFFF;
  3813. text-align:left;
  3814. }
  3815. #u1776 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:943px;
  3819. top:238px;
  3820. width:103px;
  3821. height:18px;
  3822. display:flex;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:10px;
  3827. color:#FFFFFF;
  3828. text-align:left;
  3829. }
  3830. #u1776 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 0px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u1776_text {
  3838. border-width:0px;
  3839. white-space:nowrap;
  3840. text-transform:none;
  3841. }
  3842. #u1777_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:50px;
  3848. height:59px;
  3849. }
  3850. #u1777 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:884px;
  3854. top:190px;
  3855. width:50px;
  3856. height:59px;
  3857. display:flex;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. color:#FFFFFF;
  3862. }
  3863. #u1777 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 2px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u1777_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. }
  3875. #u1778 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:0px;
  3881. height:0px;
  3882. }
  3883. #u1779 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:0px;
  3889. height:0px;
  3890. }
  3891. #u1780_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:31px;
  3897. height:30px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 1);
  3900. box-sizing:border-box;
  3901. border-width:1px;
  3902. border-style:solid;
  3903. border-color:rgba(228, 228, 228, 1);
  3904. border-radius:4px;
  3905. -moz-box-shadow:none;
  3906. -webkit-box-shadow:none;
  3907. box-shadow:none;
  3908. font-family:'Microsoft YaHei', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:12px;
  3912. }
  3913. #u1780 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:1030px;
  3917. top:689px;
  3918. width:31px;
  3919. height:30px;
  3920. display:flex;
  3921. font-family:'Microsoft YaHei', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. }
  3926. #u1780 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u1780_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u1781_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:8px;
  3945. height:14px;
  3946. }
  3947. #u1781 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1042px;
  3951. top:697px;
  3952. width:8px;
  3953. height:14px;
  3954. display:flex;
  3955. font-family:'Microsoft YaHei', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. }
  3960. #u1781 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 2px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u1781_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u1782 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:0px;
  3979. height:0px;
  3980. }
  3981. #u1783_div {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:31px;
  3987. height:30px;
  3988. background:inherit;
  3989. background-color:rgba(255, 255, 255, 1);
  3990. box-sizing:border-box;
  3991. border-width:1px;
  3992. border-style:solid;
  3993. border-color:rgba(228, 228, 228, 1);
  3994. border-radius:4px;
  3995. -moz-box-shadow:none;
  3996. -webkit-box-shadow:none;
  3997. box-shadow:none;
  3998. font-family:'Microsoft YaHei', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. }
  4003. #u1783 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:1115px;
  4007. top:689px;
  4008. width:31px;
  4009. height:30px;
  4010. display:flex;
  4011. font-family:'Microsoft YaHei', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:12px;
  4015. }
  4016. #u1783 .text {
  4017. position:absolute;
  4018. align-self:center;
  4019. padding:2px 2px 2px 2px;
  4020. box-sizing:border-box;
  4021. width:100%;
  4022. }
  4023. #u1783_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. visibility:hidden;
  4028. }
  4029. #u1784_img {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:8px;
  4035. height:14px;
  4036. }
  4037. #u1784 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:1128px;
  4041. top:697px;
  4042. width:8px;
  4043. height:14px;
  4044. display:flex;
  4045. font-family:'Microsoft YaHei', sans-serif;
  4046. font-weight:400;
  4047. font-style:normal;
  4048. font-size:12px;
  4049. }
  4050. #u1784 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 2px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u1784_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u1785_div {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:32px;
  4069. height:21px;
  4070. background:inherit;
  4071. background-color:rgba(255, 255, 255, 0);
  4072. border:none;
  4073. border-radius:15px;
  4074. -moz-box-shadow:none;
  4075. -webkit-box-shadow:none;
  4076. box-shadow:none;
  4077. font-family:'Microsoft YaHei', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:14px;
  4081. color:#FFFFFF;
  4082. }
  4083. #u1785 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:1071px;
  4087. top:694px;
  4088. width:32px;
  4089. height:21px;
  4090. display:flex;
  4091. font-family:'Microsoft YaHei', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:14px;
  4095. color:#FFFFFF;
  4096. }
  4097. #u1785 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u1785_text {
  4105. border-width:0px;
  4106. white-space:nowrap;
  4107. text-transform:none;
  4108. }
  4109. #u1786_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:100px;
  4115. height:30px;
  4116. background:inherit;
  4117. background-color:rgba(245, 154, 35, 0);
  4118. box-sizing:border-box;
  4119. border-width:1px;
  4120. border-style:solid;
  4121. border-color:rgba(245, 154, 35, 1);
  4122. border-radius:4px;
  4123. -moz-box-shadow:none;
  4124. -webkit-box-shadow:none;
  4125. box-shadow:none;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:12px;
  4130. color:#F59A23;
  4131. }
  4132. #u1786 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:941px;
  4136. top:124px;
  4137. width:100px;
  4138. height:30px;
  4139. display:flex;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. color:#F59A23;
  4145. }
  4146. #u1786 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 2px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u1786_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. }
  4158. #u1787_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:100px;
  4164. height:30px;
  4165. background:inherit;
  4166. background-color:rgba(245, 154, 35, 0);
  4167. box-sizing:border-box;
  4168. border-width:1px;
  4169. border-style:solid;
  4170. border-color:rgba(245, 154, 35, 1);
  4171. border-radius:4px;
  4172. -moz-box-shadow:none;
  4173. -webkit-box-shadow:none;
  4174. box-shadow:none;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:#F59A23;
  4180. }
  4181. #u1787 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:1047px;
  4185. top:124px;
  4186. width:100px;
  4187. height:30px;
  4188. display:flex;
  4189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. font-size:12px;
  4193. color:#F59A23;
  4194. }
  4195. #u1787 .text {
  4196. position:absolute;
  4197. align-self:center;
  4198. padding:2px 2px 2px 2px;
  4199. box-sizing:border-box;
  4200. width:100%;
  4201. }
  4202. #u1787_text {
  4203. border-width:0px;
  4204. word-wrap:break-word;
  4205. text-transform:none;
  4206. }
  4207. #u1789 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:0px;
  4213. height:0px;
  4214. }
  4215. #u1790 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:0px;
  4221. height:0px;
  4222. }
  4223. #u1791_div {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:57px;
  4229. height:20px;
  4230. background:inherit;
  4231. background-color:rgba(28, 33, 30, 1);
  4232. border:none;
  4233. border-radius:0px;
  4234. -moz-box-shadow:none;
  4235. -webkit-box-shadow:none;
  4236. box-shadow:none;
  4237. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4238. font-weight:500;
  4239. font-style:normal;
  4240. font-size:14px;
  4241. color:#FFFFFF;
  4242. }
  4243. #u1791 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:412px;
  4247. top:824px;
  4248. width:57px;
  4249. height:20px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4252. font-weight:500;
  4253. font-style:normal;
  4254. font-size:14px;
  4255. color:#FFFFFF;
  4256. }
  4257. #u1791 .text {
  4258. position:absolute;
  4259. align-self:flex-start;
  4260. padding:0px 0px 0px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u1791_text {
  4265. border-width:0px;
  4266. white-space:nowrap;
  4267. text-transform:none;
  4268. }
  4269. #u1792_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:33px;
  4275. height:39px;
  4276. }
  4277. #u1792 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:424px;
  4281. top:783px;
  4282. width:33px;
  4283. height:39px;
  4284. display:flex;
  4285. color:#FFFFFF;
  4286. }
  4287. #u1792 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 2px 2px 2px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u1792_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. }
  4299. #u1793 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:0px;
  4305. height:0px;
  4306. }
  4307. #u1794_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:57px;
  4313. height:20px;
  4314. background:inherit;
  4315. background-color:rgba(28, 33, 30, 1);
  4316. border:none;
  4317. border-radius:0px;
  4318. -moz-box-shadow:none;
  4319. -webkit-box-shadow:none;
  4320. box-shadow:none;
  4321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4322. font-weight:500;
  4323. font-style:normal;
  4324. font-size:14px;
  4325. color:#FFFFFF;
  4326. }
  4327. #u1794 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:486px;
  4331. top:824px;
  4332. width:57px;
  4333. height:20px;
  4334. display:flex;
  4335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4336. font-weight:500;
  4337. font-style:normal;
  4338. font-size:14px;
  4339. color:#FFFFFF;
  4340. }
  4341. #u1794 .text {
  4342. position:absolute;
  4343. align-self:flex-start;
  4344. padding:0px 0px 0px 0px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u1794_text {
  4349. border-width:0px;
  4350. white-space:nowrap;
  4351. text-transform:none;
  4352. }
  4353. #u1795_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:33px;
  4359. height:39px;
  4360. }
  4361. #u1795 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:498px;
  4365. top:783px;
  4366. width:33px;
  4367. height:39px;
  4368. display:flex;
  4369. color:#FFFFFF;
  4370. }
  4371. #u1795 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u1795_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. }
  4383. #u1796 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:0px;
  4389. height:0px;
  4390. }
  4391. #u1797_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:57px;
  4397. height:20px;
  4398. background:inherit;
  4399. background-color:rgba(28, 33, 30, 1);
  4400. border:none;
  4401. border-radius:0px;
  4402. -moz-box-shadow:none;
  4403. -webkit-box-shadow:none;
  4404. box-shadow:none;
  4405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4406. font-weight:500;
  4407. font-style:normal;
  4408. font-size:14px;
  4409. color:#FFFFFF;
  4410. }
  4411. #u1797 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:335px;
  4415. top:824px;
  4416. width:57px;
  4417. height:20px;
  4418. display:flex;
  4419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4420. font-weight:500;
  4421. font-style:normal;
  4422. font-size:14px;
  4423. color:#FFFFFF;
  4424. }
  4425. #u1797 .text {
  4426. position:absolute;
  4427. align-self:flex-start;
  4428. padding:0px 0px 0px 0px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u1797_text {
  4433. border-width:0px;
  4434. white-space:nowrap;
  4435. text-transform:none;
  4436. }
  4437. #u1798_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:33px;
  4443. height:39px;
  4444. }
  4445. #u1798 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:347px;
  4449. top:783px;
  4450. width:33px;
  4451. height:39px;
  4452. display:flex;
  4453. color:#FFFFFF;
  4454. }
  4455. #u1798 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 2px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u1798_text {
  4463. border-width:0px;
  4464. word-wrap:break-word;
  4465. text-transform:none;
  4466. }
  4467. #u1799_div {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:59px;
  4473. height:20px;
  4474. background:inherit;
  4475. background-color:rgba(28, 33, 30, 1);
  4476. border:none;
  4477. border-radius:0px;
  4478. -moz-box-shadow:none;
  4479. -webkit-box-shadow:none;
  4480. box-shadow:none;
  4481. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4482. font-weight:500;
  4483. font-style:normal;
  4484. font-size:14px;
  4485. color:#FFFFFF;
  4486. }
  4487. #u1799 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:335px;
  4491. top:824px;
  4492. width:59px;
  4493. height:20px;
  4494. display:flex;
  4495. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4496. font-weight:500;
  4497. font-style:normal;
  4498. font-size:14px;
  4499. color:#FFFFFF;
  4500. }
  4501. #u1799 .text {
  4502. position:absolute;
  4503. align-self:flex-start;
  4504. padding:0px 0px 0px 0px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u1799_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. }
  4513. #u1800 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:0px;
  4519. height:0px;
  4520. }
  4521. #u1801_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:57px;
  4527. height:20px;
  4528. background:inherit;
  4529. background-color:rgba(28, 33, 30, 1);
  4530. border:none;
  4531. border-radius:0px;
  4532. -moz-box-shadow:none;
  4533. -webkit-box-shadow:none;
  4534. box-shadow:none;
  4535. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4536. font-weight:500;
  4537. font-style:normal;
  4538. font-size:14px;
  4539. color:#FFFFFF;
  4540. }
  4541. #u1801 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:561px;
  4545. top:824px;
  4546. width:57px;
  4547. height:20px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4550. font-weight:500;
  4551. font-style:normal;
  4552. font-size:14px;
  4553. color:#FFFFFF;
  4554. }
  4555. #u1801 .text {
  4556. position:absolute;
  4557. align-self:flex-start;
  4558. padding:0px 0px 0px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u1801_text {
  4563. border-width:0px;
  4564. white-space:nowrap;
  4565. text-transform:none;
  4566. }
  4567. #u1802_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:33px;
  4573. height:39px;
  4574. }
  4575. #u1802 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:573px;
  4579. top:783px;
  4580. width:33px;
  4581. height:39px;
  4582. display:flex;
  4583. color:#FFFFFF;
  4584. }
  4585. #u1802 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 2px 2px 2px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u1802_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. }
  4597. #u1803 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:0px;
  4603. height:0px;
  4604. }
  4605. #u1804_div {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:57px;
  4611. height:20px;
  4612. background:inherit;
  4613. background-color:rgba(28, 33, 30, 1);
  4614. border:none;
  4615. border-radius:0px;
  4616. -moz-box-shadow:none;
  4617. -webkit-box-shadow:none;
  4618. box-shadow:none;
  4619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4620. font-weight:500;
  4621. font-style:normal;
  4622. font-size:14px;
  4623. color:#FFFFFF;
  4624. }
  4625. #u1804 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:636px;
  4629. top:824px;
  4630. width:57px;
  4631. height:20px;
  4632. display:flex;
  4633. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4634. font-weight:500;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. color:#FFFFFF;
  4638. }
  4639. #u1804 .text {
  4640. position:absolute;
  4641. align-self:flex-start;
  4642. padding:0px 0px 0px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u1804_text {
  4647. border-width:0px;
  4648. white-space:nowrap;
  4649. text-transform:none;
  4650. }
  4651. #u1805_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:33px;
  4657. height:39px;
  4658. }
  4659. #u1805 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:648px;
  4663. top:783px;
  4664. width:33px;
  4665. height:39px;
  4666. display:flex;
  4667. color:#FFFFFF;
  4668. }
  4669. #u1805 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 2px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u1805_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. }
  4681. #u1806 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:0px;
  4687. height:0px;
  4688. }
  4689. #u1807_div {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:56px;
  4695. height:20px;
  4696. background:inherit;
  4697. background-color:rgba(28, 33, 30, 1);
  4698. border:none;
  4699. border-radius:0px;
  4700. -moz-box-shadow:none;
  4701. -webkit-box-shadow:none;
  4702. box-shadow:none;
  4703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4704. font-weight:500;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. color:#FFFFFF;
  4708. }
  4709. #u1807 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:787px;
  4713. top:824px;
  4714. width:56px;
  4715. height:20px;
  4716. display:flex;
  4717. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4718. font-weight:500;
  4719. font-style:normal;
  4720. font-size:14px;
  4721. color:#FFFFFF;
  4722. }
  4723. #u1807 .text {
  4724. position:absolute;
  4725. align-self:flex-start;
  4726. padding:0px 0px 0px 0px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u1807_text {
  4731. border-width:0px;
  4732. white-space:nowrap;
  4733. text-transform:none;
  4734. }
  4735. #u1808_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:33px;
  4741. height:39px;
  4742. }
  4743. #u1808 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:799px;
  4747. top:783px;
  4748. width:33px;
  4749. height:39px;
  4750. display:flex;
  4751. color:#FFFFFF;
  4752. }
  4753. #u1808 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 2px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u1808_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. }
  4765. #u1809 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:0px;
  4771. height:0px;
  4772. }
  4773. #u1810_div {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:59px;
  4779. height:20px;
  4780. background:inherit;
  4781. background-color:rgba(28, 33, 30, 1);
  4782. border:none;
  4783. border-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4788. font-weight:500;
  4789. font-style:normal;
  4790. font-size:14px;
  4791. color:#FFFFFF;
  4792. }
  4793. #u1810 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:711px;
  4797. top:824px;
  4798. width:59px;
  4799. height:20px;
  4800. display:flex;
  4801. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4802. font-weight:500;
  4803. font-style:normal;
  4804. font-size:14px;
  4805. color:#FFFFFF;
  4806. }
  4807. #u1810 .text {
  4808. position:absolute;
  4809. align-self:flex-start;
  4810. padding:0px 0px 0px 0px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u1810_text {
  4815. border-width:0px;
  4816. word-wrap:break-word;
  4817. text-transform:none;
  4818. }
  4819. #u1811_img {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:33px;
  4825. height:39px;
  4826. }
  4827. #u1811 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:722px;
  4831. top:783px;
  4832. width:33px;
  4833. height:39px;
  4834. display:flex;
  4835. color:#FFFFFF;
  4836. }
  4837. #u1811 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 2px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u1811_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. }
  4849. #u1812 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:0px;
  4855. height:0px;
  4856. }
  4857. #u1813_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:57px;
  4863. height:20px;
  4864. background:inherit;
  4865. background-color:rgba(28, 33, 30, 1);
  4866. border:none;
  4867. border-radius:0px;
  4868. -moz-box-shadow:none;
  4869. -webkit-box-shadow:none;
  4870. box-shadow:none;
  4871. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4872. font-weight:500;
  4873. font-style:normal;
  4874. font-size:14px;
  4875. color:#FFFFFF;
  4876. }
  4877. #u1813 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:861px;
  4881. top:824px;
  4882. width:57px;
  4883. height:20px;
  4884. display:flex;
  4885. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4886. font-weight:500;
  4887. font-style:normal;
  4888. font-size:14px;
  4889. color:#FFFFFF;
  4890. }
  4891. #u1813 .text {
  4892. position:absolute;
  4893. align-self:flex-start;
  4894. padding:0px 0px 0px 0px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u1813_text {
  4899. border-width:0px;
  4900. white-space:nowrap;
  4901. text-transform:none;
  4902. }
  4903. #u1814_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:33px;
  4909. height:39px;
  4910. }
  4911. #u1814 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:874px;
  4915. top:783px;
  4916. width:33px;
  4917. height:39px;
  4918. display:flex;
  4919. color:#FFFFFF;
  4920. }
  4921. #u1814 .text {
  4922. position:absolute;
  4923. align-self:center;
  4924. padding:2px 2px 2px 2px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u1814_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. }
  4933. #u1815 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:0px;
  4939. height:0px;
  4940. }
  4941. #u1816_div {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:68px;
  4947. height:20px;
  4948. background:inherit;
  4949. background-color:rgba(28, 33, 30, 1);
  4950. border:none;
  4951. border-radius:0px;
  4952. -moz-box-shadow:none;
  4953. -webkit-box-shadow:none;
  4954. box-shadow:none;
  4955. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4956. font-weight:500;
  4957. font-style:normal;
  4958. font-size:14px;
  4959. color:#FFFFFF;
  4960. text-align:center;
  4961. }
  4962. #u1816 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:936px;
  4966. top:824px;
  4967. width:68px;
  4968. height:20px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4971. font-weight:500;
  4972. font-style:normal;
  4973. font-size:14px;
  4974. color:#FFFFFF;
  4975. text-align:center;
  4976. }
  4977. #u1816 .text {
  4978. position:absolute;
  4979. align-self:flex-start;
  4980. padding:0px 0px 0px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u1816_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. }
  4989. #u1817_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:33px;
  4995. height:39px;
  4996. }
  4997. #u1817 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:952px;
  5001. top:783px;
  5002. width:33px;
  5003. height:39px;
  5004. display:flex;
  5005. color:#FFFFFF;
  5006. }
  5007. #u1817 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 2px 2px 2px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u1817_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. }
  5019. #u1818 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:0px;
  5025. height:0px;
  5026. }
  5027. #u1819_div {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:68px;
  5033. height:20px;
  5034. background:inherit;
  5035. background-color:rgba(28, 33, 30, 1);
  5036. border:none;
  5037. border-radius:0px;
  5038. -moz-box-shadow:none;
  5039. -webkit-box-shadow:none;
  5040. box-shadow:none;
  5041. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5042. font-weight:500;
  5043. font-style:normal;
  5044. font-size:14px;
  5045. color:#FFFFFF;
  5046. text-align:center;
  5047. }
  5048. #u1819 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:1021px;
  5052. top:824px;
  5053. width:68px;
  5054. height:20px;
  5055. display:flex;
  5056. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5057. font-weight:500;
  5058. font-style:normal;
  5059. font-size:14px;
  5060. color:#FFFFFF;
  5061. text-align:center;
  5062. }
  5063. #u1819 .text {
  5064. position:absolute;
  5065. align-self:flex-start;
  5066. padding:0px 0px 0px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u1819_text {
  5071. border-width:0px;
  5072. word-wrap:break-word;
  5073. text-transform:none;
  5074. }
  5075. #u1820_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:33px;
  5081. height:39px;
  5082. }
  5083. #u1820 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:1037px;
  5087. top:783px;
  5088. width:33px;
  5089. height:39px;
  5090. display:flex;
  5091. color:#FFFFFF;
  5092. }
  5093. #u1820 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 2px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u1820_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. }
  5105. #u1821 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:0px;
  5111. height:0px;
  5112. }
  5113. #u1822_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:68px;
  5119. height:20px;
  5120. background:inherit;
  5121. background-color:rgba(28, 33, 30, 1);
  5122. border:none;
  5123. border-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5128. font-weight:500;
  5129. font-style:normal;
  5130. font-size:14px;
  5131. color:#FFFFFF;
  5132. text-align:center;
  5133. }
  5134. #u1822 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:1107px;
  5138. top:824px;
  5139. width:68px;
  5140. height:20px;
  5141. display:flex;
  5142. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5143. font-weight:500;
  5144. font-style:normal;
  5145. font-size:14px;
  5146. color:#FFFFFF;
  5147. text-align:center;
  5148. }
  5149. #u1822 .text {
  5150. position:absolute;
  5151. align-self:flex-start;
  5152. padding:0px 0px 0px 0px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u1822_text {
  5157. border-width:0px;
  5158. word-wrap:break-word;
  5159. text-transform:none;
  5160. }
  5161. #u1823_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:33px;
  5167. height:39px;
  5168. }
  5169. #u1823 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:1123px;
  5173. top:783px;
  5174. width:33px;
  5175. height:39px;
  5176. display:flex;
  5177. color:#FFFFFF;
  5178. }
  5179. #u1823 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u1823_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. }
  5191. #u1824 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:0px;
  5197. height:0px;
  5198. }
  5199. #u1825_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:-20px;
  5203. top:-20px;
  5204. width:1040px;
  5205. height:629px;
  5206. }
  5207. #u1825 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:216px;
  5211. top:887px;
  5212. width:1000px;
  5213. height:589px;
  5214. display:flex;
  5215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:14px;
  5219. color:#F59A23;
  5220. }
  5221. #u1825 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:2px 2px 2px 2px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u1825_text {
  5229. border-width:0px;
  5230. word-wrap:break-word;
  5231. text-transform:none;
  5232. visibility:hidden;
  5233. }
  5234. #u1826_div {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:125px;
  5240. height:32px;
  5241. background:inherit;
  5242. background-color:rgba(255, 255, 255, 0);
  5243. border:none;
  5244. border-radius:0px;
  5245. -moz-box-shadow:none;
  5246. -webkit-box-shadow:none;
  5247. box-shadow:none;
  5248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5249. font-weight:500;
  5250. font-style:normal;
  5251. font-size:20px;
  5252. color:#FFFFFF;
  5253. }
  5254. #u1826 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:236px;
  5258. top:897px;
  5259. width:125px;
  5260. height:32px;
  5261. display:flex;
  5262. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5263. font-weight:500;
  5264. font-style:normal;
  5265. font-size:20px;
  5266. color:#FFFFFF;
  5267. }
  5268. #u1826 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 2px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u1826_text {
  5276. border-width:0px;
  5277. white-space:nowrap;
  5278. text-transform:none;
  5279. }
  5280. #u1827_div {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:33px;
  5286. height:40px;
  5287. background:inherit;
  5288. background-color:rgba(255, 255, 255, 0);
  5289. box-sizing:border-box;
  5290. border-width:2px;
  5291. border-style:solid;
  5292. border-color:rgba(245, 154, 35, 1);
  5293. border-left:0px;
  5294. border-top:0px;
  5295. border-right:0px;
  5296. border-radius:0px;
  5297. border-bottom-right-radius:0px;
  5298. border-bottom-left-radius:0px;
  5299. -moz-box-shadow:none;
  5300. -webkit-box-shadow:none;
  5301. box-shadow:none;
  5302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:14px;
  5306. color:#F59A23;
  5307. }
  5308. #u1827 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:252px;
  5312. top:943px;
  5313. width:33px;
  5314. height:40px;
  5315. display:flex;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#F59A23;
  5321. }
  5322. #u1827 .text {
  5323. position:absolute;
  5324. align-self:center;
  5325. padding:2px 2px 2px 2px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u1827_text {
  5330. border-width:0px;
  5331. white-space:nowrap;
  5332. text-transform:none;
  5333. }
  5334. #u1828_div {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:47px;
  5340. height:40px;
  5341. background:inherit;
  5342. background-color:rgba(255, 255, 255, 0);
  5343. border:none;
  5344. border-left:0px;
  5345. border-top:0px;
  5346. border-right:0px;
  5347. border-radius:0px;
  5348. border-bottom-right-radius:0px;
  5349. border-bottom-left-radius:0px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:14px;
  5357. color:#FFFFFF;
  5358. }
  5359. #u1828 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:317px;
  5363. top:943px;
  5364. width:47px;
  5365. height:40px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:14px;
  5371. color:#FFFFFF;
  5372. }
  5373. #u1828 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:2px 2px 2px 2px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u1828_text {
  5381. border-width:0px;
  5382. white-space:nowrap;
  5383. text-transform:none;
  5384. }
  5385. #u1829_div {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:47px;
  5391. height:40px;
  5392. background:inherit;
  5393. background-color:rgba(255, 255, 255, 0);
  5394. border:none;
  5395. border-left:0px;
  5396. border-top:0px;
  5397. border-right:0px;
  5398. border-radius:0px;
  5399. border-bottom-right-radius:0px;
  5400. border-bottom-left-radius:0px;
  5401. -moz-box-shadow:none;
  5402. -webkit-box-shadow:none;
  5403. box-shadow:none;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:14px;
  5408. color:#FFFFFF;
  5409. }
  5410. #u1829 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:395px;
  5414. top:943px;
  5415. width:47px;
  5416. height:40px;
  5417. display:flex;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:14px;
  5422. color:#FFFFFF;
  5423. }
  5424. #u1829 .text {
  5425. position:absolute;
  5426. align-self:center;
  5427. padding:2px 2px 2px 2px;
  5428. box-sizing:border-box;
  5429. width:100%;
  5430. }
  5431. #u1829_text {
  5432. border-width:0px;
  5433. white-space:nowrap;
  5434. text-transform:none;
  5435. }
  5436. #u1830 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:252px;
  5440. top:993px;
  5441. width:944px;
  5442. height:366px;
  5443. }
  5444. #u1831_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:118px;
  5450. height:39px;
  5451. }
  5452. #u1831 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:118px;
  5458. height:39px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:12px;
  5464. color:#FFFFFF;
  5465. }
  5466. #u1831 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u1831_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. }
  5478. #u1832_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:118px;
  5484. height:39px;
  5485. }
  5486. #u1832 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:118px;
  5490. top:0px;
  5491. width:118px;
  5492. height:39px;
  5493. display:flex;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:12px;
  5498. color:#FFFFFF;
  5499. }
  5500. #u1832 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 0px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u1832_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. }
  5512. #u1833_img {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:118px;
  5518. height:39px;
  5519. }
  5520. #u1833 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:236px;
  5524. top:0px;
  5525. width:118px;
  5526. height:39px;
  5527. display:flex;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:12px;
  5532. color:#FFFFFF;
  5533. }
  5534. #u1833 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:2px 2px 2px 0px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u1833_text {
  5542. border-width:0px;
  5543. word-wrap:break-word;
  5544. text-transform:none;
  5545. }
  5546. #u1834_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:118px;
  5552. height:39px;
  5553. }
  5554. #u1834 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:354px;
  5558. top:0px;
  5559. width:118px;
  5560. height:39px;
  5561. display:flex;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:12px;
  5566. color:#FFFFFF;
  5567. }
  5568. #u1834 .text {
  5569. position:absolute;
  5570. align-self:center;
  5571. padding:2px 2px 2px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u1834_text {
  5576. border-width:0px;
  5577. word-wrap:break-word;
  5578. text-transform:none;
  5579. }
  5580. #u1835_img {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:118px;
  5586. height:39px;
  5587. }
  5588. #u1835 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:472px;
  5592. top:0px;
  5593. width:118px;
  5594. height:39px;
  5595. display:flex;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:12px;
  5600. color:#FFFFFF;
  5601. }
  5602. #u1835 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 0px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u1835_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. }
  5614. #u1836_img {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:118px;
  5620. height:39px;
  5621. }
  5622. #u1836 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:590px;
  5626. top:0px;
  5627. width:118px;
  5628. height:39px;
  5629. display:flex;
  5630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:12px;
  5634. color:#FFFFFF;
  5635. }
  5636. #u1836 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u1836_text {
  5644. border-width:0px;
  5645. word-wrap:break-word;
  5646. text-transform:none;
  5647. }
  5648. #u1837_img {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:118px;
  5654. height:39px;
  5655. }
  5656. #u1837 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:708px;
  5660. top:0px;
  5661. width:118px;
  5662. height:39px;
  5663. display:flex;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:12px;
  5668. color:#FFFFFF;
  5669. }
  5670. #u1837 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 2px 2px 0px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u1837_text {
  5678. border-width:0px;
  5679. word-wrap:break-word;
  5680. text-transform:none;
  5681. }
  5682. #u1838_img {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:118px;
  5688. height:39px;
  5689. }
  5690. #u1838 {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:826px;
  5694. top:0px;
  5695. width:118px;
  5696. height:39px;
  5697. display:flex;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:12px;
  5702. color:#FFFFFF;
  5703. }
  5704. #u1838 .text {
  5705. position:absolute;
  5706. align-self:center;
  5707. padding:2px 2px 2px 0px;
  5708. box-sizing:border-box;
  5709. width:100%;
  5710. }
  5711. #u1838_text {
  5712. border-width:0px;
  5713. word-wrap:break-word;
  5714. text-transform:none;
  5715. }
  5716. #u1839_img {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:118px;
  5722. height:38px;
  5723. }
  5724. #u1839 {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:39px;
  5729. width:118px;
  5730. height:38px;
  5731. display:flex;
  5732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5733. font-weight:400;
  5734. font-style:normal;
  5735. font-size:12px;
  5736. color:#FFFFFF;
  5737. }
  5738. #u1839 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 0px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u1839_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. visibility:hidden;
  5750. }
  5751. #u1840_img {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:118px;
  5757. height:38px;
  5758. }
  5759. #u1840 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:118px;
  5763. top:39px;
  5764. width:118px;
  5765. height:38px;
  5766. display:flex;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:12px;
  5771. color:#FFFFFF;
  5772. }
  5773. #u1840 .text {
  5774. position:absolute;
  5775. align-self:center;
  5776. padding:2px 2px 2px 0px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u1840_text {
  5781. border-width:0px;
  5782. word-wrap:break-word;
  5783. text-transform:none;
  5784. visibility:hidden;
  5785. }
  5786. #u1841_img {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:118px;
  5792. height:38px;
  5793. }
  5794. #u1841 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:236px;
  5798. top:39px;
  5799. width:118px;
  5800. height:38px;
  5801. display:flex;
  5802. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:12px;
  5806. color:#FFFFFF;
  5807. }
  5808. #u1841 .text {
  5809. position:absolute;
  5810. align-self:center;
  5811. padding:2px 2px 2px 0px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u1841_text {
  5816. border-width:0px;
  5817. word-wrap:break-word;
  5818. text-transform:none;
  5819. visibility:hidden;
  5820. }
  5821. #u1842_img {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:118px;
  5827. height:38px;
  5828. }
  5829. #u1842 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:354px;
  5833. top:39px;
  5834. width:118px;
  5835. height:38px;
  5836. display:flex;
  5837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5838. font-weight:400;
  5839. font-style:normal;
  5840. font-size:12px;
  5841. color:#FFFFFF;
  5842. }
  5843. #u1842 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:2px 2px 2px 0px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u1842_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. visibility:hidden;
  5855. }
  5856. #u1843_img {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:118px;
  5862. height:38px;
  5863. }
  5864. #u1843 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:472px;
  5868. top:39px;
  5869. width:118px;
  5870. height:38px;
  5871. display:flex;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:12px;
  5876. color:#FFFFFF;
  5877. }
  5878. #u1843 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 0px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u1843_text {
  5886. border-width:0px;
  5887. word-wrap:break-word;
  5888. text-transform:none;
  5889. visibility:hidden;
  5890. }
  5891. #u1844_img {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:118px;
  5897. height:38px;
  5898. }
  5899. #u1844 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:590px;
  5903. top:39px;
  5904. width:118px;
  5905. height:38px;
  5906. display:flex;
  5907. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:12px;
  5911. color:#FFFFFF;
  5912. }
  5913. #u1844 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 2px 2px 0px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u1844_text {
  5921. border-width:0px;
  5922. word-wrap:break-word;
  5923. text-transform:none;
  5924. visibility:hidden;
  5925. }
  5926. #u1845_img {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:118px;
  5932. height:38px;
  5933. }
  5934. #u1845 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:708px;
  5938. top:39px;
  5939. width:118px;
  5940. height:38px;
  5941. display:flex;
  5942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:12px;
  5946. color:#FFFFFF;
  5947. }
  5948. #u1845 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:2px 2px 2px 0px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u1845_text {
  5956. border-width:0px;
  5957. word-wrap:break-word;
  5958. text-transform:none;
  5959. visibility:hidden;
  5960. }
  5961. #u1846_img {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:118px;
  5967. height:38px;
  5968. }
  5969. #u1846 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:826px;
  5973. top:39px;
  5974. width:118px;
  5975. height:38px;
  5976. display:flex;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:12px;
  5981. color:#FFFFFF;
  5982. }
  5983. #u1846 .text {
  5984. position:absolute;
  5985. align-self:center;
  5986. padding:2px 2px 2px 0px;
  5987. box-sizing:border-box;
  5988. width:100%;
  5989. }
  5990. #u1846_text {
  5991. border-width:0px;
  5992. word-wrap:break-word;
  5993. text-transform:none;
  5994. visibility:hidden;
  5995. }
  5996. #u1847_img {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:118px;
  6002. height:38px;
  6003. }
  6004. #u1847 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:77px;
  6009. width:118px;
  6010. height:38px;
  6011. display:flex;
  6012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:12px;
  6016. color:#FFFFFF;
  6017. }
  6018. #u1847 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:2px 2px 2px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u1847_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. visibility:hidden;
  6030. }
  6031. #u1848_img {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:118px;
  6037. height:38px;
  6038. }
  6039. #u1848 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:118px;
  6043. top:77px;
  6044. width:118px;
  6045. height:38px;
  6046. display:flex;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:12px;
  6051. color:#FFFFFF;
  6052. }
  6053. #u1848 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 0px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u1848_text {
  6061. border-width:0px;
  6062. word-wrap:break-word;
  6063. text-transform:none;
  6064. visibility:hidden;
  6065. }
  6066. #u1849_img {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:118px;
  6072. height:38px;
  6073. }
  6074. #u1849 {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:236px;
  6078. top:77px;
  6079. width:118px;
  6080. height:38px;
  6081. display:flex;
  6082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:12px;
  6086. color:#FFFFFF;
  6087. }
  6088. #u1849 .text {
  6089. position:absolute;
  6090. align-self:center;
  6091. padding:2px 2px 2px 0px;
  6092. box-sizing:border-box;
  6093. width:100%;
  6094. }
  6095. #u1849_text {
  6096. border-width:0px;
  6097. word-wrap:break-word;
  6098. text-transform:none;
  6099. visibility:hidden;
  6100. }
  6101. #u1850_img {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:118px;
  6107. height:38px;
  6108. }
  6109. #u1850 {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:354px;
  6113. top:77px;
  6114. width:118px;
  6115. height:38px;
  6116. display:flex;
  6117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6118. font-weight:400;
  6119. font-style:normal;
  6120. font-size:12px;
  6121. color:#FFFFFF;
  6122. }
  6123. #u1850 .text {
  6124. position:absolute;
  6125. align-self:center;
  6126. padding:2px 2px 2px 0px;
  6127. box-sizing:border-box;
  6128. width:100%;
  6129. }
  6130. #u1850_text {
  6131. border-width:0px;
  6132. word-wrap:break-word;
  6133. text-transform:none;
  6134. visibility:hidden;
  6135. }
  6136. #u1851_img {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:118px;
  6142. height:38px;
  6143. }
  6144. #u1851 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:472px;
  6148. top:77px;
  6149. width:118px;
  6150. height:38px;
  6151. display:flex;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:12px;
  6156. color:#FFFFFF;
  6157. }
  6158. #u1851 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 0px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u1851_text {
  6166. border-width:0px;
  6167. word-wrap:break-word;
  6168. text-transform:none;
  6169. visibility:hidden;
  6170. }
  6171. #u1852_img {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:118px;
  6177. height:38px;
  6178. }
  6179. #u1852 {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:590px;
  6183. top:77px;
  6184. width:118px;
  6185. height:38px;
  6186. display:flex;
  6187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:12px;
  6191. color:#FFFFFF;
  6192. }
  6193. #u1852 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:2px 2px 2px 0px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u1852_text {
  6201. border-width:0px;
  6202. word-wrap:break-word;
  6203. text-transform:none;
  6204. visibility:hidden;
  6205. }
  6206. #u1853_img {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:118px;
  6212. height:38px;
  6213. }
  6214. #u1853 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:708px;
  6218. top:77px;
  6219. width:118px;
  6220. height:38px;
  6221. display:flex;
  6222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:12px;
  6226. color:#FFFFFF;
  6227. }
  6228. #u1853 .text {
  6229. position:absolute;
  6230. align-self:center;
  6231. padding:2px 2px 2px 0px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u1853_text {
  6236. border-width:0px;
  6237. word-wrap:break-word;
  6238. text-transform:none;
  6239. visibility:hidden;
  6240. }
  6241. #u1854_img {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:118px;
  6247. height:38px;
  6248. }
  6249. #u1854 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:826px;
  6253. top:77px;
  6254. width:118px;
  6255. height:38px;
  6256. display:flex;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:12px;
  6261. color:#FFFFFF;
  6262. }
  6263. #u1854 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:2px 2px 2px 0px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u1854_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. visibility:hidden;
  6275. }
  6276. #u1855_img {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:118px;
  6282. height:38px;
  6283. }
  6284. #u1855 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:115px;
  6289. width:118px;
  6290. height:38px;
  6291. display:flex;
  6292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:12px;
  6296. color:#FFFFFF;
  6297. }
  6298. #u1855 .text {
  6299. position:absolute;
  6300. align-self:center;
  6301. padding:2px 2px 2px 0px;
  6302. box-sizing:border-box;
  6303. width:100%;
  6304. }
  6305. #u1855_text {
  6306. border-width:0px;
  6307. word-wrap:break-word;
  6308. text-transform:none;
  6309. visibility:hidden;
  6310. }
  6311. #u1856_img {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:0px;
  6315. top:0px;
  6316. width:118px;
  6317. height:38px;
  6318. }
  6319. #u1856 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:118px;
  6323. top:115px;
  6324. width:118px;
  6325. height:38px;
  6326. display:flex;
  6327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:12px;
  6331. color:#FFFFFF;
  6332. }
  6333. #u1856 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:2px 2px 2px 0px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u1856_text {
  6341. border-width:0px;
  6342. word-wrap:break-word;
  6343. text-transform:none;
  6344. visibility:hidden;
  6345. }
  6346. #u1857_img {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:118px;
  6352. height:38px;
  6353. }
  6354. #u1857 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:236px;
  6358. top:115px;
  6359. width:118px;
  6360. height:38px;
  6361. display:flex;
  6362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. font-size:12px;
  6366. color:#FFFFFF;
  6367. }
  6368. #u1857 .text {
  6369. position:absolute;
  6370. align-self:center;
  6371. padding:2px 2px 2px 0px;
  6372. box-sizing:border-box;
  6373. width:100%;
  6374. }
  6375. #u1857_text {
  6376. border-width:0px;
  6377. word-wrap:break-word;
  6378. text-transform:none;
  6379. visibility:hidden;
  6380. }
  6381. #u1858_img {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:118px;
  6387. height:38px;
  6388. }
  6389. #u1858 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:354px;
  6393. top:115px;
  6394. width:118px;
  6395. height:38px;
  6396. display:flex;
  6397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:12px;
  6401. color:#FFFFFF;
  6402. }
  6403. #u1858 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 0px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u1858_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. visibility:hidden;
  6415. }
  6416. #u1859_img {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:118px;
  6422. height:38px;
  6423. }
  6424. #u1859 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:472px;
  6428. top:115px;
  6429. width:118px;
  6430. height:38px;
  6431. display:flex;
  6432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6433. font-weight:400;
  6434. font-style:normal;
  6435. font-size:12px;
  6436. color:#FFFFFF;
  6437. }
  6438. #u1859 .text {
  6439. position:absolute;
  6440. align-self:center;
  6441. padding:2px 2px 2px 0px;
  6442. box-sizing:border-box;
  6443. width:100%;
  6444. }
  6445. #u1859_text {
  6446. border-width:0px;
  6447. word-wrap:break-word;
  6448. text-transform:none;
  6449. visibility:hidden;
  6450. }
  6451. #u1860_img {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:118px;
  6457. height:38px;
  6458. }
  6459. #u1860 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:590px;
  6463. top:115px;
  6464. width:118px;
  6465. height:38px;
  6466. display:flex;
  6467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:12px;
  6471. color:#FFFFFF;
  6472. }
  6473. #u1860 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:2px 2px 2px 0px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u1860_text {
  6481. border-width:0px;
  6482. word-wrap:break-word;
  6483. text-transform:none;
  6484. visibility:hidden;
  6485. }
  6486. #u1861_img {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:118px;
  6492. height:38px;
  6493. }
  6494. #u1861 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:708px;
  6498. top:115px;
  6499. width:118px;
  6500. height:38px;
  6501. display:flex;
  6502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:12px;
  6506. color:#FFFFFF;
  6507. }
  6508. #u1861 .text {
  6509. position:absolute;
  6510. align-self:center;
  6511. padding:2px 2px 2px 0px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u1861_text {
  6516. border-width:0px;
  6517. word-wrap:break-word;
  6518. text-transform:none;
  6519. visibility:hidden;
  6520. }
  6521. #u1862_img {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:118px;
  6527. height:38px;
  6528. }
  6529. #u1862 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:826px;
  6533. top:115px;
  6534. width:118px;
  6535. height:38px;
  6536. display:flex;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:12px;
  6541. color:#FFFFFF;
  6542. }
  6543. #u1862 .text {
  6544. position:absolute;
  6545. align-self:center;
  6546. padding:2px 2px 2px 0px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u1862_text {
  6551. border-width:0px;
  6552. word-wrap:break-word;
  6553. text-transform:none;
  6554. visibility:hidden;
  6555. }
  6556. #u1863_img {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:118px;
  6562. height:38px;
  6563. }
  6564. #u1863 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:153px;
  6569. width:118px;
  6570. height:38px;
  6571. display:flex;
  6572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6573. font-weight:400;
  6574. font-style:normal;
  6575. font-size:12px;
  6576. color:#FFFFFF;
  6577. }
  6578. #u1863 .text {
  6579. position:absolute;
  6580. align-self:center;
  6581. padding:2px 2px 2px 0px;
  6582. box-sizing:border-box;
  6583. width:100%;
  6584. }
  6585. #u1863_text {
  6586. border-width:0px;
  6587. word-wrap:break-word;
  6588. text-transform:none;
  6589. visibility:hidden;
  6590. }
  6591. #u1864_img {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:118px;
  6597. height:38px;
  6598. }
  6599. #u1864 {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:118px;
  6603. top:153px;
  6604. width:118px;
  6605. height:38px;
  6606. display:flex;
  6607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. font-size:12px;
  6611. color:#FFFFFF;
  6612. }
  6613. #u1864 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:2px 2px 2px 0px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u1864_text {
  6621. border-width:0px;
  6622. word-wrap:break-word;
  6623. text-transform:none;
  6624. visibility:hidden;
  6625. }
  6626. #u1865_img {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:118px;
  6632. height:38px;
  6633. }
  6634. #u1865 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:236px;
  6638. top:153px;
  6639. width:118px;
  6640. height:38px;
  6641. display:flex;
  6642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:12px;
  6646. color:#FFFFFF;
  6647. }
  6648. #u1865 .text {
  6649. position:absolute;
  6650. align-self:center;
  6651. padding:2px 2px 2px 0px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u1865_text {
  6656. border-width:0px;
  6657. word-wrap:break-word;
  6658. text-transform:none;
  6659. visibility:hidden;
  6660. }
  6661. #u1866_img {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:118px;
  6667. height:38px;
  6668. }
  6669. #u1866 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:354px;
  6673. top:153px;
  6674. width:118px;
  6675. height:38px;
  6676. display:flex;
  6677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:12px;
  6681. color:#FFFFFF;
  6682. }
  6683. #u1866 .text {
  6684. position:absolute;
  6685. align-self:center;
  6686. padding:2px 2px 2px 0px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u1866_text {
  6691. border-width:0px;
  6692. word-wrap:break-word;
  6693. text-transform:none;
  6694. visibility:hidden;
  6695. }
  6696. #u1867_img {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:0px;
  6700. top:0px;
  6701. width:118px;
  6702. height:38px;
  6703. }
  6704. #u1867 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:472px;
  6708. top:153px;
  6709. width:118px;
  6710. height:38px;
  6711. display:flex;
  6712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. font-size:12px;
  6716. color:#FFFFFF;
  6717. }
  6718. #u1867 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 2px 2px 0px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u1867_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u1868_img {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:118px;
  6737. height:38px;
  6738. }
  6739. #u1868 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:590px;
  6743. top:153px;
  6744. width:118px;
  6745. height:38px;
  6746. display:flex;
  6747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:12px;
  6751. color:#FFFFFF;
  6752. }
  6753. #u1868 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u1868_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. visibility:hidden;
  6765. }
  6766. #u1869_img {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:0px;
  6770. top:0px;
  6771. width:118px;
  6772. height:38px;
  6773. }
  6774. #u1869 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:708px;
  6778. top:153px;
  6779. width:118px;
  6780. height:38px;
  6781. display:flex;
  6782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:12px;
  6786. color:#FFFFFF;
  6787. }
  6788. #u1869 .text {
  6789. position:absolute;
  6790. align-self:center;
  6791. padding:2px 2px 2px 0px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u1869_text {
  6796. border-width:0px;
  6797. word-wrap:break-word;
  6798. text-transform:none;
  6799. visibility:hidden;
  6800. }
  6801. #u1870_img {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:118px;
  6807. height:38px;
  6808. }
  6809. #u1870 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:826px;
  6813. top:153px;
  6814. width:118px;
  6815. height:38px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:12px;
  6821. color:#FFFFFF;
  6822. }
  6823. #u1870 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:2px 2px 2px 0px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u1870_text {
  6831. border-width:0px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. visibility:hidden;
  6835. }
  6836. #u1871_img {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:118px;
  6842. height:35px;
  6843. }
  6844. #u1871 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:191px;
  6849. width:118px;
  6850. height:35px;
  6851. display:flex;
  6852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6853. font-weight:400;
  6854. font-style:normal;
  6855. font-size:12px;
  6856. color:#FFFFFF;
  6857. }
  6858. #u1871 .text {
  6859. position:absolute;
  6860. align-self:center;
  6861. padding:2px 2px 2px 0px;
  6862. box-sizing:border-box;
  6863. width:100%;
  6864. }
  6865. #u1871_text {
  6866. border-width:0px;
  6867. word-wrap:break-word;
  6868. text-transform:none;
  6869. visibility:hidden;
  6870. }
  6871. #u1872_img {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:118px;
  6877. height:35px;
  6878. }
  6879. #u1872 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:118px;
  6883. top:191px;
  6884. width:118px;
  6885. height:35px;
  6886. display:flex;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:12px;
  6891. color:#FFFFFF;
  6892. }
  6893. #u1872 .text {
  6894. position:absolute;
  6895. align-self:center;
  6896. padding:2px 2px 2px 0px;
  6897. box-sizing:border-box;
  6898. width:100%;
  6899. }
  6900. #u1872_text {
  6901. border-width:0px;
  6902. word-wrap:break-word;
  6903. text-transform:none;
  6904. visibility:hidden;
  6905. }
  6906. #u1873_img {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:118px;
  6912. height:35px;
  6913. }
  6914. #u1873 {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:236px;
  6918. top:191px;
  6919. width:118px;
  6920. height:35px;
  6921. display:flex;
  6922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6923. font-weight:400;
  6924. font-style:normal;
  6925. font-size:12px;
  6926. color:#FFFFFF;
  6927. }
  6928. #u1873 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:2px 2px 2px 0px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u1873_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. visibility:hidden;
  6940. }
  6941. #u1874_img {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:118px;
  6947. height:35px;
  6948. }
  6949. #u1874 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:354px;
  6953. top:191px;
  6954. width:118px;
  6955. height:35px;
  6956. display:flex;
  6957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:12px;
  6961. color:#FFFFFF;
  6962. }
  6963. #u1874 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:2px 2px 2px 0px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u1874_text {
  6971. border-width:0px;
  6972. word-wrap:break-word;
  6973. text-transform:none;
  6974. visibility:hidden;
  6975. }
  6976. #u1875_img {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:118px;
  6982. height:35px;
  6983. }
  6984. #u1875 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:472px;
  6988. top:191px;
  6989. width:118px;
  6990. height:35px;
  6991. display:flex;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. font-size:12px;
  6996. color:#FFFFFF;
  6997. }
  6998. #u1875 .text {
  6999. position:absolute;
  7000. align-self:center;
  7001. padding:2px 2px 2px 0px;
  7002. box-sizing:border-box;
  7003. width:100%;
  7004. }
  7005. #u1875_text {
  7006. border-width:0px;
  7007. word-wrap:break-word;
  7008. text-transform:none;
  7009. visibility:hidden;
  7010. }
  7011. #u1876_img {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:118px;
  7017. height:35px;
  7018. }
  7019. #u1876 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:590px;
  7023. top:191px;
  7024. width:118px;
  7025. height:35px;
  7026. display:flex;
  7027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:12px;
  7031. color:#FFFFFF;
  7032. }
  7033. #u1876 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:2px 2px 2px 0px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u1876_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. visibility:hidden;
  7045. }
  7046. #u1877_img {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:118px;
  7052. height:35px;
  7053. }
  7054. #u1877 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:708px;
  7058. top:191px;
  7059. width:118px;
  7060. height:35px;
  7061. display:flex;
  7062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:12px;
  7066. color:#FFFFFF;
  7067. }
  7068. #u1877 .text {
  7069. position:absolute;
  7070. align-self:center;
  7071. padding:2px 2px 2px 0px;
  7072. box-sizing:border-box;
  7073. width:100%;
  7074. }
  7075. #u1877_text {
  7076. border-width:0px;
  7077. word-wrap:break-word;
  7078. text-transform:none;
  7079. visibility:hidden;
  7080. }
  7081. #u1878_img {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:118px;
  7087. height:35px;
  7088. }
  7089. #u1878 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:826px;
  7093. top:191px;
  7094. width:118px;
  7095. height:35px;
  7096. display:flex;
  7097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:12px;
  7101. color:#FFFFFF;
  7102. }
  7103. #u1878 .text {
  7104. position:absolute;
  7105. align-self:center;
  7106. padding:2px 2px 2px 0px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u1878_text {
  7111. border-width:0px;
  7112. word-wrap:break-word;
  7113. text-transform:none;
  7114. visibility:hidden;
  7115. }
  7116. #u1879_img {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:118px;
  7122. height:35px;
  7123. }
  7124. #u1879 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:226px;
  7129. width:118px;
  7130. height:35px;
  7131. display:flex;
  7132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. font-size:12px;
  7136. color:#FFFFFF;
  7137. }
  7138. #u1879 .text {
  7139. position:absolute;
  7140. align-self:center;
  7141. padding:2px 2px 2px 0px;
  7142. box-sizing:border-box;
  7143. width:100%;
  7144. }
  7145. #u1879_text {
  7146. border-width:0px;
  7147. word-wrap:break-word;
  7148. text-transform:none;
  7149. visibility:hidden;
  7150. }
  7151. #u1880_img {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:118px;
  7157. height:35px;
  7158. }
  7159. #u1880 {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:118px;
  7163. top:226px;
  7164. width:118px;
  7165. height:35px;
  7166. display:flex;
  7167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7168. font-weight:400;
  7169. font-style:normal;
  7170. font-size:12px;
  7171. color:#FFFFFF;
  7172. }
  7173. #u1880 .text {
  7174. position:absolute;
  7175. align-self:center;
  7176. padding:2px 2px 2px 0px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u1880_text {
  7181. border-width:0px;
  7182. word-wrap:break-word;
  7183. text-transform:none;
  7184. visibility:hidden;
  7185. }
  7186. #u1881_img {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:118px;
  7192. height:35px;
  7193. }
  7194. #u1881 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:236px;
  7198. top:226px;
  7199. width:118px;
  7200. height:35px;
  7201. display:flex;
  7202. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:12px;
  7206. color:#FFFFFF;
  7207. }
  7208. #u1881 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u1881_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. visibility:hidden;
  7220. }
  7221. #u1882_img {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:118px;
  7227. height:35px;
  7228. }
  7229. #u1882 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:354px;
  7233. top:226px;
  7234. width:118px;
  7235. height:35px;
  7236. display:flex;
  7237. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:12px;
  7241. color:#FFFFFF;
  7242. }
  7243. #u1882 .text {
  7244. position:absolute;
  7245. align-self:center;
  7246. padding:2px 2px 2px 0px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u1882_text {
  7251. border-width:0px;
  7252. word-wrap:break-word;
  7253. text-transform:none;
  7254. visibility:hidden;
  7255. }
  7256. #u1883_img {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:118px;
  7262. height:35px;
  7263. }
  7264. #u1883 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:472px;
  7268. top:226px;
  7269. width:118px;
  7270. height:35px;
  7271. display:flex;
  7272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:12px;
  7276. color:#FFFFFF;
  7277. }
  7278. #u1883 .text {
  7279. position:absolute;
  7280. align-self:center;
  7281. padding:2px 2px 2px 0px;
  7282. box-sizing:border-box;
  7283. width:100%;
  7284. }
  7285. #u1883_text {
  7286. border-width:0px;
  7287. word-wrap:break-word;
  7288. text-transform:none;
  7289. visibility:hidden;
  7290. }
  7291. #u1884_img {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:118px;
  7297. height:35px;
  7298. }
  7299. #u1884 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:590px;
  7303. top:226px;
  7304. width:118px;
  7305. height:35px;
  7306. display:flex;
  7307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:12px;
  7311. color:#FFFFFF;
  7312. }
  7313. #u1884 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 0px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u1884_text {
  7321. border-width:0px;
  7322. word-wrap:break-word;
  7323. text-transform:none;
  7324. visibility:hidden;
  7325. }
  7326. #u1885_img {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:118px;
  7332. height:35px;
  7333. }
  7334. #u1885 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:708px;
  7338. top:226px;
  7339. width:118px;
  7340. height:35px;
  7341. display:flex;
  7342. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:12px;
  7346. color:#FFFFFF;
  7347. }
  7348. #u1885 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u1885_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. visibility:hidden;
  7360. }
  7361. #u1886_img {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:118px;
  7367. height:35px;
  7368. }
  7369. #u1886 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:826px;
  7373. top:226px;
  7374. width:118px;
  7375. height:35px;
  7376. display:flex;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:12px;
  7381. color:#FFFFFF;
  7382. }
  7383. #u1886 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:2px 2px 2px 0px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u1886_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. visibility:hidden;
  7395. }
  7396. #u1887_img {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:118px;
  7402. height:35px;
  7403. }
  7404. #u1887 {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:0px;
  7408. top:261px;
  7409. width:118px;
  7410. height:35px;
  7411. display:flex;
  7412. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:12px;
  7416. color:#FFFFFF;
  7417. }
  7418. #u1887 .text {
  7419. position:absolute;
  7420. align-self:center;
  7421. padding:2px 2px 2px 0px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u1887_text {
  7426. border-width:0px;
  7427. word-wrap:break-word;
  7428. text-transform:none;
  7429. visibility:hidden;
  7430. }
  7431. #u1888_img {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:118px;
  7437. height:35px;
  7438. }
  7439. #u1888 {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:118px;
  7443. top:261px;
  7444. width:118px;
  7445. height:35px;
  7446. display:flex;
  7447. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:12px;
  7451. color:#FFFFFF;
  7452. }
  7453. #u1888 .text {
  7454. position:absolute;
  7455. align-self:center;
  7456. padding:2px 2px 2px 0px;
  7457. box-sizing:border-box;
  7458. width:100%;
  7459. }
  7460. #u1888_text {
  7461. border-width:0px;
  7462. word-wrap:break-word;
  7463. text-transform:none;
  7464. visibility:hidden;
  7465. }
  7466. #u1889_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:118px;
  7472. height:35px;
  7473. }
  7474. #u1889 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:236px;
  7478. top:261px;
  7479. width:118px;
  7480. height:35px;
  7481. display:flex;
  7482. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:12px;
  7486. color:#FFFFFF;
  7487. }
  7488. #u1889 .text {
  7489. position:absolute;
  7490. align-self:center;
  7491. padding:2px 2px 2px 0px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u1889_text {
  7496. border-width:0px;
  7497. word-wrap:break-word;
  7498. text-transform:none;
  7499. visibility:hidden;
  7500. }
  7501. #u1890_img {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:118px;
  7507. height:35px;
  7508. }
  7509. #u1890 {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:354px;
  7513. top:261px;
  7514. width:118px;
  7515. height:35px;
  7516. display:flex;
  7517. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:12px;
  7521. color:#FFFFFF;
  7522. }
  7523. #u1890 .text {
  7524. position:absolute;
  7525. align-self:center;
  7526. padding:2px 2px 2px 0px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u1890_text {
  7531. border-width:0px;
  7532. word-wrap:break-word;
  7533. text-transform:none;
  7534. visibility:hidden;
  7535. }
  7536. #u1891_img {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:118px;
  7542. height:35px;
  7543. }
  7544. #u1891 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:472px;
  7548. top:261px;
  7549. width:118px;
  7550. height:35px;
  7551. display:flex;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:12px;
  7556. color:#FFFFFF;
  7557. }
  7558. #u1891 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:2px 2px 2px 0px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u1891_text {
  7566. border-width:0px;
  7567. word-wrap:break-word;
  7568. text-transform:none;
  7569. visibility:hidden;
  7570. }
  7571. #u1892_img {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:118px;
  7577. height:35px;
  7578. }
  7579. #u1892 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:590px;
  7583. top:261px;
  7584. width:118px;
  7585. height:35px;
  7586. display:flex;
  7587. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:12px;
  7591. color:#FFFFFF;
  7592. }
  7593. #u1892 .text {
  7594. position:absolute;
  7595. align-self:center;
  7596. padding:2px 2px 2px 0px;
  7597. box-sizing:border-box;
  7598. width:100%;
  7599. }
  7600. #u1892_text {
  7601. border-width:0px;
  7602. word-wrap:break-word;
  7603. text-transform:none;
  7604. visibility:hidden;
  7605. }
  7606. #u1893_img {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:118px;
  7612. height:35px;
  7613. }
  7614. #u1893 {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:708px;
  7618. top:261px;
  7619. width:118px;
  7620. height:35px;
  7621. display:flex;
  7622. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. font-size:12px;
  7626. color:#FFFFFF;
  7627. }
  7628. #u1893 .text {
  7629. position:absolute;
  7630. align-self:center;
  7631. padding:2px 2px 2px 0px;
  7632. box-sizing:border-box;
  7633. width:100%;
  7634. }
  7635. #u1893_text {
  7636. border-width:0px;
  7637. word-wrap:break-word;
  7638. text-transform:none;
  7639. visibility:hidden;
  7640. }
  7641. #u1894_img {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:118px;
  7647. height:35px;
  7648. }
  7649. #u1894 {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:826px;
  7653. top:261px;
  7654. width:118px;
  7655. height:35px;
  7656. display:flex;
  7657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7658. font-weight:400;
  7659. font-style:normal;
  7660. font-size:12px;
  7661. color:#FFFFFF;
  7662. }
  7663. #u1894 .text {
  7664. position:absolute;
  7665. align-self:center;
  7666. padding:2px 2px 2px 0px;
  7667. box-sizing:border-box;
  7668. width:100%;
  7669. }
  7670. #u1894_text {
  7671. border-width:0px;
  7672. word-wrap:break-word;
  7673. text-transform:none;
  7674. visibility:hidden;
  7675. }
  7676. #u1895_img {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:118px;
  7682. height:35px;
  7683. }
  7684. #u1895 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:296px;
  7689. width:118px;
  7690. height:35px;
  7691. display:flex;
  7692. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:12px;
  7696. color:#FFFFFF;
  7697. }
  7698. #u1895 .text {
  7699. position:absolute;
  7700. align-self:center;
  7701. padding:2px 2px 2px 0px;
  7702. box-sizing:border-box;
  7703. width:100%;
  7704. }
  7705. #u1895_text {
  7706. border-width:0px;
  7707. word-wrap:break-word;
  7708. text-transform:none;
  7709. visibility:hidden;
  7710. }
  7711. #u1896_img {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:118px;
  7717. height:35px;
  7718. }
  7719. #u1896 {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:118px;
  7723. top:296px;
  7724. width:118px;
  7725. height:35px;
  7726. display:flex;
  7727. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:12px;
  7731. color:#FFFFFF;
  7732. }
  7733. #u1896 .text {
  7734. position:absolute;
  7735. align-self:center;
  7736. padding:2px 2px 2px 0px;
  7737. box-sizing:border-box;
  7738. width:100%;
  7739. }
  7740. #u1896_text {
  7741. border-width:0px;
  7742. word-wrap:break-word;
  7743. text-transform:none;
  7744. visibility:hidden;
  7745. }
  7746. #u1897_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:118px;
  7752. height:35px;
  7753. }
  7754. #u1897 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:236px;
  7758. top:296px;
  7759. width:118px;
  7760. height:35px;
  7761. display:flex;
  7762. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:12px;
  7766. color:#FFFFFF;
  7767. }
  7768. #u1897 .text {
  7769. position:absolute;
  7770. align-self:center;
  7771. padding:2px 2px 2px 0px;
  7772. box-sizing:border-box;
  7773. width:100%;
  7774. }
  7775. #u1897_text {
  7776. border-width:0px;
  7777. word-wrap:break-word;
  7778. text-transform:none;
  7779. visibility:hidden;
  7780. }
  7781. #u1898_img {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:118px;
  7787. height:35px;
  7788. }
  7789. #u1898 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:354px;
  7793. top:296px;
  7794. width:118px;
  7795. height:35px;
  7796. display:flex;
  7797. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7798. font-weight:400;
  7799. font-style:normal;
  7800. font-size:12px;
  7801. color:#FFFFFF;
  7802. }
  7803. #u1898 .text {
  7804. position:absolute;
  7805. align-self:center;
  7806. padding:2px 2px 2px 0px;
  7807. box-sizing:border-box;
  7808. width:100%;
  7809. }
  7810. #u1898_text {
  7811. border-width:0px;
  7812. word-wrap:break-word;
  7813. text-transform:none;
  7814. visibility:hidden;
  7815. }
  7816. #u1899_img {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:118px;
  7822. height:35px;
  7823. }
  7824. #u1899 {
  7825. border-width:0px;
  7826. position:absolute;
  7827. left:472px;
  7828. top:296px;
  7829. width:118px;
  7830. height:35px;
  7831. display:flex;
  7832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7833. font-weight:400;
  7834. font-style:normal;
  7835. font-size:12px;
  7836. color:#FFFFFF;
  7837. }
  7838. #u1899 .text {
  7839. position:absolute;
  7840. align-self:center;
  7841. padding:2px 2px 2px 0px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u1899_text {
  7846. border-width:0px;
  7847. word-wrap:break-word;
  7848. text-transform:none;
  7849. visibility:hidden;
  7850. }
  7851. #u1900_img {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:118px;
  7857. height:35px;
  7858. }
  7859. #u1900 {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:590px;
  7863. top:296px;
  7864. width:118px;
  7865. height:35px;
  7866. display:flex;
  7867. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:12px;
  7871. color:#FFFFFF;
  7872. }
  7873. #u1900 .text {
  7874. position:absolute;
  7875. align-self:center;
  7876. padding:2px 2px 2px 0px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u1900_text {
  7881. border-width:0px;
  7882. word-wrap:break-word;
  7883. text-transform:none;
  7884. visibility:hidden;
  7885. }
  7886. #u1901_img {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:0px;
  7890. top:0px;
  7891. width:118px;
  7892. height:35px;
  7893. }
  7894. #u1901 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:708px;
  7898. top:296px;
  7899. width:118px;
  7900. height:35px;
  7901. display:flex;
  7902. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:12px;
  7906. color:#FFFFFF;
  7907. }
  7908. #u1901 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u1901_text {
  7916. border-width:0px;
  7917. word-wrap:break-word;
  7918. text-transform:none;
  7919. visibility:hidden;
  7920. }
  7921. #u1902_img {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:118px;
  7927. height:35px;
  7928. }
  7929. #u1902 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:826px;
  7933. top:296px;
  7934. width:118px;
  7935. height:35px;
  7936. display:flex;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. color:#FFFFFF;
  7942. }
  7943. #u1902 .text {
  7944. position:absolute;
  7945. align-self:center;
  7946. padding:2px 2px 2px 0px;
  7947. box-sizing:border-box;
  7948. width:100%;
  7949. }
  7950. #u1902_text {
  7951. border-width:0px;
  7952. word-wrap:break-word;
  7953. text-transform:none;
  7954. visibility:hidden;
  7955. }
  7956. #u1903_img {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:0px;
  7960. top:0px;
  7961. width:118px;
  7962. height:35px;
  7963. }
  7964. #u1903 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:331px;
  7969. width:118px;
  7970. height:35px;
  7971. display:flex;
  7972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:12px;
  7976. color:#FFFFFF;
  7977. }
  7978. #u1903 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 2px 2px 0px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u1903_text {
  7986. border-width:0px;
  7987. word-wrap:break-word;
  7988. text-transform:none;
  7989. visibility:hidden;
  7990. }
  7991. #u1904_img {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:118px;
  7997. height:35px;
  7998. }
  7999. #u1904 {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:118px;
  8003. top:331px;
  8004. width:118px;
  8005. height:35px;
  8006. display:flex;
  8007. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8008. font-weight:400;
  8009. font-style:normal;
  8010. font-size:12px;
  8011. color:#FFFFFF;
  8012. }
  8013. #u1904 .text {
  8014. position:absolute;
  8015. align-self:center;
  8016. padding:2px 2px 2px 0px;
  8017. box-sizing:border-box;
  8018. width:100%;
  8019. }
  8020. #u1904_text {
  8021. border-width:0px;
  8022. word-wrap:break-word;
  8023. text-transform:none;
  8024. visibility:hidden;
  8025. }
  8026. #u1905_img {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:118px;
  8032. height:35px;
  8033. }
  8034. #u1905 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:236px;
  8038. top:331px;
  8039. width:118px;
  8040. height:35px;
  8041. display:flex;
  8042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:12px;
  8046. color:#FFFFFF;
  8047. }
  8048. #u1905 .text {
  8049. position:absolute;
  8050. align-self:center;
  8051. padding:2px 2px 2px 0px;
  8052. box-sizing:border-box;
  8053. width:100%;
  8054. }
  8055. #u1905_text {
  8056. border-width:0px;
  8057. word-wrap:break-word;
  8058. text-transform:none;
  8059. visibility:hidden;
  8060. }
  8061. #u1906_img {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:118px;
  8067. height:35px;
  8068. }
  8069. #u1906 {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:354px;
  8073. top:331px;
  8074. width:118px;
  8075. height:35px;
  8076. display:flex;
  8077. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8078. font-weight:400;
  8079. font-style:normal;
  8080. font-size:12px;
  8081. color:#FFFFFF;
  8082. }
  8083. #u1906 .text {
  8084. position:absolute;
  8085. align-self:center;
  8086. padding:2px 2px 2px 0px;
  8087. box-sizing:border-box;
  8088. width:100%;
  8089. }
  8090. #u1906_text {
  8091. border-width:0px;
  8092. word-wrap:break-word;
  8093. text-transform:none;
  8094. visibility:hidden;
  8095. }
  8096. #u1907_img {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:118px;
  8102. height:35px;
  8103. }
  8104. #u1907 {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:472px;
  8108. top:331px;
  8109. width:118px;
  8110. height:35px;
  8111. display:flex;
  8112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8113. font-weight:400;
  8114. font-style:normal;
  8115. font-size:12px;
  8116. color:#FFFFFF;
  8117. }
  8118. #u1907 .text {
  8119. position:absolute;
  8120. align-self:center;
  8121. padding:2px 2px 2px 0px;
  8122. box-sizing:border-box;
  8123. width:100%;
  8124. }
  8125. #u1907_text {
  8126. border-width:0px;
  8127. word-wrap:break-word;
  8128. text-transform:none;
  8129. visibility:hidden;
  8130. }
  8131. #u1908_img {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:118px;
  8137. height:35px;
  8138. }
  8139. #u1908 {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:590px;
  8143. top:331px;
  8144. width:118px;
  8145. height:35px;
  8146. display:flex;
  8147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8148. font-weight:400;
  8149. font-style:normal;
  8150. font-size:12px;
  8151. color:#FFFFFF;
  8152. }
  8153. #u1908 .text {
  8154. position:absolute;
  8155. align-self:center;
  8156. padding:2px 2px 2px 0px;
  8157. box-sizing:border-box;
  8158. width:100%;
  8159. }
  8160. #u1908_text {
  8161. border-width:0px;
  8162. word-wrap:break-word;
  8163. text-transform:none;
  8164. visibility:hidden;
  8165. }
  8166. #u1909_img {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:118px;
  8172. height:35px;
  8173. }
  8174. #u1909 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:708px;
  8178. top:331px;
  8179. width:118px;
  8180. height:35px;
  8181. display:flex;
  8182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:12px;
  8186. color:#FFFFFF;
  8187. }
  8188. #u1909 .text {
  8189. position:absolute;
  8190. align-self:center;
  8191. padding:2px 2px 2px 0px;
  8192. box-sizing:border-box;
  8193. width:100%;
  8194. }
  8195. #u1909_text {
  8196. border-width:0px;
  8197. word-wrap:break-word;
  8198. text-transform:none;
  8199. visibility:hidden;
  8200. }
  8201. #u1910_img {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:118px;
  8207. height:35px;
  8208. }
  8209. #u1910 {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:826px;
  8213. top:331px;
  8214. width:118px;
  8215. height:35px;
  8216. display:flex;
  8217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8218. font-weight:400;
  8219. font-style:normal;
  8220. font-size:12px;
  8221. color:#FFFFFF;
  8222. }
  8223. #u1910 .text {
  8224. position:absolute;
  8225. align-self:center;
  8226. padding:2px 2px 2px 0px;
  8227. box-sizing:border-box;
  8228. width:100%;
  8229. }
  8230. #u1910_text {
  8231. border-width:0px;
  8232. word-wrap:break-word;
  8233. text-transform:none;
  8234. visibility:hidden;
  8235. }
  8236. #u1911 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:0px;
  8240. top:0px;
  8241. width:0px;
  8242. height:0px;
  8243. }
  8244. #u1912_img {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:0px;
  8248. top:0px;
  8249. width:10px;
  8250. height:10px;
  8251. }
  8252. #u1912 {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:1155px;
  8256. top:903px;
  8257. width:10px;
  8258. height:10px;
  8259. display:flex;
  8260. }
  8261. #u1912 .text {
  8262. position:absolute;
  8263. align-self:center;
  8264. padding:2px 2px 2px 2px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u1912_text {
  8269. border-width:0px;
  8270. word-wrap:break-word;
  8271. text-transform:none;
  8272. visibility:hidden;
  8273. }
  8274. #u1913_div {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:0px;
  8278. top:0px;
  8279. width:33px;
  8280. height:40px;
  8281. background:inherit;
  8282. background-color:rgba(255, 255, 255, 0);
  8283. border:none;
  8284. border-left:0px;
  8285. border-top:0px;
  8286. border-right:0px;
  8287. border-radius:0px;
  8288. border-bottom-right-radius:0px;
  8289. border-bottom-left-radius:0px;
  8290. -moz-box-shadow:none;
  8291. -webkit-box-shadow:none;
  8292. box-shadow:none;
  8293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8294. font-weight:400;
  8295. font-style:normal;
  8296. font-size:14px;
  8297. color:#FFFFFF;
  8298. }
  8299. #u1913 {
  8300. border-width:0px;
  8301. position:absolute;
  8302. left:1173px;
  8303. top:888px;
  8304. width:33px;
  8305. height:40px;
  8306. display:flex;
  8307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8308. font-weight:400;
  8309. font-style:normal;
  8310. font-size:14px;
  8311. color:#FFFFFF;
  8312. }
  8313. #u1913 .text {
  8314. position:absolute;
  8315. align-self:center;
  8316. padding:2px 2px 2px 2px;
  8317. box-sizing:border-box;
  8318. width:100%;
  8319. }
  8320. #u1913_text {
  8321. border-width:0px;
  8322. white-space:nowrap;
  8323. text-transform:none;
  8324. }
  8325. #u1914 {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:0px;
  8331. height:0px;
  8332. }
  8333. #u1915 {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:0px;
  8339. height:0px;
  8340. }
  8341. #u1916_img {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:31px;
  8347. height:30px;
  8348. }
  8349. #u1916 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:1069px;
  8353. top:1422px;
  8354. width:31px;
  8355. height:30px;
  8356. display:flex;
  8357. font-family:'Microsoft YaHei', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:12px;
  8361. color:#FFFFFF;
  8362. }
  8363. #u1916 .text {
  8364. position:absolute;
  8365. align-self:center;
  8366. padding:2px 2px 2px 2px;
  8367. box-sizing:border-box;
  8368. width:100%;
  8369. }
  8370. #u1916_text {
  8371. border-width:0px;
  8372. word-wrap:break-word;
  8373. text-transform:none;
  8374. visibility:hidden;
  8375. }
  8376. #u1917_img {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:8px;
  8382. height:14px;
  8383. }
  8384. #u1917 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:1081px;
  8388. top:1430px;
  8389. width:8px;
  8390. height:14px;
  8391. display:flex;
  8392. font-family:'Microsoft YaHei', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:12px;
  8396. color:#FFFFFF;
  8397. }
  8398. #u1917 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:2px 2px 2px 2px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u1917_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. visibility:hidden;
  8410. }
  8411. #u1918 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:0px;
  8417. height:0px;
  8418. }
  8419. #u1919_img {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:0px;
  8423. top:0px;
  8424. width:31px;
  8425. height:30px;
  8426. }
  8427. #u1919 {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:1154px;
  8431. top:1422px;
  8432. width:31px;
  8433. height:30px;
  8434. display:flex;
  8435. font-family:'Microsoft YaHei', sans-serif;
  8436. font-weight:400;
  8437. font-style:normal;
  8438. font-size:12px;
  8439. color:#FFFFFF;
  8440. }
  8441. #u1919 .text {
  8442. position:absolute;
  8443. align-self:center;
  8444. padding:2px 2px 2px 2px;
  8445. box-sizing:border-box;
  8446. width:100%;
  8447. }
  8448. #u1919_text {
  8449. border-width:0px;
  8450. word-wrap:break-word;
  8451. text-transform:none;
  8452. visibility:hidden;
  8453. }
  8454. #u1920_img {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:0px;
  8458. top:0px;
  8459. width:8px;
  8460. height:14px;
  8461. }
  8462. #u1920 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:1167px;
  8466. top:1430px;
  8467. width:8px;
  8468. height:14px;
  8469. display:flex;
  8470. opacity:0.3;
  8471. font-family:'Microsoft YaHei', sans-serif;
  8472. font-weight:400;
  8473. font-style:normal;
  8474. font-size:12px;
  8475. color:rgba(245, 154, 35, 0.996078431372549);
  8476. }
  8477. #u1920 .text {
  8478. position:absolute;
  8479. align-self:center;
  8480. padding:2px 2px 2px 2px;
  8481. box-sizing:border-box;
  8482. width:100%;
  8483. }
  8484. #u1920_text {
  8485. border-width:0px;
  8486. word-wrap:break-word;
  8487. text-transform:none;
  8488. visibility:hidden;
  8489. }
  8490. #u1921_div {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:40px;
  8496. height:21px;
  8497. background:inherit;
  8498. background-color:rgba(255, 255, 255, 0);
  8499. border:none;
  8500. border-radius:15px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. font-family:'Helvetica', sans-serif;
  8505. font-weight:400;
  8506. font-style:normal;
  8507. font-size:14px;
  8508. }
  8509. #u1921 {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:1106px;
  8513. top:1427px;
  8514. width:40px;
  8515. height:21px;
  8516. display:flex;
  8517. font-family:'Helvetica', sans-serif;
  8518. font-weight:400;
  8519. font-style:normal;
  8520. font-size:14px;
  8521. }
  8522. #u1921 .text {
  8523. position:absolute;
  8524. align-self:center;
  8525. padding:2px 2px 2px 2px;
  8526. box-sizing:border-box;
  8527. width:100%;
  8528. }
  8529. #u1921_text {
  8530. border-width:0px;
  8531. white-space:nowrap;
  8532. text-transform:none;
  8533. }
  8534. #u1922 {
  8535. border-width:0px;
  8536. position:absolute;
  8537. left:0px;
  8538. top:0px;
  8539. width:0px;
  8540. height:0px;
  8541. }
  8542. #u1923_img {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:240px;
  8548. height:60px;
  8549. }
  8550. #u1923 {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:1236px;
  8554. top:682px;
  8555. width:240px;
  8556. height:60px;
  8557. display:flex;
  8558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8559. font-weight:400;
  8560. font-style:normal;
  8561. font-size:12px;
  8562. color:#FFFFFF;
  8563. text-align:left;
  8564. }
  8565. #u1923 .text {
  8566. position:absolute;
  8567. align-self:center;
  8568. padding:2px 2px 2px 10px;
  8569. box-sizing:border-box;
  8570. width:100%;
  8571. }
  8572. #u1923_text {
  8573. border-width:0px;
  8574. word-wrap:break-word;
  8575. text-transform:none;
  8576. visibility:hidden;
  8577. }
  8578. #u1924_img {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:62px;
  8584. height:60px;
  8585. }
  8586. #u1924 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:1236px;
  8590. top:682px;
  8591. width:62px;
  8592. height:60px;
  8593. display:flex;
  8594. }
  8595. #u1924 .text {
  8596. position:absolute;
  8597. align-self:center;
  8598. padding:2px 2px 2px 2px;
  8599. box-sizing:border-box;
  8600. width:100%;
  8601. }
  8602. #u1924_text {
  8603. border-width:0px;
  8604. word-wrap:break-word;
  8605. text-transform:none;
  8606. visibility:hidden;
  8607. }
  8608. #u1925_div {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:53px;
  8614. height:21px;
  8615. background:inherit;
  8616. background-color:rgba(245, 154, 35, 0);
  8617. border:none;
  8618. border-left:0px;
  8619. border-top:0px;
  8620. border-right:0px;
  8621. border-radius:0px;
  8622. border-bottom-right-radius:0px;
  8623. border-bottom-left-radius:0px;
  8624. -moz-box-shadow:none;
  8625. -webkit-box-shadow:none;
  8626. box-shadow:none;
  8627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. font-size:12px;
  8631. color:#FFFFFF;
  8632. text-align:left;
  8633. }
  8634. #u1925 {
  8635. border-width:0px;
  8636. position:absolute;
  8637. left:1303px;
  8638. top:686px;
  8639. width:53px;
  8640. height:21px;
  8641. display:flex;
  8642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8643. font-weight:400;
  8644. font-style:normal;
  8645. font-size:12px;
  8646. color:#FFFFFF;
  8647. text-align:left;
  8648. }
  8649. #u1925 .text {
  8650. position:absolute;
  8651. align-self:center;
  8652. padding:2px 2px 2px 2px;
  8653. box-sizing:border-box;
  8654. width:100%;
  8655. }
  8656. #u1925_text {
  8657. border-width:0px;
  8658. white-space:nowrap;
  8659. text-transform:none;
  8660. }
  8661. #u1926_div {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:0px;
  8665. top:0px;
  8666. width:75px;
  8667. height:32px;
  8668. background:inherit;
  8669. background-color:rgba(245, 154, 35, 0);
  8670. border:none;
  8671. border-left:0px;
  8672. border-top:0px;
  8673. border-right:0px;
  8674. border-radius:0px;
  8675. border-bottom-right-radius:0px;
  8676. border-bottom-left-radius:0px;
  8677. -moz-box-shadow:none;
  8678. -webkit-box-shadow:none;
  8679. box-shadow:none;
  8680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8681. font-weight:400;
  8682. font-style:normal;
  8683. font-size:10px;
  8684. color:#FFFFFF;
  8685. text-align:left;
  8686. }
  8687. #u1926 {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:1303px;
  8691. top:707px;
  8692. width:75px;
  8693. height:32px;
  8694. display:flex;
  8695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8696. font-weight:400;
  8697. font-style:normal;
  8698. font-size:10px;
  8699. color:#FFFFFF;
  8700. text-align:left;
  8701. }
  8702. #u1926 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 2px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u1926_text {
  8710. border-width:0px;
  8711. white-space:nowrap;
  8712. text-transform:none;
  8713. }
  8714. #u1927_div {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:35px;
  8720. height:13px;
  8721. background:inherit;
  8722. background-color:rgba(217, 0, 27, 1);
  8723. border:none;
  8724. border-radius:40px;
  8725. -moz-box-shadow:none;
  8726. -webkit-box-shadow:none;
  8727. box-shadow:none;
  8728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:8px;
  8732. color:rgba(255, 255, 255, 0.698039215686274);
  8733. }
  8734. #u1927 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:1356px;
  8738. top:690px;
  8739. width:35px;
  8740. height:13px;
  8741. display:flex;
  8742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8743. font-weight:400;
  8744. font-style:normal;
  8745. font-size:8px;
  8746. color:rgba(255, 255, 255, 0.698039215686274);
  8747. }
  8748. #u1927 .text {
  8749. position:absolute;
  8750. align-self:center;
  8751. padding:0px 0px 2px 0px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u1927_text {
  8756. border-width:0px;
  8757. word-wrap:break-word;
  8758. text-transform:none;
  8759. }
  8760. #u1928 {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:0px;
  8766. height:0px;
  8767. }
  8768. #u1929_img {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:240px;
  8774. height:60px;
  8775. }
  8776. #u1929 {
  8777. border-width:0px;
  8778. position:absolute;
  8779. left:1242px;
  8780. top:272px;
  8781. width:240px;
  8782. height:60px;
  8783. display:flex;
  8784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8785. font-weight:400;
  8786. font-style:normal;
  8787. font-size:12px;
  8788. color:#FFFFFF;
  8789. text-align:left;
  8790. }
  8791. #u1929 .text {
  8792. position:absolute;
  8793. align-self:center;
  8794. padding:2px 2px 2px 10px;
  8795. box-sizing:border-box;
  8796. width:100%;
  8797. }
  8798. #u1929_text {
  8799. border-width:0px;
  8800. word-wrap:break-word;
  8801. text-transform:none;
  8802. visibility:hidden;
  8803. }
  8804. #u1930_img {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:0px;
  8808. top:0px;
  8809. width:62px;
  8810. height:60px;
  8811. }
  8812. #u1930 {
  8813. border-width:0px;
  8814. position:absolute;
  8815. left:1242px;
  8816. top:272px;
  8817. width:62px;
  8818. height:60px;
  8819. display:flex;
  8820. }
  8821. #u1930 .text {
  8822. position:absolute;
  8823. align-self:center;
  8824. padding:2px 2px 2px 2px;
  8825. box-sizing:border-box;
  8826. width:100%;
  8827. }
  8828. #u1930_text {
  8829. border-width:0px;
  8830. word-wrap:break-word;
  8831. text-transform:none;
  8832. visibility:hidden;
  8833. }
  8834. #u1931_div {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:0px;
  8838. top:0px;
  8839. width:41px;
  8840. height:21px;
  8841. background:inherit;
  8842. background-color:rgba(245, 154, 35, 0);
  8843. border:none;
  8844. border-left:0px;
  8845. border-top:0px;
  8846. border-right:0px;
  8847. border-radius:0px;
  8848. border-bottom-right-radius:0px;
  8849. border-bottom-left-radius:0px;
  8850. -moz-box-shadow:none;
  8851. -webkit-box-shadow:none;
  8852. box-shadow:none;
  8853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8854. font-weight:400;
  8855. font-style:normal;
  8856. font-size:12px;
  8857. color:#FFFFFF;
  8858. text-align:left;
  8859. }
  8860. #u1931 {
  8861. border-width:0px;
  8862. position:absolute;
  8863. left:1309px;
  8864. top:276px;
  8865. width:41px;
  8866. height:21px;
  8867. display:flex;
  8868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8869. font-weight:400;
  8870. font-style:normal;
  8871. font-size:12px;
  8872. color:#FFFFFF;
  8873. text-align:left;
  8874. }
  8875. #u1931 .text {
  8876. position:absolute;
  8877. align-self:center;
  8878. padding:2px 2px 2px 2px;
  8879. box-sizing:border-box;
  8880. width:100%;
  8881. }
  8882. #u1931_text {
  8883. border-width:0px;
  8884. white-space:nowrap;
  8885. text-transform:none;
  8886. }
  8887. #u1932_div {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:0px;
  8891. top:0px;
  8892. width:75px;
  8893. height:32px;
  8894. background:inherit;
  8895. background-color:rgba(245, 154, 35, 0);
  8896. border:none;
  8897. border-left:0px;
  8898. border-top:0px;
  8899. border-right:0px;
  8900. border-radius:0px;
  8901. border-bottom-right-radius:0px;
  8902. border-bottom-left-radius:0px;
  8903. -moz-box-shadow:none;
  8904. -webkit-box-shadow:none;
  8905. box-shadow:none;
  8906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8907. font-weight:400;
  8908. font-style:normal;
  8909. font-size:10px;
  8910. color:#FFFFFF;
  8911. text-align:left;
  8912. }
  8913. #u1932 {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:1309px;
  8917. top:297px;
  8918. width:75px;
  8919. height:32px;
  8920. display:flex;
  8921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8922. font-weight:400;
  8923. font-style:normal;
  8924. font-size:10px;
  8925. color:#FFFFFF;
  8926. text-align:left;
  8927. }
  8928. #u1932 .text {
  8929. position:absolute;
  8930. align-self:center;
  8931. padding:2px 2px 2px 2px;
  8932. box-sizing:border-box;
  8933. width:100%;
  8934. }
  8935. #u1932_text {
  8936. border-width:0px;
  8937. white-space:nowrap;
  8938. text-transform:none;
  8939. }
  8940. #u1933_div {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:24px;
  8946. height:13px;
  8947. background:inherit;
  8948. background-color:rgba(245, 154, 35, 1);
  8949. border:none;
  8950. border-radius:40px;
  8951. -moz-box-shadow:none;
  8952. -webkit-box-shadow:none;
  8953. box-shadow:none;
  8954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8955. font-weight:400;
  8956. font-style:normal;
  8957. font-size:8px;
  8958. color:rgba(255, 255, 255, 0.698039215686274);
  8959. }
  8960. #u1933 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:1362px;
  8964. top:280px;
  8965. width:24px;
  8966. height:13px;
  8967. display:flex;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:8px;
  8972. color:rgba(255, 255, 255, 0.698039215686274);
  8973. }
  8974. #u1933 .text {
  8975. position:absolute;
  8976. align-self:center;
  8977. padding:0px 0px 2px 0px;
  8978. box-sizing:border-box;
  8979. width:100%;
  8980. }
  8981. #u1933_text {
  8982. border-width:0px;
  8983. word-wrap:break-word;
  8984. text-transform:none;
  8985. }
  8986. #u1934_div {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:0px;
  8990. top:0px;
  8991. width:17px;
  8992. height:21px;
  8993. background:inherit;
  8994. background-color:rgba(245, 154, 35, 0);
  8995. border:none;
  8996. border-left:0px;
  8997. border-top:0px;
  8998. border-right:0px;
  8999. border-radius:0px;
  9000. border-bottom-right-radius:0px;
  9001. border-bottom-left-radius:0px;
  9002. -moz-box-shadow:none;
  9003. -webkit-box-shadow:none;
  9004. box-shadow:none;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:12px;
  9009. color:#00BFBF;
  9010. text-align:left;
  9011. }
  9012. #u1934 {
  9013. border-width:0px;
  9014. position:absolute;
  9015. left:1455px;
  9016. top:272px;
  9017. width:17px;
  9018. height:21px;
  9019. display:flex;
  9020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9021. font-weight:400;
  9022. font-style:normal;
  9023. font-size:12px;
  9024. color:#00BFBF;
  9025. text-align:left;
  9026. }
  9027. #u1934 .text {
  9028. position:absolute;
  9029. align-self:center;
  9030. padding:2px 2px 2px 2px;
  9031. box-sizing:border-box;
  9032. width:100%;
  9033. }
  9034. #u1934_text {
  9035. border-width:0px;
  9036. white-space:nowrap;
  9037. text-transform:none;
  9038. }
  9039. #u1935 {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:0px;
  9045. height:0px;
  9046. }
  9047. #u1936_img {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:0px;
  9051. top:0px;
  9052. width:240px;
  9053. height:60px;
  9054. }
  9055. #u1936 {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:1242px;
  9059. top:342px;
  9060. width:240px;
  9061. height:60px;
  9062. display:flex;
  9063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:12px;
  9067. color:#FFFFFF;
  9068. text-align:left;
  9069. }
  9070. #u1936 .text {
  9071. position:absolute;
  9072. align-self:center;
  9073. padding:2px 2px 2px 10px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u1936_text {
  9078. border-width:0px;
  9079. word-wrap:break-word;
  9080. text-transform:none;
  9081. visibility:hidden;
  9082. }
  9083. #u1937_img {
  9084. border-width:0px;
  9085. position:absolute;
  9086. left:0px;
  9087. top:0px;
  9088. width:62px;
  9089. height:60px;
  9090. }
  9091. #u1937 {
  9092. border-width:0px;
  9093. position:absolute;
  9094. left:1242px;
  9095. top:342px;
  9096. width:62px;
  9097. height:60px;
  9098. display:flex;
  9099. }
  9100. #u1937 .text {
  9101. position:absolute;
  9102. align-self:center;
  9103. padding:2px 2px 2px 2px;
  9104. box-sizing:border-box;
  9105. width:100%;
  9106. }
  9107. #u1937_text {
  9108. border-width:0px;
  9109. word-wrap:break-word;
  9110. text-transform:none;
  9111. visibility:hidden;
  9112. }
  9113. #u1938_div {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:0px;
  9117. top:0px;
  9118. width:41px;
  9119. height:21px;
  9120. background:inherit;
  9121. background-color:rgba(245, 154, 35, 0);
  9122. border:none;
  9123. border-left:0px;
  9124. border-top:0px;
  9125. border-right:0px;
  9126. border-radius:0px;
  9127. border-bottom-right-radius:0px;
  9128. border-bottom-left-radius:0px;
  9129. -moz-box-shadow:none;
  9130. -webkit-box-shadow:none;
  9131. box-shadow:none;
  9132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9133. font-weight:400;
  9134. font-style:normal;
  9135. font-size:12px;
  9136. color:#FFFFFF;
  9137. text-align:left;
  9138. }
  9139. #u1938 {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:1309px;
  9143. top:346px;
  9144. width:41px;
  9145. height:21px;
  9146. display:flex;
  9147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9148. font-weight:400;
  9149. font-style:normal;
  9150. font-size:12px;
  9151. color:#FFFFFF;
  9152. text-align:left;
  9153. }
  9154. #u1938 .text {
  9155. position:absolute;
  9156. align-self:center;
  9157. padding:2px 2px 2px 2px;
  9158. box-sizing:border-box;
  9159. width:100%;
  9160. }
  9161. #u1938_text {
  9162. border-width:0px;
  9163. white-space:nowrap;
  9164. text-transform:none;
  9165. }
  9166. #u1939_div {
  9167. border-width:0px;
  9168. position:absolute;
  9169. left:0px;
  9170. top:0px;
  9171. width:75px;
  9172. height:32px;
  9173. background:inherit;
  9174. background-color:rgba(245, 154, 35, 0);
  9175. border:none;
  9176. border-left:0px;
  9177. border-top:0px;
  9178. border-right:0px;
  9179. border-radius:0px;
  9180. border-bottom-right-radius:0px;
  9181. border-bottom-left-radius:0px;
  9182. -moz-box-shadow:none;
  9183. -webkit-box-shadow:none;
  9184. box-shadow:none;
  9185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9186. font-weight:400;
  9187. font-style:normal;
  9188. font-size:10px;
  9189. color:#FFFFFF;
  9190. text-align:left;
  9191. }
  9192. #u1939 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:1309px;
  9196. top:367px;
  9197. width:75px;
  9198. height:32px;
  9199. display:flex;
  9200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. font-size:10px;
  9204. color:#FFFFFF;
  9205. text-align:left;
  9206. }
  9207. #u1939 .text {
  9208. position:absolute;
  9209. align-self:center;
  9210. padding:2px 2px 2px 2px;
  9211. box-sizing:border-box;
  9212. width:100%;
  9213. }
  9214. #u1939_text {
  9215. border-width:0px;
  9216. white-space:nowrap;
  9217. text-transform:none;
  9218. }
  9219. #u1940_div {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:24px;
  9225. height:13px;
  9226. background:inherit;
  9227. background-color:rgba(245, 154, 35, 1);
  9228. border:none;
  9229. border-radius:40px;
  9230. -moz-box-shadow:none;
  9231. -webkit-box-shadow:none;
  9232. box-shadow:none;
  9233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9234. font-weight:400;
  9235. font-style:normal;
  9236. font-size:8px;
  9237. color:rgba(255, 255, 255, 0.698039215686274);
  9238. }
  9239. #u1940 {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:1362px;
  9243. top:350px;
  9244. width:24px;
  9245. height:13px;
  9246. display:flex;
  9247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9248. font-weight:400;
  9249. font-style:normal;
  9250. font-size:8px;
  9251. color:rgba(255, 255, 255, 0.698039215686274);
  9252. }
  9253. #u1940 .text {
  9254. position:absolute;
  9255. align-self:center;
  9256. padding:0px 0px 2px 0px;
  9257. box-sizing:border-box;
  9258. width:100%;
  9259. }
  9260. #u1940_text {
  9261. border-width:0px;
  9262. word-wrap:break-word;
  9263. text-transform:none;
  9264. }
  9265. #u1941_div {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:0px;
  9269. top:0px;
  9270. width:17px;
  9271. height:21px;
  9272. background:inherit;
  9273. background-color:rgba(245, 154, 35, 0);
  9274. border:none;
  9275. border-left:0px;
  9276. border-top:0px;
  9277. border-right:0px;
  9278. border-radius:0px;
  9279. border-bottom-right-radius:0px;
  9280. border-bottom-left-radius:0px;
  9281. -moz-box-shadow:none;
  9282. -webkit-box-shadow:none;
  9283. box-shadow:none;
  9284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9285. font-weight:400;
  9286. font-style:normal;
  9287. font-size:12px;
  9288. color:#00BFBF;
  9289. text-align:left;
  9290. }
  9291. #u1941 {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:1455px;
  9295. top:342px;
  9296. width:17px;
  9297. height:21px;
  9298. display:flex;
  9299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9300. font-weight:400;
  9301. font-style:normal;
  9302. font-size:12px;
  9303. color:#00BFBF;
  9304. text-align:left;
  9305. }
  9306. #u1941 .text {
  9307. position:absolute;
  9308. align-self:center;
  9309. padding:2px 2px 2px 2px;
  9310. box-sizing:border-box;
  9311. width:100%;
  9312. }
  9313. #u1941_text {
  9314. border-width:0px;
  9315. white-space:nowrap;
  9316. text-transform:none;
  9317. }
  9318. #u1942 {
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:0px;
  9322. top:0px;
  9323. width:0px;
  9324. height:0px;
  9325. }
  9326. #u1943_img {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:240px;
  9332. height:60px;
  9333. }
  9334. #u1943 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:1242px;
  9338. top:412px;
  9339. width:240px;
  9340. height:60px;
  9341. display:flex;
  9342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9343. font-weight:400;
  9344. font-style:normal;
  9345. font-size:12px;
  9346. color:#FFFFFF;
  9347. text-align:left;
  9348. }
  9349. #u1943 .text {
  9350. position:absolute;
  9351. align-self:center;
  9352. padding:2px 2px 2px 10px;
  9353. box-sizing:border-box;
  9354. width:100%;
  9355. }
  9356. #u1943_text {
  9357. border-width:0px;
  9358. word-wrap:break-word;
  9359. text-transform:none;
  9360. visibility:hidden;
  9361. }
  9362. #u1944_img {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:0px;
  9366. top:0px;
  9367. width:62px;
  9368. height:60px;
  9369. }
  9370. #u1944 {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:1242px;
  9374. top:412px;
  9375. width:62px;
  9376. height:60px;
  9377. display:flex;
  9378. }
  9379. #u1944 .text {
  9380. position:absolute;
  9381. align-self:center;
  9382. padding:2px 2px 2px 2px;
  9383. box-sizing:border-box;
  9384. width:100%;
  9385. }
  9386. #u1944_text {
  9387. border-width:0px;
  9388. word-wrap:break-word;
  9389. text-transform:none;
  9390. visibility:hidden;
  9391. }
  9392. #u1945_div {
  9393. border-width:0px;
  9394. position:absolute;
  9395. left:0px;
  9396. top:0px;
  9397. width:41px;
  9398. height:21px;
  9399. background:inherit;
  9400. background-color:rgba(245, 154, 35, 0);
  9401. border:none;
  9402. border-left:0px;
  9403. border-top:0px;
  9404. border-right:0px;
  9405. border-radius:0px;
  9406. border-bottom-right-radius:0px;
  9407. border-bottom-left-radius:0px;
  9408. -moz-box-shadow:none;
  9409. -webkit-box-shadow:none;
  9410. box-shadow:none;
  9411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9412. font-weight:400;
  9413. font-style:normal;
  9414. font-size:12px;
  9415. color:#FFFFFF;
  9416. text-align:left;
  9417. }
  9418. #u1945 {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:1309px;
  9422. top:416px;
  9423. width:41px;
  9424. height:21px;
  9425. display:flex;
  9426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9427. font-weight:400;
  9428. font-style:normal;
  9429. font-size:12px;
  9430. color:#FFFFFF;
  9431. text-align:left;
  9432. }
  9433. #u1945 .text {
  9434. position:absolute;
  9435. align-self:center;
  9436. padding:2px 2px 2px 2px;
  9437. box-sizing:border-box;
  9438. width:100%;
  9439. }
  9440. #u1945_text {
  9441. border-width:0px;
  9442. white-space:nowrap;
  9443. text-transform:none;
  9444. }
  9445. #u1946_div {
  9446. border-width:0px;
  9447. position:absolute;
  9448. left:0px;
  9449. top:0px;
  9450. width:75px;
  9451. height:32px;
  9452. background:inherit;
  9453. background-color:rgba(245, 154, 35, 0);
  9454. border:none;
  9455. border-left:0px;
  9456. border-top:0px;
  9457. border-right:0px;
  9458. border-radius:0px;
  9459. border-bottom-right-radius:0px;
  9460. border-bottom-left-radius:0px;
  9461. -moz-box-shadow:none;
  9462. -webkit-box-shadow:none;
  9463. box-shadow:none;
  9464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9465. font-weight:400;
  9466. font-style:normal;
  9467. font-size:10px;
  9468. color:#FFFFFF;
  9469. text-align:left;
  9470. }
  9471. #u1946 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:1309px;
  9475. top:437px;
  9476. width:75px;
  9477. height:32px;
  9478. display:flex;
  9479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9480. font-weight:400;
  9481. font-style:normal;
  9482. font-size:10px;
  9483. color:#FFFFFF;
  9484. text-align:left;
  9485. }
  9486. #u1946 .text {
  9487. position:absolute;
  9488. align-self:center;
  9489. padding:2px 2px 2px 2px;
  9490. box-sizing:border-box;
  9491. width:100%;
  9492. }
  9493. #u1946_text {
  9494. border-width:0px;
  9495. white-space:nowrap;
  9496. text-transform:none;
  9497. }
  9498. #u1947_div {
  9499. border-width:0px;
  9500. position:absolute;
  9501. left:0px;
  9502. top:0px;
  9503. width:24px;
  9504. height:13px;
  9505. background:inherit;
  9506. background-color:rgba(245, 154, 35, 1);
  9507. border:none;
  9508. border-radius:40px;
  9509. -moz-box-shadow:none;
  9510. -webkit-box-shadow:none;
  9511. box-shadow:none;
  9512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9513. font-weight:400;
  9514. font-style:normal;
  9515. font-size:8px;
  9516. color:rgba(255, 255, 255, 0.698039215686274);
  9517. }
  9518. #u1947 {
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:1362px;
  9522. top:420px;
  9523. width:24px;
  9524. height:13px;
  9525. display:flex;
  9526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9527. font-weight:400;
  9528. font-style:normal;
  9529. font-size:8px;
  9530. color:rgba(255, 255, 255, 0.698039215686274);
  9531. }
  9532. #u1947 .text {
  9533. position:absolute;
  9534. align-self:center;
  9535. padding:0px 0px 2px 0px;
  9536. box-sizing:border-box;
  9537. width:100%;
  9538. }
  9539. #u1947_text {
  9540. border-width:0px;
  9541. word-wrap:break-word;
  9542. text-transform:none;
  9543. }
  9544. #u1948_div {
  9545. border-width:0px;
  9546. position:absolute;
  9547. left:0px;
  9548. top:0px;
  9549. width:17px;
  9550. height:21px;
  9551. background:inherit;
  9552. background-color:rgba(245, 154, 35, 0);
  9553. border:none;
  9554. border-left:0px;
  9555. border-top:0px;
  9556. border-right:0px;
  9557. border-radius:0px;
  9558. border-bottom-right-radius:0px;
  9559. border-bottom-left-radius:0px;
  9560. -moz-box-shadow:none;
  9561. -webkit-box-shadow:none;
  9562. box-shadow:none;
  9563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9564. font-weight:400;
  9565. font-style:normal;
  9566. font-size:12px;
  9567. color:#00BFBF;
  9568. text-align:left;
  9569. }
  9570. #u1948 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:1455px;
  9574. top:412px;
  9575. width:17px;
  9576. height:21px;
  9577. display:flex;
  9578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9579. font-weight:400;
  9580. font-style:normal;
  9581. font-size:12px;
  9582. color:#00BFBF;
  9583. text-align:left;
  9584. }
  9585. #u1948 .text {
  9586. position:absolute;
  9587. align-self:center;
  9588. padding:2px 2px 2px 2px;
  9589. box-sizing:border-box;
  9590. width:100%;
  9591. }
  9592. #u1948_text {
  9593. border-width:0px;
  9594. white-space:nowrap;
  9595. text-transform:none;
  9596. }
  9597. #u1949 {
  9598. border-width:0px;
  9599. position:absolute;
  9600. left:0px;
  9601. top:0px;
  9602. width:0px;
  9603. height:0px;
  9604. }
  9605. #u1950_div {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:0px;
  9609. top:0px;
  9610. width:254px;
  9611. height:82px;
  9612. background:inherit;
  9613. background-color:rgba(245, 154, 35, 0.0980392156862745);
  9614. box-sizing:border-box;
  9615. border-width:1px;
  9616. border-style:solid;
  9617. border-color:rgba(121, 121, 121, 1);
  9618. border-radius:0px;
  9619. -moz-box-shadow:none;
  9620. -webkit-box-shadow:none;
  9621. box-shadow:none;
  9622. }
  9623. #u1950 {
  9624. border-width:0px;
  9625. position:absolute;
  9626. left:348px;
  9627. top:271px;
  9628. width:254px;
  9629. height:82px;
  9630. display:flex;
  9631. }
  9632. #u1950 .text {
  9633. position:absolute;
  9634. align-self:center;
  9635. padding:2px 2px 2px 2px;
  9636. box-sizing:border-box;
  9637. width:100%;
  9638. }
  9639. #u1950_text {
  9640. border-width:0px;
  9641. word-wrap:break-word;
  9642. text-transform:none;
  9643. visibility:hidden;
  9644. }
  9645. #u1951_div {
  9646. border-width:0px;
  9647. position:absolute;
  9648. left:0px;
  9649. top:0px;
  9650. width:31px;
  9651. height:24px;
  9652. background:inherit;
  9653. background-color:rgba(245, 154, 35, 0);
  9654. border:none;
  9655. border-left:0px;
  9656. border-top:0px;
  9657. border-right:0px;
  9658. border-radius:0px;
  9659. border-bottom-right-radius:0px;
  9660. border-bottom-left-radius:0px;
  9661. -moz-box-shadow:none;
  9662. -webkit-box-shadow:none;
  9663. box-shadow:none;
  9664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9665. font-weight:400;
  9666. font-style:normal;
  9667. font-size:14px;
  9668. color:#FFFFFF;
  9669. text-align:left;
  9670. }
  9671. #u1951 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:415px;
  9675. top:278px;
  9676. width:31px;
  9677. height:24px;
  9678. display:flex;
  9679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9680. font-weight:400;
  9681. font-style:normal;
  9682. font-size:14px;
  9683. color:#FFFFFF;
  9684. text-align:left;
  9685. }
  9686. #u1951 .text {
  9687. position:absolute;
  9688. align-self:center;
  9689. padding:2px 2px 2px 0px;
  9690. box-sizing:border-box;
  9691. width:100%;
  9692. }
  9693. #u1951_text {
  9694. border-width:0px;
  9695. white-space:nowrap;
  9696. text-transform:none;
  9697. }
  9698. #u1952_div {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:35px;
  9704. height:21px;
  9705. background:inherit;
  9706. background-color:rgba(245, 154, 35, 1);
  9707. border:none;
  9708. border-radius:11px;
  9709. -moz-box-shadow:none;
  9710. -webkit-box-shadow:none;
  9711. box-shadow:none;
  9712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9713. font-weight:400;
  9714. font-style:normal;
  9715. font-size:12px;
  9716. color:#FFFFFF;
  9717. }
  9718. #u1952 {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:458px;
  9722. top:280px;
  9723. width:35px;
  9724. height:21px;
  9725. display:flex;
  9726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9727. font-weight:400;
  9728. font-style:normal;
  9729. font-size:12px;
  9730. color:#FFFFFF;
  9731. }
  9732. #u1952 .text {
  9733. position:absolute;
  9734. align-self:center;
  9735. padding:2px 2px 2px 2px;
  9736. box-sizing:border-box;
  9737. width:100%;
  9738. }
  9739. #u1952_text {
  9740. border-width:0px;
  9741. word-wrap:break-word;
  9742. text-transform:none;
  9743. }
  9744. #u1953_div {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:0px;
  9748. top:0px;
  9749. width:95px;
  9750. height:21px;
  9751. background:inherit;
  9752. background-color:rgba(245, 154, 35, 0);
  9753. border:none;
  9754. border-left:0px;
  9755. border-top:0px;
  9756. border-right:0px;
  9757. border-radius:0px;
  9758. border-bottom-right-radius:0px;
  9759. border-bottom-left-radius:0px;
  9760. -moz-box-shadow:none;
  9761. -webkit-box-shadow:none;
  9762. box-shadow:none;
  9763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9764. font-weight:400;
  9765. font-style:normal;
  9766. font-size:12px;
  9767. color:#FFFFFF;
  9768. text-align:left;
  9769. }
  9770. #u1953 {
  9771. border-width:0px;
  9772. position:absolute;
  9773. left:415px;
  9774. top:309px;
  9775. width:95px;
  9776. height:21px;
  9777. display:flex;
  9778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9779. font-weight:400;
  9780. font-style:normal;
  9781. font-size:12px;
  9782. color:#FFFFFF;
  9783. text-align:left;
  9784. }
  9785. #u1953 .text {
  9786. position:absolute;
  9787. align-self:center;
  9788. padding:2px 2px 2px 0px;
  9789. box-sizing:border-box;
  9790. width:100%;
  9791. }
  9792. #u1953_text {
  9793. border-width:0px;
  9794. white-space:nowrap;
  9795. text-transform:none;
  9796. }
  9797. #u1954_div {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:0px;
  9801. top:0px;
  9802. width:103px;
  9803. height:18px;
  9804. background:inherit;
  9805. background-color:rgba(245, 154, 35, 0);
  9806. border:none;
  9807. border-left:0px;
  9808. border-top:0px;
  9809. border-right:0px;
  9810. border-radius:0px;
  9811. border-bottom-right-radius:0px;
  9812. border-bottom-left-radius:0px;
  9813. -moz-box-shadow:none;
  9814. -webkit-box-shadow:none;
  9815. box-shadow:none;
  9816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9817. font-weight:400;
  9818. font-style:normal;
  9819. font-size:10px;
  9820. color:#FFFFFF;
  9821. text-align:left;
  9822. }
  9823. #u1954 {
  9824. border-width:0px;
  9825. position:absolute;
  9826. left:415px;
  9827. top:330px;
  9828. width:103px;
  9829. height:18px;
  9830. display:flex;
  9831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9832. font-weight:400;
  9833. font-style:normal;
  9834. font-size:10px;
  9835. color:#FFFFFF;
  9836. text-align:left;
  9837. }
  9838. #u1954 .text {
  9839. position:absolute;
  9840. align-self:center;
  9841. padding:2px 2px 2px 0px;
  9842. box-sizing:border-box;
  9843. width:100%;
  9844. }
  9845. #u1954_text {
  9846. border-width:0px;
  9847. white-space:nowrap;
  9848. text-transform:none;
  9849. }
  9850. #u1955_img {
  9851. border-width:0px;
  9852. position:absolute;
  9853. left:0px;
  9854. top:0px;
  9855. width:50px;
  9856. height:59px;
  9857. }
  9858. #u1955 {
  9859. border-width:0px;
  9860. position:absolute;
  9861. left:356px;
  9862. top:282px;
  9863. width:50px;
  9864. height:59px;
  9865. display:flex;
  9866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9867. font-weight:400;
  9868. font-style:normal;
  9869. color:#FFFFFF;
  9870. }
  9871. #u1955 .text {
  9872. position:absolute;
  9873. align-self:center;
  9874. padding:2px 2px 2px 2px;
  9875. box-sizing:border-box;
  9876. width:100%;
  9877. }
  9878. #u1955_text {
  9879. border-width:0px;
  9880. word-wrap:break-word;
  9881. text-transform:none;
  9882. }
  9883. #u1956 {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:0px;
  9887. top:0px;
  9888. width:0px;
  9889. height:0px;
  9890. }
  9891. #u1957_div {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:0px;
  9895. top:0px;
  9896. width:254px;
  9897. height:82px;
  9898. background:inherit;
  9899. background-color:rgba(245, 154, 35, 0.0980392156862745);
  9900. box-sizing:border-box;
  9901. border-width:1px;
  9902. border-style:solid;
  9903. border-color:rgba(121, 121, 121, 1);
  9904. border-radius:0px;
  9905. -moz-box-shadow:none;
  9906. -webkit-box-shadow:none;
  9907. box-shadow:none;
  9908. }
  9909. #u1957 {
  9910. border-width:0px;
  9911. position:absolute;
  9912. left:612px;
  9913. top:271px;
  9914. width:254px;
  9915. height:82px;
  9916. display:flex;
  9917. }
  9918. #u1957 .text {
  9919. position:absolute;
  9920. align-self:center;
  9921. padding:2px 2px 2px 2px;
  9922. box-sizing:border-box;
  9923. width:100%;
  9924. }
  9925. #u1957_text {
  9926. border-width:0px;
  9927. word-wrap:break-word;
  9928. text-transform:none;
  9929. visibility:hidden;
  9930. }
  9931. #u1958_div {
  9932. border-width:0px;
  9933. position:absolute;
  9934. left:0px;
  9935. top:0px;
  9936. width:45px;
  9937. height:24px;
  9938. background:inherit;
  9939. background-color:rgba(245, 154, 35, 0);
  9940. border:none;
  9941. border-left:0px;
  9942. border-top:0px;
  9943. border-right:0px;
  9944. border-radius:0px;
  9945. border-bottom-right-radius:0px;
  9946. border-bottom-left-radius:0px;
  9947. -moz-box-shadow:none;
  9948. -webkit-box-shadow:none;
  9949. box-shadow:none;
  9950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9951. font-weight:400;
  9952. font-style:normal;
  9953. font-size:14px;
  9954. color:#FFFFFF;
  9955. text-align:left;
  9956. }
  9957. #u1958 {
  9958. border-width:0px;
  9959. position:absolute;
  9960. left:679px;
  9961. top:278px;
  9962. width:45px;
  9963. height:24px;
  9964. display:flex;
  9965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9966. font-weight:400;
  9967. font-style:normal;
  9968. font-size:14px;
  9969. color:#FFFFFF;
  9970. text-align:left;
  9971. }
  9972. #u1958 .text {
  9973. position:absolute;
  9974. align-self:center;
  9975. padding:2px 2px 2px 0px;
  9976. box-sizing:border-box;
  9977. width:100%;
  9978. }
  9979. #u1958_text {
  9980. border-width:0px;
  9981. white-space:nowrap;
  9982. text-transform:none;
  9983. }
  9984. #u1959_div {
  9985. border-width:0px;
  9986. position:absolute;
  9987. left:0px;
  9988. top:0px;
  9989. width:95px;
  9990. height:21px;
  9991. background:inherit;
  9992. background-color:rgba(245, 154, 35, 0);
  9993. border:none;
  9994. border-left:0px;
  9995. border-top:0px;
  9996. border-right:0px;
  9997. border-radius:0px;
  9998. border-bottom-right-radius:0px;
  9999. border-bottom-left-radius:0px;
  10000. -moz-box-shadow:none;
  10001. -webkit-box-shadow:none;
  10002. box-shadow:none;
  10003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10004. font-weight:400;
  10005. font-style:normal;
  10006. font-size:12px;
  10007. color:#FFFFFF;
  10008. text-align:left;
  10009. }
  10010. #u1959 {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:679px;
  10014. top:309px;
  10015. width:95px;
  10016. height:21px;
  10017. display:flex;
  10018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10019. font-weight:400;
  10020. font-style:normal;
  10021. font-size:12px;
  10022. color:#FFFFFF;
  10023. text-align:left;
  10024. }
  10025. #u1959 .text {
  10026. position:absolute;
  10027. align-self:center;
  10028. padding:2px 2px 2px 0px;
  10029. box-sizing:border-box;
  10030. width:100%;
  10031. }
  10032. #u1959_text {
  10033. border-width:0px;
  10034. white-space:nowrap;
  10035. text-transform:none;
  10036. }
  10037. #u1960_div {
  10038. border-width:0px;
  10039. position:absolute;
  10040. left:0px;
  10041. top:0px;
  10042. width:103px;
  10043. height:18px;
  10044. background:inherit;
  10045. background-color:rgba(245, 154, 35, 0);
  10046. border:none;
  10047. border-left:0px;
  10048. border-top:0px;
  10049. border-right:0px;
  10050. border-radius:0px;
  10051. border-bottom-right-radius:0px;
  10052. border-bottom-left-radius:0px;
  10053. -moz-box-shadow:none;
  10054. -webkit-box-shadow:none;
  10055. box-shadow:none;
  10056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10057. font-weight:400;
  10058. font-style:normal;
  10059. font-size:10px;
  10060. color:#FFFFFF;
  10061. text-align:left;
  10062. }
  10063. #u1960 {
  10064. border-width:0px;
  10065. position:absolute;
  10066. left:679px;
  10067. top:330px;
  10068. width:103px;
  10069. height:18px;
  10070. display:flex;
  10071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10072. font-weight:400;
  10073. font-style:normal;
  10074. font-size:10px;
  10075. color:#FFFFFF;
  10076. text-align:left;
  10077. }
  10078. #u1960 .text {
  10079. position:absolute;
  10080. align-self:center;
  10081. padding:2px 2px 2px 0px;
  10082. box-sizing:border-box;
  10083. width:100%;
  10084. }
  10085. #u1960_text {
  10086. border-width:0px;
  10087. white-space:nowrap;
  10088. text-transform:none;
  10089. }
  10090. #u1961_img {
  10091. border-width:0px;
  10092. position:absolute;
  10093. left:0px;
  10094. top:0px;
  10095. width:50px;
  10096. height:59px;
  10097. }
  10098. #u1961 {
  10099. border-width:0px;
  10100. position:absolute;
  10101. left:620px;
  10102. top:282px;
  10103. width:50px;
  10104. height:59px;
  10105. display:flex;
  10106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10107. font-weight:400;
  10108. font-style:normal;
  10109. color:#FFFFFF;
  10110. }
  10111. #u1961 .text {
  10112. position:absolute;
  10113. align-self:center;
  10114. padding:2px 2px 2px 2px;
  10115. box-sizing:border-box;
  10116. width:100%;
  10117. }
  10118. #u1961_text {
  10119. border-width:0px;
  10120. word-wrap:break-word;
  10121. text-transform:none;
  10122. }
  10123. #u1962 {
  10124. border-width:0px;
  10125. position:absolute;
  10126. left:0px;
  10127. top:0px;
  10128. width:0px;
  10129. height:0px;
  10130. }
  10131. #u1963_div {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:254px;
  10137. height:82px;
  10138. background:inherit;
  10139. background-color:rgba(245, 154, 35, 0.0980392156862745);
  10140. box-sizing:border-box;
  10141. border-width:1px;
  10142. border-style:solid;
  10143. border-color:rgba(121, 121, 121, 1);
  10144. border-radius:0px;
  10145. -moz-box-shadow:none;
  10146. -webkit-box-shadow:none;
  10147. box-shadow:none;
  10148. }
  10149. #u1963 {
  10150. border-width:0px;
  10151. position:absolute;
  10152. left:876px;
  10153. top:271px;
  10154. width:254px;
  10155. height:82px;
  10156. display:flex;
  10157. }
  10158. #u1963 .text {
  10159. position:absolute;
  10160. align-self:center;
  10161. padding:2px 2px 2px 2px;
  10162. box-sizing:border-box;
  10163. width:100%;
  10164. }
  10165. #u1963_text {
  10166. border-width:0px;
  10167. word-wrap:break-word;
  10168. text-transform:none;
  10169. visibility:hidden;
  10170. }
  10171. #u1964_div {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:0px;
  10175. top:0px;
  10176. width:31px;
  10177. height:24px;
  10178. background:inherit;
  10179. background-color:rgba(245, 154, 35, 0);
  10180. border:none;
  10181. border-left:0px;
  10182. border-top:0px;
  10183. border-right:0px;
  10184. border-radius:0px;
  10185. border-bottom-right-radius:0px;
  10186. border-bottom-left-radius:0px;
  10187. -moz-box-shadow:none;
  10188. -webkit-box-shadow:none;
  10189. box-shadow:none;
  10190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10191. font-weight:400;
  10192. font-style:normal;
  10193. font-size:14px;
  10194. color:#FFFFFF;
  10195. text-align:left;
  10196. }
  10197. #u1964 {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:943px;
  10201. top:278px;
  10202. width:31px;
  10203. height:24px;
  10204. display:flex;
  10205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10206. font-weight:400;
  10207. font-style:normal;
  10208. font-size:14px;
  10209. color:#FFFFFF;
  10210. text-align:left;
  10211. }
  10212. #u1964 .text {
  10213. position:absolute;
  10214. align-self:center;
  10215. padding:2px 2px 2px 0px;
  10216. box-sizing:border-box;
  10217. width:100%;
  10218. }
  10219. #u1964_text {
  10220. border-width:0px;
  10221. white-space:nowrap;
  10222. text-transform:none;
  10223. }
  10224. #u1965_div {
  10225. border-width:0px;
  10226. position:absolute;
  10227. left:0px;
  10228. top:0px;
  10229. width:35px;
  10230. height:21px;
  10231. background:inherit;
  10232. background-color:rgba(245, 154, 35, 1);
  10233. border:none;
  10234. border-radius:11px;
  10235. -moz-box-shadow:none;
  10236. -webkit-box-shadow:none;
  10237. box-shadow:none;
  10238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10239. font-weight:400;
  10240. font-style:normal;
  10241. font-size:12px;
  10242. color:#FFFFFF;
  10243. }
  10244. #u1965 {
  10245. border-width:0px;
  10246. position:absolute;
  10247. left:978px;
  10248. top:280px;
  10249. width:35px;
  10250. height:21px;
  10251. display:flex;
  10252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10253. font-weight:400;
  10254. font-style:normal;
  10255. font-size:12px;
  10256. color:#FFFFFF;
  10257. }
  10258. #u1965 .text {
  10259. position:absolute;
  10260. align-self:center;
  10261. padding:2px 2px 2px 2px;
  10262. box-sizing:border-box;
  10263. width:100%;
  10264. }
  10265. #u1965_text {
  10266. border-width:0px;
  10267. word-wrap:break-word;
  10268. text-transform:none;
  10269. }
  10270. #u1966_div {
  10271. border-width:0px;
  10272. position:absolute;
  10273. left:0px;
  10274. top:0px;
  10275. width:71px;
  10276. height:21px;
  10277. background:inherit;
  10278. background-color:rgba(245, 154, 35, 0);
  10279. border:none;
  10280. border-left:0px;
  10281. border-top:0px;
  10282. border-right:0px;
  10283. border-radius:0px;
  10284. border-bottom-right-radius:0px;
  10285. border-bottom-left-radius:0px;
  10286. -moz-box-shadow:none;
  10287. -webkit-box-shadow:none;
  10288. box-shadow:none;
  10289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10290. font-weight:400;
  10291. font-style:normal;
  10292. font-size:12px;
  10293. color:#FFFFFF;
  10294. text-align:left;
  10295. }
  10296. #u1966 {
  10297. border-width:0px;
  10298. position:absolute;
  10299. left:943px;
  10300. top:309px;
  10301. width:71px;
  10302. height:21px;
  10303. display:flex;
  10304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10305. font-weight:400;
  10306. font-style:normal;
  10307. font-size:12px;
  10308. color:#FFFFFF;
  10309. text-align:left;
  10310. }
  10311. #u1966 .text {
  10312. position:absolute;
  10313. align-self:center;
  10314. padding:2px 2px 2px 0px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u1966_text {
  10319. border-width:0px;
  10320. white-space:nowrap;
  10321. text-transform:none;
  10322. }
  10323. #u1967_div {
  10324. border-width:0px;
  10325. position:absolute;
  10326. left:0px;
  10327. top:0px;
  10328. width:103px;
  10329. height:18px;
  10330. background:inherit;
  10331. background-color:rgba(245, 154, 35, 0);
  10332. border:none;
  10333. border-left:0px;
  10334. border-top:0px;
  10335. border-right:0px;
  10336. border-radius:0px;
  10337. border-bottom-right-radius:0px;
  10338. border-bottom-left-radius:0px;
  10339. -moz-box-shadow:none;
  10340. -webkit-box-shadow:none;
  10341. box-shadow:none;
  10342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10343. font-weight:400;
  10344. font-style:normal;
  10345. font-size:10px;
  10346. color:#FFFFFF;
  10347. text-align:left;
  10348. }
  10349. #u1967 {
  10350. border-width:0px;
  10351. position:absolute;
  10352. left:943px;
  10353. top:330px;
  10354. width:103px;
  10355. height:18px;
  10356. display:flex;
  10357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10358. font-weight:400;
  10359. font-style:normal;
  10360. font-size:10px;
  10361. color:#FFFFFF;
  10362. text-align:left;
  10363. }
  10364. #u1967 .text {
  10365. position:absolute;
  10366. align-self:center;
  10367. padding:2px 2px 2px 0px;
  10368. box-sizing:border-box;
  10369. width:100%;
  10370. }
  10371. #u1967_text {
  10372. border-width:0px;
  10373. white-space:nowrap;
  10374. text-transform:none;
  10375. }
  10376. #u1968_img {
  10377. border-width:0px;
  10378. position:absolute;
  10379. left:0px;
  10380. top:0px;
  10381. width:50px;
  10382. height:59px;
  10383. }
  10384. #u1968 {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:884px;
  10388. top:282px;
  10389. width:50px;
  10390. height:59px;
  10391. display:flex;
  10392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10393. font-weight:400;
  10394. font-style:normal;
  10395. color:#FFFFFF;
  10396. }
  10397. #u1968 .text {
  10398. position:absolute;
  10399. align-self:center;
  10400. padding:2px 2px 2px 2px;
  10401. box-sizing:border-box;
  10402. width:100%;
  10403. }
  10404. #u1968_text {
  10405. border-width:0px;
  10406. word-wrap:break-word;
  10407. text-transform:none;
  10408. }
  10409. #u1969 {
  10410. border-width:0px;
  10411. position:absolute;
  10412. left:0px;
  10413. top:0px;
  10414. width:0px;
  10415. height:0px;
  10416. }
  10417. #u1970_div {
  10418. border-width:0px;
  10419. position:absolute;
  10420. left:0px;
  10421. top:0px;
  10422. width:254px;
  10423. height:82px;
  10424. background:inherit;
  10425. background-color:rgba(245, 154, 35, 0.0980392156862745);
  10426. box-sizing:border-box;
  10427. border-width:1px;
  10428. border-style:solid;
  10429. border-color:rgba(121, 121, 121, 1);
  10430. border-radius:0px;
  10431. -moz-box-shadow:none;
  10432. -webkit-box-shadow:none;
  10433. box-shadow:none;
  10434. }
  10435. #u1970 {
  10436. border-width:0px;
  10437. position:absolute;
  10438. left:348px;
  10439. top:363px;
  10440. width:254px;
  10441. height:82px;
  10442. display:flex;
  10443. }
  10444. #u1970 .text {
  10445. position:absolute;
  10446. align-self:center;
  10447. padding:2px 2px 2px 2px;
  10448. box-sizing:border-box;
  10449. width:100%;
  10450. }
  10451. #u1970_text {
  10452. border-width:0px;
  10453. word-wrap:break-word;
  10454. text-transform:none;
  10455. visibility:hidden;
  10456. }
  10457. #u1971_div {
  10458. border-width:0px;
  10459. position:absolute;
  10460. left:0px;
  10461. top:0px;
  10462. width:31px;
  10463. height:24px;
  10464. background:inherit;
  10465. background-color:rgba(245, 154, 35, 0);
  10466. border:none;
  10467. border-left:0px;
  10468. border-top:0px;
  10469. border-right:0px;
  10470. border-radius:0px;
  10471. border-bottom-right-radius:0px;
  10472. border-bottom-left-radius:0px;
  10473. -moz-box-shadow:none;
  10474. -webkit-box-shadow:none;
  10475. box-shadow:none;
  10476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10477. font-weight:400;
  10478. font-style:normal;
  10479. font-size:14px;
  10480. color:#FFFFFF;
  10481. text-align:left;
  10482. }
  10483. #u1971 {
  10484. border-width:0px;
  10485. position:absolute;
  10486. left:415px;
  10487. top:370px;
  10488. width:31px;
  10489. height:24px;
  10490. display:flex;
  10491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10492. font-weight:400;
  10493. font-style:normal;
  10494. font-size:14px;
  10495. color:#FFFFFF;
  10496. text-align:left;
  10497. }
  10498. #u1971 .text {
  10499. position:absolute;
  10500. align-self:center;
  10501. padding:2px 2px 2px 0px;
  10502. box-sizing:border-box;
  10503. width:100%;
  10504. }
  10505. #u1971_text {
  10506. border-width:0px;
  10507. white-space:nowrap;
  10508. text-transform:none;
  10509. }
  10510. #u1972_div {
  10511. border-width:0px;
  10512. position:absolute;
  10513. left:0px;
  10514. top:0px;
  10515. width:35px;
  10516. height:21px;
  10517. background:inherit;
  10518. background-color:rgba(245, 154, 35, 1);
  10519. border:none;
  10520. border-radius:11px;
  10521. -moz-box-shadow:none;
  10522. -webkit-box-shadow:none;
  10523. box-shadow:none;
  10524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10525. font-weight:400;
  10526. font-style:normal;
  10527. font-size:12px;
  10528. color:#FFFFFF;
  10529. }
  10530. #u1972 {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:458px;
  10534. top:372px;
  10535. width:35px;
  10536. height:21px;
  10537. display:flex;
  10538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10539. font-weight:400;
  10540. font-style:normal;
  10541. font-size:12px;
  10542. color:#FFFFFF;
  10543. }
  10544. #u1972 .text {
  10545. position:absolute;
  10546. align-self:center;
  10547. padding:2px 2px 2px 2px;
  10548. box-sizing:border-box;
  10549. width:100%;
  10550. }
  10551. #u1972_text {
  10552. border-width:0px;
  10553. word-wrap:break-word;
  10554. text-transform:none;
  10555. }
  10556. #u1973_div {
  10557. border-width:0px;
  10558. position:absolute;
  10559. left:0px;
  10560. top:0px;
  10561. width:95px;
  10562. height:21px;
  10563. background:inherit;
  10564. background-color:rgba(245, 154, 35, 0);
  10565. border:none;
  10566. border-left:0px;
  10567. border-top:0px;
  10568. border-right:0px;
  10569. border-radius:0px;
  10570. border-bottom-right-radius:0px;
  10571. border-bottom-left-radius:0px;
  10572. -moz-box-shadow:none;
  10573. -webkit-box-shadow:none;
  10574. box-shadow:none;
  10575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10576. font-weight:400;
  10577. font-style:normal;
  10578. font-size:12px;
  10579. color:#FFFFFF;
  10580. text-align:left;
  10581. }
  10582. #u1973 {
  10583. border-width:0px;
  10584. position:absolute;
  10585. left:415px;
  10586. top:401px;
  10587. width:95px;
  10588. height:21px;
  10589. display:flex;
  10590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:12px;
  10594. color:#FFFFFF;
  10595. text-align:left;
  10596. }
  10597. #u1973 .text {
  10598. position:absolute;
  10599. align-self:center;
  10600. padding:2px 2px 2px 0px;
  10601. box-sizing:border-box;
  10602. width:100%;
  10603. }
  10604. #u1973_text {
  10605. border-width:0px;
  10606. white-space:nowrap;
  10607. text-transform:none;
  10608. }
  10609. #u1974_div {
  10610. border-width:0px;
  10611. position:absolute;
  10612. left:0px;
  10613. top:0px;
  10614. width:103px;
  10615. height:18px;
  10616. background:inherit;
  10617. background-color:rgba(245, 154, 35, 0);
  10618. border:none;
  10619. border-left:0px;
  10620. border-top:0px;
  10621. border-right:0px;
  10622. border-radius:0px;
  10623. border-bottom-right-radius:0px;
  10624. border-bottom-left-radius:0px;
  10625. -moz-box-shadow:none;
  10626. -webkit-box-shadow:none;
  10627. box-shadow:none;
  10628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10629. font-weight:400;
  10630. font-style:normal;
  10631. font-size:10px;
  10632. color:#FFFFFF;
  10633. text-align:left;
  10634. }
  10635. #u1974 {
  10636. border-width:0px;
  10637. position:absolute;
  10638. left:415px;
  10639. top:422px;
  10640. width:103px;
  10641. height:18px;
  10642. display:flex;
  10643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10644. font-weight:400;
  10645. font-style:normal;
  10646. font-size:10px;
  10647. color:#FFFFFF;
  10648. text-align:left;
  10649. }
  10650. #u1974 .text {
  10651. position:absolute;
  10652. align-self:center;
  10653. padding:2px 2px 2px 0px;
  10654. box-sizing:border-box;
  10655. width:100%;
  10656. }
  10657. #u1974_text {
  10658. border-width:0px;
  10659. white-space:nowrap;
  10660. text-transform:none;
  10661. }
  10662. #u1975_img {
  10663. border-width:0px;
  10664. position:absolute;
  10665. left:0px;
  10666. top:0px;
  10667. width:50px;
  10668. height:59px;
  10669. }
  10670. #u1975 {
  10671. border-width:0px;
  10672. position:absolute;
  10673. left:356px;
  10674. top:374px;
  10675. width:50px;
  10676. height:59px;
  10677. display:flex;
  10678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10679. font-weight:400;
  10680. font-style:normal;
  10681. color:#FFFFFF;
  10682. }
  10683. #u1975 .text {
  10684. position:absolute;
  10685. align-self:center;
  10686. padding:2px 2px 2px 2px;
  10687. box-sizing:border-box;
  10688. width:100%;
  10689. }
  10690. #u1975_text {
  10691. border-width:0px;
  10692. word-wrap:break-word;
  10693. text-transform:none;
  10694. }
  10695. #u1976 {
  10696. border-width:0px;
  10697. position:absolute;
  10698. left:0px;
  10699. top:0px;
  10700. width:0px;
  10701. height:0px;
  10702. }
  10703. #u1977_div {
  10704. border-width:0px;
  10705. position:absolute;
  10706. left:0px;
  10707. top:0px;
  10708. width:254px;
  10709. height:82px;
  10710. background:inherit;
  10711. background-color:rgba(245, 154, 35, 0.0980392156862745);
  10712. box-sizing:border-box;
  10713. border-width:1px;
  10714. border-style:solid;
  10715. border-color:rgba(121, 121, 121, 1);
  10716. border-radius:0px;
  10717. -moz-box-shadow:none;
  10718. -webkit-box-shadow:none;
  10719. box-shadow:none;
  10720. }
  10721. #u1977 {
  10722. border-width:0px;
  10723. position:absolute;
  10724. left:612px;
  10725. top:363px;
  10726. width:254px;
  10727. height:82px;
  10728. display:flex;
  10729. }
  10730. #u1977 .text {
  10731. position:absolute;
  10732. align-self:center;
  10733. padding:2px 2px 2px 2px;
  10734. box-sizing:border-box;
  10735. width:100%;
  10736. }
  10737. #u1977_text {
  10738. border-width:0px;
  10739. word-wrap:break-word;
  10740. text-transform:none;
  10741. visibility:hidden;
  10742. }
  10743. #u1978_div {
  10744. border-width:0px;
  10745. position:absolute;
  10746. left:0px;
  10747. top:0px;
  10748. width:45px;
  10749. height:24px;
  10750. background:inherit;
  10751. background-color:rgba(245, 154, 35, 0);
  10752. border:none;
  10753. border-left:0px;
  10754. border-top:0px;
  10755. border-right:0px;
  10756. border-radius:0px;
  10757. border-bottom-right-radius:0px;
  10758. border-bottom-left-radius:0px;
  10759. -moz-box-shadow:none;
  10760. -webkit-box-shadow:none;
  10761. box-shadow:none;
  10762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10763. font-weight:400;
  10764. font-style:normal;
  10765. font-size:14px;
  10766. color:#FFFFFF;
  10767. text-align:left;
  10768. }
  10769. #u1978 {
  10770. border-width:0px;
  10771. position:absolute;
  10772. left:679px;
  10773. top:370px;
  10774. width:45px;
  10775. height:24px;
  10776. display:flex;
  10777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10778. font-weight:400;
  10779. font-style:normal;
  10780. font-size:14px;
  10781. color:#FFFFFF;
  10782. text-align:left;
  10783. }
  10784. #u1978 .text {
  10785. position:absolute;
  10786. align-self:center;
  10787. padding:2px 2px 2px 0px;
  10788. box-sizing:border-box;
  10789. width:100%;
  10790. }
  10791. #u1978_text {
  10792. border-width:0px;
  10793. white-space:nowrap;
  10794. text-transform:none;
  10795. }
  10796. #u1979_div {
  10797. border-width:0px;
  10798. position:absolute;
  10799. left:0px;
  10800. top:0px;
  10801. width:95px;
  10802. height:21px;
  10803. background:inherit;
  10804. background-color:rgba(245, 154, 35, 0);
  10805. border:none;
  10806. border-left:0px;
  10807. border-top:0px;
  10808. border-right:0px;
  10809. border-radius:0px;
  10810. border-bottom-right-radius:0px;
  10811. border-bottom-left-radius:0px;
  10812. -moz-box-shadow:none;
  10813. -webkit-box-shadow:none;
  10814. box-shadow:none;
  10815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10816. font-weight:400;
  10817. font-style:normal;
  10818. font-size:12px;
  10819. color:#FFFFFF;
  10820. text-align:left;
  10821. }
  10822. #u1979 {
  10823. border-width:0px;
  10824. position:absolute;
  10825. left:679px;
  10826. top:401px;
  10827. width:95px;
  10828. height:21px;
  10829. display:flex;
  10830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10831. font-weight:400;
  10832. font-style:normal;
  10833. font-size:12px;
  10834. color:#FFFFFF;
  10835. text-align:left;
  10836. }
  10837. #u1979 .text {
  10838. position:absolute;
  10839. align-self:center;
  10840. padding:2px 2px 2px 0px;
  10841. box-sizing:border-box;
  10842. width:100%;
  10843. }
  10844. #u1979_text {
  10845. border-width:0px;
  10846. white-space:nowrap;
  10847. text-transform:none;
  10848. }
  10849. #u1980_div {
  10850. border-width:0px;
  10851. position:absolute;
  10852. left:0px;
  10853. top:0px;
  10854. width:103px;
  10855. height:18px;
  10856. background:inherit;
  10857. background-color:rgba(245, 154, 35, 0);
  10858. border:none;
  10859. border-left:0px;
  10860. border-top:0px;
  10861. border-right:0px;
  10862. border-radius:0px;
  10863. border-bottom-right-radius:0px;
  10864. border-bottom-left-radius:0px;
  10865. -moz-box-shadow:none;
  10866. -webkit-box-shadow:none;
  10867. box-shadow:none;
  10868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10869. font-weight:400;
  10870. font-style:normal;
  10871. font-size:10px;
  10872. color:#FFFFFF;
  10873. text-align:left;
  10874. }
  10875. #u1980 {
  10876. border-width:0px;
  10877. position:absolute;
  10878. left:679px;
  10879. top:422px;
  10880. width:103px;
  10881. height:18px;
  10882. display:flex;
  10883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10884. font-weight:400;
  10885. font-style:normal;
  10886. font-size:10px;
  10887. color:#FFFFFF;
  10888. text-align:left;
  10889. }
  10890. #u1980 .text {
  10891. position:absolute;
  10892. align-self:center;
  10893. padding:2px 2px 2px 0px;
  10894. box-sizing:border-box;
  10895. width:100%;
  10896. }
  10897. #u1980_text {
  10898. border-width:0px;
  10899. white-space:nowrap;
  10900. text-transform:none;
  10901. }
  10902. #u1981_img {
  10903. border-width:0px;
  10904. position:absolute;
  10905. left:0px;
  10906. top:0px;
  10907. width:50px;
  10908. height:59px;
  10909. }
  10910. #u1981 {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:620px;
  10914. top:374px;
  10915. width:50px;
  10916. height:59px;
  10917. display:flex;
  10918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10919. font-weight:400;
  10920. font-style:normal;
  10921. color:#FFFFFF;
  10922. }
  10923. #u1981 .text {
  10924. position:absolute;
  10925. align-self:center;
  10926. padding:2px 2px 2px 2px;
  10927. box-sizing:border-box;
  10928. width:100%;
  10929. }
  10930. #u1981_text {
  10931. border-width:0px;
  10932. word-wrap:break-word;
  10933. text-transform:none;
  10934. }
  10935. #u1982 {
  10936. border-width:0px;
  10937. position:absolute;
  10938. left:0px;
  10939. top:0px;
  10940. width:0px;
  10941. height:0px;
  10942. }
  10943. #u1983_div {
  10944. border-width:0px;
  10945. position:absolute;
  10946. left:0px;
  10947. top:0px;
  10948. width:254px;
  10949. height:82px;
  10950. background:inherit;
  10951. background-color:rgba(245, 154, 35, 0.0980392156862745);
  10952. box-sizing:border-box;
  10953. border-width:1px;
  10954. border-style:solid;
  10955. border-color:rgba(121, 121, 121, 1);
  10956. border-radius:0px;
  10957. -moz-box-shadow:none;
  10958. -webkit-box-shadow:none;
  10959. box-shadow:none;
  10960. }
  10961. #u1983 {
  10962. border-width:0px;
  10963. position:absolute;
  10964. left:876px;
  10965. top:363px;
  10966. width:254px;
  10967. height:82px;
  10968. display:flex;
  10969. }
  10970. #u1983 .text {
  10971. position:absolute;
  10972. align-self:center;
  10973. padding:2px 2px 2px 2px;
  10974. box-sizing:border-box;
  10975. width:100%;
  10976. }
  10977. #u1983_text {
  10978. border-width:0px;
  10979. word-wrap:break-word;
  10980. text-transform:none;
  10981. visibility:hidden;
  10982. }
  10983. #u1984_div {
  10984. border-width:0px;
  10985. position:absolute;
  10986. left:0px;
  10987. top:0px;
  10988. width:31px;
  10989. height:24px;
  10990. background:inherit;
  10991. background-color:rgba(245, 154, 35, 0);
  10992. border:none;
  10993. border-left:0px;
  10994. border-top:0px;
  10995. border-right:0px;
  10996. border-radius:0px;
  10997. border-bottom-right-radius:0px;
  10998. border-bottom-left-radius:0px;
  10999. -moz-box-shadow:none;
  11000. -webkit-box-shadow:none;
  11001. box-shadow:none;
  11002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11003. font-weight:400;
  11004. font-style:normal;
  11005. font-size:14px;
  11006. color:#FFFFFF;
  11007. text-align:left;
  11008. }
  11009. #u1984 {
  11010. border-width:0px;
  11011. position:absolute;
  11012. left:943px;
  11013. top:370px;
  11014. width:31px;
  11015. height:24px;
  11016. display:flex;
  11017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11018. font-weight:400;
  11019. font-style:normal;
  11020. font-size:14px;
  11021. color:#FFFFFF;
  11022. text-align:left;
  11023. }
  11024. #u1984 .text {
  11025. position:absolute;
  11026. align-self:center;
  11027. padding:2px 2px 2px 0px;
  11028. box-sizing:border-box;
  11029. width:100%;
  11030. }
  11031. #u1984_text {
  11032. border-width:0px;
  11033. white-space:nowrap;
  11034. text-transform:none;
  11035. }
  11036. #u1985_div {
  11037. border-width:0px;
  11038. position:absolute;
  11039. left:0px;
  11040. top:0px;
  11041. width:35px;
  11042. height:21px;
  11043. background:inherit;
  11044. background-color:rgba(245, 154, 35, 1);
  11045. border:none;
  11046. border-radius:11px;
  11047. -moz-box-shadow:none;
  11048. -webkit-box-shadow:none;
  11049. box-shadow:none;
  11050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11051. font-weight:400;
  11052. font-style:normal;
  11053. font-size:12px;
  11054. color:#FFFFFF;
  11055. }
  11056. #u1985 {
  11057. border-width:0px;
  11058. position:absolute;
  11059. left:978px;
  11060. top:372px;
  11061. width:35px;
  11062. height:21px;
  11063. display:flex;
  11064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11065. font-weight:400;
  11066. font-style:normal;
  11067. font-size:12px;
  11068. color:#FFFFFF;
  11069. }
  11070. #u1985 .text {
  11071. position:absolute;
  11072. align-self:center;
  11073. padding:2px 2px 2px 2px;
  11074. box-sizing:border-box;
  11075. width:100%;
  11076. }
  11077. #u1985_text {
  11078. border-width:0px;
  11079. word-wrap:break-word;
  11080. text-transform:none;
  11081. }
  11082. #u1986_div {
  11083. border-width:0px;
  11084. position:absolute;
  11085. left:0px;
  11086. top:0px;
  11087. width:71px;
  11088. height:21px;
  11089. background:inherit;
  11090. background-color:rgba(245, 154, 35, 0);
  11091. border:none;
  11092. border-left:0px;
  11093. border-top:0px;
  11094. border-right:0px;
  11095. border-radius:0px;
  11096. border-bottom-right-radius:0px;
  11097. border-bottom-left-radius:0px;
  11098. -moz-box-shadow:none;
  11099. -webkit-box-shadow:none;
  11100. box-shadow:none;
  11101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11102. font-weight:400;
  11103. font-style:normal;
  11104. font-size:12px;
  11105. color:#FFFFFF;
  11106. text-align:left;
  11107. }
  11108. #u1986 {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:943px;
  11112. top:401px;
  11113. width:71px;
  11114. height:21px;
  11115. display:flex;
  11116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11117. font-weight:400;
  11118. font-style:normal;
  11119. font-size:12px;
  11120. color:#FFFFFF;
  11121. text-align:left;
  11122. }
  11123. #u1986 .text {
  11124. position:absolute;
  11125. align-self:center;
  11126. padding:2px 2px 2px 0px;
  11127. box-sizing:border-box;
  11128. width:100%;
  11129. }
  11130. #u1986_text {
  11131. border-width:0px;
  11132. white-space:nowrap;
  11133. text-transform:none;
  11134. }
  11135. #u1987_div {
  11136. border-width:0px;
  11137. position:absolute;
  11138. left:0px;
  11139. top:0px;
  11140. width:103px;
  11141. height:18px;
  11142. background:inherit;
  11143. background-color:rgba(245, 154, 35, 0);
  11144. border:none;
  11145. border-left:0px;
  11146. border-top:0px;
  11147. border-right:0px;
  11148. border-radius:0px;
  11149. border-bottom-right-radius:0px;
  11150. border-bottom-left-radius:0px;
  11151. -moz-box-shadow:none;
  11152. -webkit-box-shadow:none;
  11153. box-shadow:none;
  11154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11155. font-weight:400;
  11156. font-style:normal;
  11157. font-size:10px;
  11158. color:#FFFFFF;
  11159. text-align:left;
  11160. }
  11161. #u1987 {
  11162. border-width:0px;
  11163. position:absolute;
  11164. left:943px;
  11165. top:422px;
  11166. width:103px;
  11167. height:18px;
  11168. display:flex;
  11169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11170. font-weight:400;
  11171. font-style:normal;
  11172. font-size:10px;
  11173. color:#FFFFFF;
  11174. text-align:left;
  11175. }
  11176. #u1987 .text {
  11177. position:absolute;
  11178. align-self:center;
  11179. padding:2px 2px 2px 0px;
  11180. box-sizing:border-box;
  11181. width:100%;
  11182. }
  11183. #u1987_text {
  11184. border-width:0px;
  11185. white-space:nowrap;
  11186. text-transform:none;
  11187. }
  11188. #u1988_img {
  11189. border-width:0px;
  11190. position:absolute;
  11191. left:0px;
  11192. top:0px;
  11193. width:50px;
  11194. height:59px;
  11195. }
  11196. #u1988 {
  11197. border-width:0px;
  11198. position:absolute;
  11199. left:884px;
  11200. top:374px;
  11201. width:50px;
  11202. height:59px;
  11203. display:flex;
  11204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11205. font-weight:400;
  11206. font-style:normal;
  11207. color:#FFFFFF;
  11208. }
  11209. #u1988 .text {
  11210. position:absolute;
  11211. align-self:center;
  11212. padding:2px 2px 2px 2px;
  11213. box-sizing:border-box;
  11214. width:100%;
  11215. }
  11216. #u1988_text {
  11217. border-width:0px;
  11218. word-wrap:break-word;
  11219. text-transform:none;
  11220. }
  11221. #u1989 {
  11222. border-width:0px;
  11223. position:absolute;
  11224. left:0px;
  11225. top:0px;
  11226. width:0px;
  11227. height:0px;
  11228. }
  11229. #u1990_div {
  11230. border-width:0px;
  11231. position:absolute;
  11232. left:0px;
  11233. top:0px;
  11234. width:254px;
  11235. height:82px;
  11236. background:inherit;
  11237. background-color:rgba(245, 154, 35, 0.0980392156862745);
  11238. box-sizing:border-box;
  11239. border-width:1px;
  11240. border-style:solid;
  11241. border-color:rgba(121, 121, 121, 1);
  11242. border-radius:0px;
  11243. -moz-box-shadow:none;
  11244. -webkit-box-shadow:none;
  11245. box-shadow:none;
  11246. }
  11247. #u1990 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:348px;
  11251. top:455px;
  11252. width:254px;
  11253. height:82px;
  11254. display:flex;
  11255. }
  11256. #u1990 .text {
  11257. position:absolute;
  11258. align-self:center;
  11259. padding:2px 2px 2px 2px;
  11260. box-sizing:border-box;
  11261. width:100%;
  11262. }
  11263. #u1990_text {
  11264. border-width:0px;
  11265. word-wrap:break-word;
  11266. text-transform:none;
  11267. visibility:hidden;
  11268. }
  11269. #u1991_div {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:0px;
  11273. top:0px;
  11274. width:31px;
  11275. height:24px;
  11276. background:inherit;
  11277. background-color:rgba(245, 154, 35, 0);
  11278. border:none;
  11279. border-left:0px;
  11280. border-top:0px;
  11281. border-right:0px;
  11282. border-radius:0px;
  11283. border-bottom-right-radius:0px;
  11284. border-bottom-left-radius:0px;
  11285. -moz-box-shadow:none;
  11286. -webkit-box-shadow:none;
  11287. box-shadow:none;
  11288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11289. font-weight:400;
  11290. font-style:normal;
  11291. font-size:14px;
  11292. color:#FFFFFF;
  11293. text-align:left;
  11294. }
  11295. #u1991 {
  11296. border-width:0px;
  11297. position:absolute;
  11298. left:415px;
  11299. top:462px;
  11300. width:31px;
  11301. height:24px;
  11302. display:flex;
  11303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11304. font-weight:400;
  11305. font-style:normal;
  11306. font-size:14px;
  11307. color:#FFFFFF;
  11308. text-align:left;
  11309. }
  11310. #u1991 .text {
  11311. position:absolute;
  11312. align-self:center;
  11313. padding:2px 2px 2px 0px;
  11314. box-sizing:border-box;
  11315. width:100%;
  11316. }
  11317. #u1991_text {
  11318. border-width:0px;
  11319. white-space:nowrap;
  11320. text-transform:none;
  11321. }
  11322. #u1992_div {
  11323. border-width:0px;
  11324. position:absolute;
  11325. left:0px;
  11326. top:0px;
  11327. width:35px;
  11328. height:21px;
  11329. background:inherit;
  11330. background-color:rgba(245, 154, 35, 1);
  11331. border:none;
  11332. border-radius:11px;
  11333. -moz-box-shadow:none;
  11334. -webkit-box-shadow:none;
  11335. box-shadow:none;
  11336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11337. font-weight:400;
  11338. font-style:normal;
  11339. font-size:12px;
  11340. color:#FFFFFF;
  11341. }
  11342. #u1992 {
  11343. border-width:0px;
  11344. position:absolute;
  11345. left:458px;
  11346. top:464px;
  11347. width:35px;
  11348. height:21px;
  11349. display:flex;
  11350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11351. font-weight:400;
  11352. font-style:normal;
  11353. font-size:12px;
  11354. color:#FFFFFF;
  11355. }
  11356. #u1992 .text {
  11357. position:absolute;
  11358. align-self:center;
  11359. padding:2px 2px 2px 2px;
  11360. box-sizing:border-box;
  11361. width:100%;
  11362. }
  11363. #u1992_text {
  11364. border-width:0px;
  11365. word-wrap:break-word;
  11366. text-transform:none;
  11367. }
  11368. #u1993_div {
  11369. border-width:0px;
  11370. position:absolute;
  11371. left:0px;
  11372. top:0px;
  11373. width:95px;
  11374. height:21px;
  11375. background:inherit;
  11376. background-color:rgba(245, 154, 35, 0);
  11377. border:none;
  11378. border-left:0px;
  11379. border-top:0px;
  11380. border-right:0px;
  11381. border-radius:0px;
  11382. border-bottom-right-radius:0px;
  11383. border-bottom-left-radius:0px;
  11384. -moz-box-shadow:none;
  11385. -webkit-box-shadow:none;
  11386. box-shadow:none;
  11387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11388. font-weight:400;
  11389. font-style:normal;
  11390. font-size:12px;
  11391. color:#FFFFFF;
  11392. text-align:left;
  11393. }
  11394. #u1993 {
  11395. border-width:0px;
  11396. position:absolute;
  11397. left:415px;
  11398. top:493px;
  11399. width:95px;
  11400. height:21px;
  11401. display:flex;
  11402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11403. font-weight:400;
  11404. font-style:normal;
  11405. font-size:12px;
  11406. color:#FFFFFF;
  11407. text-align:left;
  11408. }
  11409. #u1993 .text {
  11410. position:absolute;
  11411. align-self:center;
  11412. padding:2px 2px 2px 0px;
  11413. box-sizing:border-box;
  11414. width:100%;
  11415. }
  11416. #u1993_text {
  11417. border-width:0px;
  11418. white-space:nowrap;
  11419. text-transform:none;
  11420. }
  11421. #u1994_div {
  11422. border-width:0px;
  11423. position:absolute;
  11424. left:0px;
  11425. top:0px;
  11426. width:103px;
  11427. height:18px;
  11428. background:inherit;
  11429. background-color:rgba(245, 154, 35, 0);
  11430. border:none;
  11431. border-left:0px;
  11432. border-top:0px;
  11433. border-right:0px;
  11434. border-radius:0px;
  11435. border-bottom-right-radius:0px;
  11436. border-bottom-left-radius:0px;
  11437. -moz-box-shadow:none;
  11438. -webkit-box-shadow:none;
  11439. box-shadow:none;
  11440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11441. font-weight:400;
  11442. font-style:normal;
  11443. font-size:10px;
  11444. color:#FFFFFF;
  11445. text-align:left;
  11446. }
  11447. #u1994 {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:415px;
  11451. top:514px;
  11452. width:103px;
  11453. height:18px;
  11454. display:flex;
  11455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11456. font-weight:400;
  11457. font-style:normal;
  11458. font-size:10px;
  11459. color:#FFFFFF;
  11460. text-align:left;
  11461. }
  11462. #u1994 .text {
  11463. position:absolute;
  11464. align-self:center;
  11465. padding:2px 2px 2px 0px;
  11466. box-sizing:border-box;
  11467. width:100%;
  11468. }
  11469. #u1994_text {
  11470. border-width:0px;
  11471. white-space:nowrap;
  11472. text-transform:none;
  11473. }
  11474. #u1995_img {
  11475. border-width:0px;
  11476. position:absolute;
  11477. left:0px;
  11478. top:0px;
  11479. width:50px;
  11480. height:59px;
  11481. }
  11482. #u1995 {
  11483. border-width:0px;
  11484. position:absolute;
  11485. left:356px;
  11486. top:466px;
  11487. width:50px;
  11488. height:59px;
  11489. display:flex;
  11490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11491. font-weight:400;
  11492. font-style:normal;
  11493. color:#FFFFFF;
  11494. }
  11495. #u1995 .text {
  11496. position:absolute;
  11497. align-self:center;
  11498. padding:2px 2px 2px 2px;
  11499. box-sizing:border-box;
  11500. width:100%;
  11501. }
  11502. #u1995_text {
  11503. border-width:0px;
  11504. word-wrap:break-word;
  11505. text-transform:none;
  11506. }
  11507. #u1996 {
  11508. border-width:0px;
  11509. position:absolute;
  11510. left:0px;
  11511. top:0px;
  11512. width:0px;
  11513. height:0px;
  11514. }
  11515. #u1997_div {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:0px;
  11519. top:0px;
  11520. width:254px;
  11521. height:82px;
  11522. background:inherit;
  11523. background-color:rgba(245, 154, 35, 0.0980392156862745);
  11524. box-sizing:border-box;
  11525. border-width:1px;
  11526. border-style:solid;
  11527. border-color:rgba(121, 121, 121, 1);
  11528. border-radius:0px;
  11529. -moz-box-shadow:none;
  11530. -webkit-box-shadow:none;
  11531. box-shadow:none;
  11532. }
  11533. #u1997 {
  11534. border-width:0px;
  11535. position:absolute;
  11536. left:612px;
  11537. top:455px;
  11538. width:254px;
  11539. height:82px;
  11540. display:flex;
  11541. }
  11542. #u1997 .text {
  11543. position:absolute;
  11544. align-self:center;
  11545. padding:2px 2px 2px 2px;
  11546. box-sizing:border-box;
  11547. width:100%;
  11548. }
  11549. #u1997_text {
  11550. border-width:0px;
  11551. word-wrap:break-word;
  11552. text-transform:none;
  11553. visibility:hidden;
  11554. }
  11555. #u1998_div {
  11556. border-width:0px;
  11557. position:absolute;
  11558. left:0px;
  11559. top:0px;
  11560. width:45px;
  11561. height:24px;
  11562. background:inherit;
  11563. background-color:rgba(245, 154, 35, 0);
  11564. border:none;
  11565. border-left:0px;
  11566. border-top:0px;
  11567. border-right:0px;
  11568. border-radius:0px;
  11569. border-bottom-right-radius:0px;
  11570. border-bottom-left-radius:0px;
  11571. -moz-box-shadow:none;
  11572. -webkit-box-shadow:none;
  11573. box-shadow:none;
  11574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11575. font-weight:400;
  11576. font-style:normal;
  11577. font-size:14px;
  11578. color:#FFFFFF;
  11579. text-align:left;
  11580. }
  11581. #u1998 {
  11582. border-width:0px;
  11583. position:absolute;
  11584. left:679px;
  11585. top:462px;
  11586. width:45px;
  11587. height:24px;
  11588. display:flex;
  11589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11590. font-weight:400;
  11591. font-style:normal;
  11592. font-size:14px;
  11593. color:#FFFFFF;
  11594. text-align:left;
  11595. }
  11596. #u1998 .text {
  11597. position:absolute;
  11598. align-self:center;
  11599. padding:2px 2px 2px 0px;
  11600. box-sizing:border-box;
  11601. width:100%;
  11602. }
  11603. #u1998_text {
  11604. border-width:0px;
  11605. white-space:nowrap;
  11606. text-transform:none;
  11607. }
  11608. #u1999_div {
  11609. border-width:0px;
  11610. position:absolute;
  11611. left:0px;
  11612. top:0px;
  11613. width:95px;
  11614. height:21px;
  11615. background:inherit;
  11616. background-color:rgba(245, 154, 35, 0);
  11617. border:none;
  11618. border-left:0px;
  11619. border-top:0px;
  11620. border-right:0px;
  11621. border-radius:0px;
  11622. border-bottom-right-radius:0px;
  11623. border-bottom-left-radius:0px;
  11624. -moz-box-shadow:none;
  11625. -webkit-box-shadow:none;
  11626. box-shadow:none;
  11627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11628. font-weight:400;
  11629. font-style:normal;
  11630. font-size:12px;
  11631. color:#FFFFFF;
  11632. text-align:left;
  11633. }
  11634. #u1999 {
  11635. border-width:0px;
  11636. position:absolute;
  11637. left:679px;
  11638. top:493px;
  11639. width:95px;
  11640. height:21px;
  11641. display:flex;
  11642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11643. font-weight:400;
  11644. font-style:normal;
  11645. font-size:12px;
  11646. color:#FFFFFF;
  11647. text-align:left;
  11648. }
  11649. #u1999 .text {
  11650. position:absolute;
  11651. align-self:center;
  11652. padding:2px 2px 2px 0px;
  11653. box-sizing:border-box;
  11654. width:100%;
  11655. }
  11656. #u1999_text {
  11657. border-width:0px;
  11658. white-space:nowrap;
  11659. text-transform:none;
  11660. }
  11661. #u2000_div {
  11662. border-width:0px;
  11663. position:absolute;
  11664. left:0px;
  11665. top:0px;
  11666. width:103px;
  11667. height:18px;
  11668. background:inherit;
  11669. background-color:rgba(245, 154, 35, 0);
  11670. border:none;
  11671. border-left:0px;
  11672. border-top:0px;
  11673. border-right:0px;
  11674. border-radius:0px;
  11675. border-bottom-right-radius:0px;
  11676. border-bottom-left-radius:0px;
  11677. -moz-box-shadow:none;
  11678. -webkit-box-shadow:none;
  11679. box-shadow:none;
  11680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11681. font-weight:400;
  11682. font-style:normal;
  11683. font-size:10px;
  11684. color:#FFFFFF;
  11685. text-align:left;
  11686. }
  11687. #u2000 {
  11688. border-width:0px;
  11689. position:absolute;
  11690. left:679px;
  11691. top:514px;
  11692. width:103px;
  11693. height:18px;
  11694. display:flex;
  11695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11696. font-weight:400;
  11697. font-style:normal;
  11698. font-size:10px;
  11699. color:#FFFFFF;
  11700. text-align:left;
  11701. }
  11702. #u2000 .text {
  11703. position:absolute;
  11704. align-self:center;
  11705. padding:2px 2px 2px 0px;
  11706. box-sizing:border-box;
  11707. width:100%;
  11708. }
  11709. #u2000_text {
  11710. border-width:0px;
  11711. white-space:nowrap;
  11712. text-transform:none;
  11713. }
  11714. #u2001_img {
  11715. border-width:0px;
  11716. position:absolute;
  11717. left:0px;
  11718. top:0px;
  11719. width:50px;
  11720. height:59px;
  11721. }
  11722. #u2001 {
  11723. border-width:0px;
  11724. position:absolute;
  11725. left:620px;
  11726. top:466px;
  11727. width:50px;
  11728. height:59px;
  11729. display:flex;
  11730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11731. font-weight:400;
  11732. font-style:normal;
  11733. color:#FFFFFF;
  11734. }
  11735. #u2001 .text {
  11736. position:absolute;
  11737. align-self:center;
  11738. padding:2px 2px 2px 2px;
  11739. box-sizing:border-box;
  11740. width:100%;
  11741. }
  11742. #u2001_text {
  11743. border-width:0px;
  11744. word-wrap:break-word;
  11745. text-transform:none;
  11746. }
  11747. #u2002 {
  11748. border-width:0px;
  11749. position:absolute;
  11750. left:0px;
  11751. top:0px;
  11752. width:0px;
  11753. height:0px;
  11754. }
  11755. #u2003_div {
  11756. border-width:0px;
  11757. position:absolute;
  11758. left:0px;
  11759. top:0px;
  11760. width:254px;
  11761. height:82px;
  11762. background:inherit;
  11763. background-color:rgba(245, 154, 35, 0.0980392156862745);
  11764. box-sizing:border-box;
  11765. border-width:1px;
  11766. border-style:solid;
  11767. border-color:rgba(121, 121, 121, 1);
  11768. border-radius:0px;
  11769. -moz-box-shadow:none;
  11770. -webkit-box-shadow:none;
  11771. box-shadow:none;
  11772. }
  11773. #u2003 {
  11774. border-width:0px;
  11775. position:absolute;
  11776. left:876px;
  11777. top:455px;
  11778. width:254px;
  11779. height:82px;
  11780. display:flex;
  11781. }
  11782. #u2003 .text {
  11783. position:absolute;
  11784. align-self:center;
  11785. padding:2px 2px 2px 2px;
  11786. box-sizing:border-box;
  11787. width:100%;
  11788. }
  11789. #u2003_text {
  11790. border-width:0px;
  11791. word-wrap:break-word;
  11792. text-transform:none;
  11793. visibility:hidden;
  11794. }
  11795. #u2004_div {
  11796. border-width:0px;
  11797. position:absolute;
  11798. left:0px;
  11799. top:0px;
  11800. width:31px;
  11801. height:24px;
  11802. background:inherit;
  11803. background-color:rgba(245, 154, 35, 0);
  11804. border:none;
  11805. border-left:0px;
  11806. border-top:0px;
  11807. border-right:0px;
  11808. border-radius:0px;
  11809. border-bottom-right-radius:0px;
  11810. border-bottom-left-radius:0px;
  11811. -moz-box-shadow:none;
  11812. -webkit-box-shadow:none;
  11813. box-shadow:none;
  11814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11815. font-weight:400;
  11816. font-style:normal;
  11817. font-size:14px;
  11818. color:#FFFFFF;
  11819. text-align:left;
  11820. }
  11821. #u2004 {
  11822. border-width:0px;
  11823. position:absolute;
  11824. left:943px;
  11825. top:462px;
  11826. width:31px;
  11827. height:24px;
  11828. display:flex;
  11829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11830. font-weight:400;
  11831. font-style:normal;
  11832. font-size:14px;
  11833. color:#FFFFFF;
  11834. text-align:left;
  11835. }
  11836. #u2004 .text {
  11837. position:absolute;
  11838. align-self:center;
  11839. padding:2px 2px 2px 0px;
  11840. box-sizing:border-box;
  11841. width:100%;
  11842. }
  11843. #u2004_text {
  11844. border-width:0px;
  11845. white-space:nowrap;
  11846. text-transform:none;
  11847. }
  11848. #u2005_div {
  11849. border-width:0px;
  11850. position:absolute;
  11851. left:0px;
  11852. top:0px;
  11853. width:35px;
  11854. height:21px;
  11855. background:inherit;
  11856. background-color:rgba(245, 154, 35, 1);
  11857. border:none;
  11858. border-radius:11px;
  11859. -moz-box-shadow:none;
  11860. -webkit-box-shadow:none;
  11861. box-shadow:none;
  11862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11863. font-weight:400;
  11864. font-style:normal;
  11865. font-size:12px;
  11866. color:#FFFFFF;
  11867. }
  11868. #u2005 {
  11869. border-width:0px;
  11870. position:absolute;
  11871. left:978px;
  11872. top:464px;
  11873. width:35px;
  11874. height:21px;
  11875. display:flex;
  11876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11877. font-weight:400;
  11878. font-style:normal;
  11879. font-size:12px;
  11880. color:#FFFFFF;
  11881. }
  11882. #u2005 .text {
  11883. position:absolute;
  11884. align-self:center;
  11885. padding:2px 2px 2px 2px;
  11886. box-sizing:border-box;
  11887. width:100%;
  11888. }
  11889. #u2005_text {
  11890. border-width:0px;
  11891. word-wrap:break-word;
  11892. text-transform:none;
  11893. }
  11894. #u2006_div {
  11895. border-width:0px;
  11896. position:absolute;
  11897. left:0px;
  11898. top:0px;
  11899. width:71px;
  11900. height:21px;
  11901. background:inherit;
  11902. background-color:rgba(245, 154, 35, 0);
  11903. border:none;
  11904. border-left:0px;
  11905. border-top:0px;
  11906. border-right:0px;
  11907. border-radius:0px;
  11908. border-bottom-right-radius:0px;
  11909. border-bottom-left-radius:0px;
  11910. -moz-box-shadow:none;
  11911. -webkit-box-shadow:none;
  11912. box-shadow:none;
  11913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11914. font-weight:400;
  11915. font-style:normal;
  11916. font-size:12px;
  11917. color:#FFFFFF;
  11918. text-align:left;
  11919. }
  11920. #u2006 {
  11921. border-width:0px;
  11922. position:absolute;
  11923. left:943px;
  11924. top:493px;
  11925. width:71px;
  11926. height:21px;
  11927. display:flex;
  11928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11929. font-weight:400;
  11930. font-style:normal;
  11931. font-size:12px;
  11932. color:#FFFFFF;
  11933. text-align:left;
  11934. }
  11935. #u2006 .text {
  11936. position:absolute;
  11937. align-self:center;
  11938. padding:2px 2px 2px 0px;
  11939. box-sizing:border-box;
  11940. width:100%;
  11941. }
  11942. #u2006_text {
  11943. border-width:0px;
  11944. white-space:nowrap;
  11945. text-transform:none;
  11946. }
  11947. #u2007_div {
  11948. border-width:0px;
  11949. position:absolute;
  11950. left:0px;
  11951. top:0px;
  11952. width:103px;
  11953. height:18px;
  11954. background:inherit;
  11955. background-color:rgba(245, 154, 35, 0);
  11956. border:none;
  11957. border-left:0px;
  11958. border-top:0px;
  11959. border-right:0px;
  11960. border-radius:0px;
  11961. border-bottom-right-radius:0px;
  11962. border-bottom-left-radius:0px;
  11963. -moz-box-shadow:none;
  11964. -webkit-box-shadow:none;
  11965. box-shadow:none;
  11966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11967. font-weight:400;
  11968. font-style:normal;
  11969. font-size:10px;
  11970. color:#FFFFFF;
  11971. text-align:left;
  11972. }
  11973. #u2007 {
  11974. border-width:0px;
  11975. position:absolute;
  11976. left:943px;
  11977. top:514px;
  11978. width:103px;
  11979. height:18px;
  11980. display:flex;
  11981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11982. font-weight:400;
  11983. font-style:normal;
  11984. font-size:10px;
  11985. color:#FFFFFF;
  11986. text-align:left;
  11987. }
  11988. #u2007 .text {
  11989. position:absolute;
  11990. align-self:center;
  11991. padding:2px 2px 2px 0px;
  11992. box-sizing:border-box;
  11993. width:100%;
  11994. }
  11995. #u2007_text {
  11996. border-width:0px;
  11997. white-space:nowrap;
  11998. text-transform:none;
  11999. }
  12000. #u2008_img {
  12001. border-width:0px;
  12002. position:absolute;
  12003. left:0px;
  12004. top:0px;
  12005. width:50px;
  12006. height:59px;
  12007. }
  12008. #u2008 {
  12009. border-width:0px;
  12010. position:absolute;
  12011. left:884px;
  12012. top:466px;
  12013. width:50px;
  12014. height:59px;
  12015. display:flex;
  12016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12017. font-weight:400;
  12018. font-style:normal;
  12019. color:#FFFFFF;
  12020. }
  12021. #u2008 .text {
  12022. position:absolute;
  12023. align-self:center;
  12024. padding:2px 2px 2px 2px;
  12025. box-sizing:border-box;
  12026. width:100%;
  12027. }
  12028. #u2008_text {
  12029. border-width:0px;
  12030. word-wrap:break-word;
  12031. text-transform:none;
  12032. }
  12033. #u2009 {
  12034. border-width:0px;
  12035. position:absolute;
  12036. left:0px;
  12037. top:0px;
  12038. width:0px;
  12039. height:0px;
  12040. }
  12041. #u2010_div {
  12042. border-width:0px;
  12043. position:absolute;
  12044. left:0px;
  12045. top:0px;
  12046. width:254px;
  12047. height:82px;
  12048. background:inherit;
  12049. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12050. box-sizing:border-box;
  12051. border-width:1px;
  12052. border-style:solid;
  12053. border-color:rgba(121, 121, 121, 1);
  12054. border-radius:0px;
  12055. -moz-box-shadow:none;
  12056. -webkit-box-shadow:none;
  12057. box-shadow:none;
  12058. }
  12059. #u2010 {
  12060. border-width:0px;
  12061. position:absolute;
  12062. left:348px;
  12063. top:547px;
  12064. width:254px;
  12065. height:82px;
  12066. display:flex;
  12067. }
  12068. #u2010 .text {
  12069. position:absolute;
  12070. align-self:center;
  12071. padding:2px 2px 2px 2px;
  12072. box-sizing:border-box;
  12073. width:100%;
  12074. }
  12075. #u2010_text {
  12076. border-width:0px;
  12077. word-wrap:break-word;
  12078. text-transform:none;
  12079. visibility:hidden;
  12080. }
  12081. #u2011_div {
  12082. border-width:0px;
  12083. position:absolute;
  12084. left:0px;
  12085. top:0px;
  12086. width:31px;
  12087. height:24px;
  12088. background:inherit;
  12089. background-color:rgba(245, 154, 35, 0);
  12090. border:none;
  12091. border-left:0px;
  12092. border-top:0px;
  12093. border-right:0px;
  12094. border-radius:0px;
  12095. border-bottom-right-radius:0px;
  12096. border-bottom-left-radius:0px;
  12097. -moz-box-shadow:none;
  12098. -webkit-box-shadow:none;
  12099. box-shadow:none;
  12100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12101. font-weight:400;
  12102. font-style:normal;
  12103. font-size:14px;
  12104. color:#FFFFFF;
  12105. text-align:left;
  12106. }
  12107. #u2011 {
  12108. border-width:0px;
  12109. position:absolute;
  12110. left:415px;
  12111. top:554px;
  12112. width:31px;
  12113. height:24px;
  12114. display:flex;
  12115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12116. font-weight:400;
  12117. font-style:normal;
  12118. font-size:14px;
  12119. color:#FFFFFF;
  12120. text-align:left;
  12121. }
  12122. #u2011 .text {
  12123. position:absolute;
  12124. align-self:center;
  12125. padding:2px 2px 2px 0px;
  12126. box-sizing:border-box;
  12127. width:100%;
  12128. }
  12129. #u2011_text {
  12130. border-width:0px;
  12131. white-space:nowrap;
  12132. text-transform:none;
  12133. }
  12134. #u2012_div {
  12135. border-width:0px;
  12136. position:absolute;
  12137. left:0px;
  12138. top:0px;
  12139. width:35px;
  12140. height:21px;
  12141. background:inherit;
  12142. background-color:rgba(245, 154, 35, 1);
  12143. border:none;
  12144. border-radius:11px;
  12145. -moz-box-shadow:none;
  12146. -webkit-box-shadow:none;
  12147. box-shadow:none;
  12148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12149. font-weight:400;
  12150. font-style:normal;
  12151. font-size:12px;
  12152. color:#FFFFFF;
  12153. }
  12154. #u2012 {
  12155. border-width:0px;
  12156. position:absolute;
  12157. left:458px;
  12158. top:556px;
  12159. width:35px;
  12160. height:21px;
  12161. display:flex;
  12162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12163. font-weight:400;
  12164. font-style:normal;
  12165. font-size:12px;
  12166. color:#FFFFFF;
  12167. }
  12168. #u2012 .text {
  12169. position:absolute;
  12170. align-self:center;
  12171. padding:2px 2px 2px 2px;
  12172. box-sizing:border-box;
  12173. width:100%;
  12174. }
  12175. #u2012_text {
  12176. border-width:0px;
  12177. word-wrap:break-word;
  12178. text-transform:none;
  12179. }
  12180. #u2013_div {
  12181. border-width:0px;
  12182. position:absolute;
  12183. left:0px;
  12184. top:0px;
  12185. width:95px;
  12186. height:21px;
  12187. background:inherit;
  12188. background-color:rgba(245, 154, 35, 0);
  12189. border:none;
  12190. border-left:0px;
  12191. border-top:0px;
  12192. border-right:0px;
  12193. border-radius:0px;
  12194. border-bottom-right-radius:0px;
  12195. border-bottom-left-radius:0px;
  12196. -moz-box-shadow:none;
  12197. -webkit-box-shadow:none;
  12198. box-shadow:none;
  12199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12200. font-weight:400;
  12201. font-style:normal;
  12202. font-size:12px;
  12203. color:#FFFFFF;
  12204. text-align:left;
  12205. }
  12206. #u2013 {
  12207. border-width:0px;
  12208. position:absolute;
  12209. left:415px;
  12210. top:585px;
  12211. width:95px;
  12212. height:21px;
  12213. display:flex;
  12214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12215. font-weight:400;
  12216. font-style:normal;
  12217. font-size:12px;
  12218. color:#FFFFFF;
  12219. text-align:left;
  12220. }
  12221. #u2013 .text {
  12222. position:absolute;
  12223. align-self:center;
  12224. padding:2px 2px 2px 0px;
  12225. box-sizing:border-box;
  12226. width:100%;
  12227. }
  12228. #u2013_text {
  12229. border-width:0px;
  12230. white-space:nowrap;
  12231. text-transform:none;
  12232. }
  12233. #u2014_div {
  12234. border-width:0px;
  12235. position:absolute;
  12236. left:0px;
  12237. top:0px;
  12238. width:103px;
  12239. height:18px;
  12240. background:inherit;
  12241. background-color:rgba(245, 154, 35, 0);
  12242. border:none;
  12243. border-left:0px;
  12244. border-top:0px;
  12245. border-right:0px;
  12246. border-radius:0px;
  12247. border-bottom-right-radius:0px;
  12248. border-bottom-left-radius:0px;
  12249. -moz-box-shadow:none;
  12250. -webkit-box-shadow:none;
  12251. box-shadow:none;
  12252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12253. font-weight:400;
  12254. font-style:normal;
  12255. font-size:10px;
  12256. color:#FFFFFF;
  12257. text-align:left;
  12258. }
  12259. #u2014 {
  12260. border-width:0px;
  12261. position:absolute;
  12262. left:415px;
  12263. top:606px;
  12264. width:103px;
  12265. height:18px;
  12266. display:flex;
  12267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12268. font-weight:400;
  12269. font-style:normal;
  12270. font-size:10px;
  12271. color:#FFFFFF;
  12272. text-align:left;
  12273. }
  12274. #u2014 .text {
  12275. position:absolute;
  12276. align-self:center;
  12277. padding:2px 2px 2px 0px;
  12278. box-sizing:border-box;
  12279. width:100%;
  12280. }
  12281. #u2014_text {
  12282. border-width:0px;
  12283. white-space:nowrap;
  12284. text-transform:none;
  12285. }
  12286. #u2015_img {
  12287. border-width:0px;
  12288. position:absolute;
  12289. left:0px;
  12290. top:0px;
  12291. width:50px;
  12292. height:59px;
  12293. }
  12294. #u2015 {
  12295. border-width:0px;
  12296. position:absolute;
  12297. left:356px;
  12298. top:558px;
  12299. width:50px;
  12300. height:59px;
  12301. display:flex;
  12302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12303. font-weight:400;
  12304. font-style:normal;
  12305. color:#FFFFFF;
  12306. }
  12307. #u2015 .text {
  12308. position:absolute;
  12309. align-self:center;
  12310. padding:2px 2px 2px 2px;
  12311. box-sizing:border-box;
  12312. width:100%;
  12313. }
  12314. #u2015_text {
  12315. border-width:0px;
  12316. word-wrap:break-word;
  12317. text-transform:none;
  12318. }
  12319. #u2016 {
  12320. border-width:0px;
  12321. position:absolute;
  12322. left:0px;
  12323. top:0px;
  12324. width:0px;
  12325. height:0px;
  12326. }
  12327. #u2017_div {
  12328. border-width:0px;
  12329. position:absolute;
  12330. left:0px;
  12331. top:0px;
  12332. width:254px;
  12333. height:82px;
  12334. background:inherit;
  12335. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12336. box-sizing:border-box;
  12337. border-width:1px;
  12338. border-style:solid;
  12339. border-color:rgba(121, 121, 121, 1);
  12340. border-radius:0px;
  12341. -moz-box-shadow:none;
  12342. -webkit-box-shadow:none;
  12343. box-shadow:none;
  12344. }
  12345. #u2017 {
  12346. border-width:0px;
  12347. position:absolute;
  12348. left:612px;
  12349. top:547px;
  12350. width:254px;
  12351. height:82px;
  12352. display:flex;
  12353. }
  12354. #u2017 .text {
  12355. position:absolute;
  12356. align-self:center;
  12357. padding:2px 2px 2px 2px;
  12358. box-sizing:border-box;
  12359. width:100%;
  12360. }
  12361. #u2017_text {
  12362. border-width:0px;
  12363. word-wrap:break-word;
  12364. text-transform:none;
  12365. visibility:hidden;
  12366. }
  12367. #u2018_div {
  12368. border-width:0px;
  12369. position:absolute;
  12370. left:0px;
  12371. top:0px;
  12372. width:45px;
  12373. height:24px;
  12374. background:inherit;
  12375. background-color:rgba(245, 154, 35, 0);
  12376. border:none;
  12377. border-left:0px;
  12378. border-top:0px;
  12379. border-right:0px;
  12380. border-radius:0px;
  12381. border-bottom-right-radius:0px;
  12382. border-bottom-left-radius:0px;
  12383. -moz-box-shadow:none;
  12384. -webkit-box-shadow:none;
  12385. box-shadow:none;
  12386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12387. font-weight:400;
  12388. font-style:normal;
  12389. font-size:14px;
  12390. color:#FFFFFF;
  12391. text-align:left;
  12392. }
  12393. #u2018 {
  12394. border-width:0px;
  12395. position:absolute;
  12396. left:679px;
  12397. top:554px;
  12398. width:45px;
  12399. height:24px;
  12400. display:flex;
  12401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12402. font-weight:400;
  12403. font-style:normal;
  12404. font-size:14px;
  12405. color:#FFFFFF;
  12406. text-align:left;
  12407. }
  12408. #u2018 .text {
  12409. position:absolute;
  12410. align-self:center;
  12411. padding:2px 2px 2px 0px;
  12412. box-sizing:border-box;
  12413. width:100%;
  12414. }
  12415. #u2018_text {
  12416. border-width:0px;
  12417. white-space:nowrap;
  12418. text-transform:none;
  12419. }
  12420. #u2019_div {
  12421. border-width:0px;
  12422. position:absolute;
  12423. left:0px;
  12424. top:0px;
  12425. width:95px;
  12426. height:21px;
  12427. background:inherit;
  12428. background-color:rgba(245, 154, 35, 0);
  12429. border:none;
  12430. border-left:0px;
  12431. border-top:0px;
  12432. border-right:0px;
  12433. border-radius:0px;
  12434. border-bottom-right-radius:0px;
  12435. border-bottom-left-radius:0px;
  12436. -moz-box-shadow:none;
  12437. -webkit-box-shadow:none;
  12438. box-shadow:none;
  12439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12440. font-weight:400;
  12441. font-style:normal;
  12442. font-size:12px;
  12443. color:#FFFFFF;
  12444. text-align:left;
  12445. }
  12446. #u2019 {
  12447. border-width:0px;
  12448. position:absolute;
  12449. left:679px;
  12450. top:585px;
  12451. width:95px;
  12452. height:21px;
  12453. display:flex;
  12454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12455. font-weight:400;
  12456. font-style:normal;
  12457. font-size:12px;
  12458. color:#FFFFFF;
  12459. text-align:left;
  12460. }
  12461. #u2019 .text {
  12462. position:absolute;
  12463. align-self:center;
  12464. padding:2px 2px 2px 0px;
  12465. box-sizing:border-box;
  12466. width:100%;
  12467. }
  12468. #u2019_text {
  12469. border-width:0px;
  12470. white-space:nowrap;
  12471. text-transform:none;
  12472. }
  12473. #u2020_div {
  12474. border-width:0px;
  12475. position:absolute;
  12476. left:0px;
  12477. top:0px;
  12478. width:103px;
  12479. height:18px;
  12480. background:inherit;
  12481. background-color:rgba(245, 154, 35, 0);
  12482. border:none;
  12483. border-left:0px;
  12484. border-top:0px;
  12485. border-right:0px;
  12486. border-radius:0px;
  12487. border-bottom-right-radius:0px;
  12488. border-bottom-left-radius:0px;
  12489. -moz-box-shadow:none;
  12490. -webkit-box-shadow:none;
  12491. box-shadow:none;
  12492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12493. font-weight:400;
  12494. font-style:normal;
  12495. font-size:10px;
  12496. color:#FFFFFF;
  12497. text-align:left;
  12498. }
  12499. #u2020 {
  12500. border-width:0px;
  12501. position:absolute;
  12502. left:679px;
  12503. top:606px;
  12504. width:103px;
  12505. height:18px;
  12506. display:flex;
  12507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12508. font-weight:400;
  12509. font-style:normal;
  12510. font-size:10px;
  12511. color:#FFFFFF;
  12512. text-align:left;
  12513. }
  12514. #u2020 .text {
  12515. position:absolute;
  12516. align-self:center;
  12517. padding:2px 2px 2px 0px;
  12518. box-sizing:border-box;
  12519. width:100%;
  12520. }
  12521. #u2020_text {
  12522. border-width:0px;
  12523. white-space:nowrap;
  12524. text-transform:none;
  12525. }
  12526. #u2021_img {
  12527. border-width:0px;
  12528. position:absolute;
  12529. left:0px;
  12530. top:0px;
  12531. width:50px;
  12532. height:59px;
  12533. }
  12534. #u2021 {
  12535. border-width:0px;
  12536. position:absolute;
  12537. left:620px;
  12538. top:558px;
  12539. width:50px;
  12540. height:59px;
  12541. display:flex;
  12542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12543. font-weight:400;
  12544. font-style:normal;
  12545. color:#FFFFFF;
  12546. }
  12547. #u2021 .text {
  12548. position:absolute;
  12549. align-self:center;
  12550. padding:2px 2px 2px 2px;
  12551. box-sizing:border-box;
  12552. width:100%;
  12553. }
  12554. #u2021_text {
  12555. border-width:0px;
  12556. word-wrap:break-word;
  12557. text-transform:none;
  12558. }
  12559. #u2022 {
  12560. border-width:0px;
  12561. position:absolute;
  12562. left:0px;
  12563. top:0px;
  12564. width:0px;
  12565. height:0px;
  12566. }
  12567. #u2023_div {
  12568. border-width:0px;
  12569. position:absolute;
  12570. left:0px;
  12571. top:0px;
  12572. width:254px;
  12573. height:82px;
  12574. background:inherit;
  12575. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12576. box-sizing:border-box;
  12577. border-width:1px;
  12578. border-style:solid;
  12579. border-color:rgba(121, 121, 121, 1);
  12580. border-radius:0px;
  12581. -moz-box-shadow:none;
  12582. -webkit-box-shadow:none;
  12583. box-shadow:none;
  12584. }
  12585. #u2023 {
  12586. border-width:0px;
  12587. position:absolute;
  12588. left:876px;
  12589. top:547px;
  12590. width:254px;
  12591. height:82px;
  12592. display:flex;
  12593. }
  12594. #u2023 .text {
  12595. position:absolute;
  12596. align-self:center;
  12597. padding:2px 2px 2px 2px;
  12598. box-sizing:border-box;
  12599. width:100%;
  12600. }
  12601. #u2023_text {
  12602. border-width:0px;
  12603. word-wrap:break-word;
  12604. text-transform:none;
  12605. visibility:hidden;
  12606. }
  12607. #u2024_div {
  12608. border-width:0px;
  12609. position:absolute;
  12610. left:0px;
  12611. top:0px;
  12612. width:31px;
  12613. height:24px;
  12614. background:inherit;
  12615. background-color:rgba(245, 154, 35, 0);
  12616. border:none;
  12617. border-left:0px;
  12618. border-top:0px;
  12619. border-right:0px;
  12620. border-radius:0px;
  12621. border-bottom-right-radius:0px;
  12622. border-bottom-left-radius:0px;
  12623. -moz-box-shadow:none;
  12624. -webkit-box-shadow:none;
  12625. box-shadow:none;
  12626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12627. font-weight:400;
  12628. font-style:normal;
  12629. font-size:14px;
  12630. color:#FFFFFF;
  12631. text-align:left;
  12632. }
  12633. #u2024 {
  12634. border-width:0px;
  12635. position:absolute;
  12636. left:943px;
  12637. top:554px;
  12638. width:31px;
  12639. height:24px;
  12640. display:flex;
  12641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12642. font-weight:400;
  12643. font-style:normal;
  12644. font-size:14px;
  12645. color:#FFFFFF;
  12646. text-align:left;
  12647. }
  12648. #u2024 .text {
  12649. position:absolute;
  12650. align-self:center;
  12651. padding:2px 2px 2px 0px;
  12652. box-sizing:border-box;
  12653. width:100%;
  12654. }
  12655. #u2024_text {
  12656. border-width:0px;
  12657. white-space:nowrap;
  12658. text-transform:none;
  12659. }
  12660. #u2025_div {
  12661. border-width:0px;
  12662. position:absolute;
  12663. left:0px;
  12664. top:0px;
  12665. width:35px;
  12666. height:21px;
  12667. background:inherit;
  12668. background-color:rgba(245, 154, 35, 1);
  12669. border:none;
  12670. border-radius:11px;
  12671. -moz-box-shadow:none;
  12672. -webkit-box-shadow:none;
  12673. box-shadow:none;
  12674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12675. font-weight:400;
  12676. font-style:normal;
  12677. font-size:12px;
  12678. color:#FFFFFF;
  12679. }
  12680. #u2025 {
  12681. border-width:0px;
  12682. position:absolute;
  12683. left:978px;
  12684. top:556px;
  12685. width:35px;
  12686. height:21px;
  12687. display:flex;
  12688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12689. font-weight:400;
  12690. font-style:normal;
  12691. font-size:12px;
  12692. color:#FFFFFF;
  12693. }
  12694. #u2025 .text {
  12695. position:absolute;
  12696. align-self:center;
  12697. padding:2px 2px 2px 2px;
  12698. box-sizing:border-box;
  12699. width:100%;
  12700. }
  12701. #u2025_text {
  12702. border-width:0px;
  12703. word-wrap:break-word;
  12704. text-transform:none;
  12705. }
  12706. #u2026_div {
  12707. border-width:0px;
  12708. position:absolute;
  12709. left:0px;
  12710. top:0px;
  12711. width:71px;
  12712. height:21px;
  12713. background:inherit;
  12714. background-color:rgba(245, 154, 35, 0);
  12715. border:none;
  12716. border-left:0px;
  12717. border-top:0px;
  12718. border-right:0px;
  12719. border-radius:0px;
  12720. border-bottom-right-radius:0px;
  12721. border-bottom-left-radius:0px;
  12722. -moz-box-shadow:none;
  12723. -webkit-box-shadow:none;
  12724. box-shadow:none;
  12725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12726. font-weight:400;
  12727. font-style:normal;
  12728. font-size:12px;
  12729. color:#FFFFFF;
  12730. text-align:left;
  12731. }
  12732. #u2026 {
  12733. border-width:0px;
  12734. position:absolute;
  12735. left:943px;
  12736. top:585px;
  12737. width:71px;
  12738. height:21px;
  12739. display:flex;
  12740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12741. font-weight:400;
  12742. font-style:normal;
  12743. font-size:12px;
  12744. color:#FFFFFF;
  12745. text-align:left;
  12746. }
  12747. #u2026 .text {
  12748. position:absolute;
  12749. align-self:center;
  12750. padding:2px 2px 2px 0px;
  12751. box-sizing:border-box;
  12752. width:100%;
  12753. }
  12754. #u2026_text {
  12755. border-width:0px;
  12756. white-space:nowrap;
  12757. text-transform:none;
  12758. }
  12759. #u2027_div {
  12760. border-width:0px;
  12761. position:absolute;
  12762. left:0px;
  12763. top:0px;
  12764. width:103px;
  12765. height:18px;
  12766. background:inherit;
  12767. background-color:rgba(245, 154, 35, 0);
  12768. border:none;
  12769. border-left:0px;
  12770. border-top:0px;
  12771. border-right:0px;
  12772. border-radius:0px;
  12773. border-bottom-right-radius:0px;
  12774. border-bottom-left-radius:0px;
  12775. -moz-box-shadow:none;
  12776. -webkit-box-shadow:none;
  12777. box-shadow:none;
  12778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12779. font-weight:400;
  12780. font-style:normal;
  12781. font-size:10px;
  12782. color:#FFFFFF;
  12783. text-align:left;
  12784. }
  12785. #u2027 {
  12786. border-width:0px;
  12787. position:absolute;
  12788. left:943px;
  12789. top:606px;
  12790. width:103px;
  12791. height:18px;
  12792. display:flex;
  12793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12794. font-weight:400;
  12795. font-style:normal;
  12796. font-size:10px;
  12797. color:#FFFFFF;
  12798. text-align:left;
  12799. }
  12800. #u2027 .text {
  12801. position:absolute;
  12802. align-self:center;
  12803. padding:2px 2px 2px 0px;
  12804. box-sizing:border-box;
  12805. width:100%;
  12806. }
  12807. #u2027_text {
  12808. border-width:0px;
  12809. white-space:nowrap;
  12810. text-transform:none;
  12811. }
  12812. #u2028_img {
  12813. border-width:0px;
  12814. position:absolute;
  12815. left:0px;
  12816. top:0px;
  12817. width:50px;
  12818. height:59px;
  12819. }
  12820. #u2028 {
  12821. border-width:0px;
  12822. position:absolute;
  12823. left:884px;
  12824. top:558px;
  12825. width:50px;
  12826. height:59px;
  12827. display:flex;
  12828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12829. font-weight:400;
  12830. font-style:normal;
  12831. color:#FFFFFF;
  12832. }
  12833. #u2028 .text {
  12834. position:absolute;
  12835. align-self:center;
  12836. padding:2px 2px 2px 2px;
  12837. box-sizing:border-box;
  12838. width:100%;
  12839. }
  12840. #u2028_text {
  12841. border-width:0px;
  12842. word-wrap:break-word;
  12843. text-transform:none;
  12844. }