styles.css 252 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888
  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. #u1721_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1510px;
  25. height:858px;
  26. }
  27. #u1721 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1510px;
  33. height:858px;
  34. display:flex;
  35. }
  36. #u1721 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u1721_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u1722_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. #u1722 {
  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. #u1722 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 10px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u1722_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. }
  105. #u1723_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. #u1723 {
  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. #u1723 .text {
  150. position:absolute;
  151. align-self:center;
  152. padding:2px 2px 2px 10px;
  153. box-sizing:border-box;
  154. width:100%;
  155. }
  156. #u1723_text {
  157. border-width:0px;
  158. word-wrap:break-word;
  159. text-transform:none;
  160. }
  161. #u1724_img {
  162. border-width:0px;
  163. position:absolute;
  164. left:0px;
  165. top:0px;
  166. width:96px;
  167. height:96px;
  168. }
  169. #u1724 {
  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. #u1724 .text {
  182. position:absolute;
  183. align-self:center;
  184. padding:2px 2px 2px 2px;
  185. box-sizing:border-box;
  186. width:100%;
  187. }
  188. #u1724_text {
  189. border-width:0px;
  190. word-wrap:break-word;
  191. text-transform:none;
  192. }
  193. #u1725_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. #u1725 {
  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. #u1725 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:2px 2px 2px 2px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u1725_text {
  239. border-width:0px;
  240. white-space:nowrap;
  241. text-transform:none;
  242. }
  243. #u1726_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. #u1726 {
  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. #u1726 .text {
  282. position:absolute;
  283. align-self:center;
  284. padding:2px 2px 2px 2px;
  285. box-sizing:border-box;
  286. width:100%;
  287. }
  288. #u1726_text {
  289. border-width:0px;
  290. white-space:nowrap;
  291. text-transform:none;
  292. }
  293. #u1727_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. #u1727 {
  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. #u1727 .text {
  333. position:absolute;
  334. align-self:center;
  335. padding:2px 2px 2px 2px;
  336. box-sizing:border-box;
  337. width:100%;
  338. }
  339. #u1727_text {
  340. border-width:0px;
  341. white-space:nowrap;
  342. text-transform:none;
  343. }
  344. #u1728_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. #u1728 {
  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. #u1728 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 10px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u1728_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. }
  400. #u1729_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. #u1729 {
  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. #u1729 .text {
  439. position:absolute;
  440. align-self:center;
  441. padding:2px 2px 2px 2px;
  442. box-sizing:border-box;
  443. width:100%;
  444. }
  445. #u1729_text {
  446. border-width:0px;
  447. white-space:nowrap;
  448. text-transform:none;
  449. }
  450. #u1730 {
  451. border-width:0px;
  452. position:absolute;
  453. left:0px;
  454. top:0px;
  455. width:0px;
  456. height:0px;
  457. }
  458. #u1731_img {
  459. border-width:0px;
  460. position:absolute;
  461. left:0px;
  462. top:0px;
  463. width:114px;
  464. height:80px;
  465. }
  466. #u1731 {
  467. border-width:0px;
  468. position:absolute;
  469. left:1207px;
  470. top:-325px;
  471. width:114px;
  472. height:80px;
  473. display:flex;
  474. }
  475. #u1731 .text {
  476. position:absolute;
  477. align-self:center;
  478. padding:2px 2px 2px 2px;
  479. box-sizing:border-box;
  480. width:100%;
  481. }
  482. #u1731_text {
  483. border-width:0px;
  484. word-wrap:break-word;
  485. text-transform:none;
  486. visibility:hidden;
  487. }
  488. #u1732_img {
  489. border-width:0px;
  490. position:absolute;
  491. left:0px;
  492. top:0px;
  493. width:114px;
  494. height:80px;
  495. }
  496. #u1732 {
  497. border-width:0px;
  498. position:absolute;
  499. left:1327px;
  500. top:-325px;
  501. width:114px;
  502. height:80px;
  503. display:flex;
  504. }
  505. #u1732 .text {
  506. position:absolute;
  507. align-self:center;
  508. padding:2px 2px 2px 2px;
  509. box-sizing:border-box;
  510. width:100%;
  511. }
  512. #u1732_text {
  513. border-width:0px;
  514. word-wrap:break-word;
  515. text-transform:none;
  516. visibility:hidden;
  517. }
  518. #u1733_img {
  519. border-width:0px;
  520. position:absolute;
  521. left:0px;
  522. top:0px;
  523. width:114px;
  524. height:80px;
  525. }
  526. #u1733 {
  527. border-width:0px;
  528. position:absolute;
  529. left:1207px;
  530. top:-240px;
  531. width:114px;
  532. height:80px;
  533. display:flex;
  534. }
  535. #u1733 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u1733_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. visibility:hidden;
  547. }
  548. #u1734_img {
  549. border-width:0px;
  550. position:absolute;
  551. left:0px;
  552. top:0px;
  553. width:114px;
  554. height:80px;
  555. }
  556. #u1734 {
  557. border-width:0px;
  558. position:absolute;
  559. left:1327px;
  560. top:-240px;
  561. width:114px;
  562. height:80px;
  563. display:flex;
  564. }
  565. #u1734 .text {
  566. position:absolute;
  567. align-self:center;
  568. padding:2px 2px 2px 2px;
  569. box-sizing:border-box;
  570. width:100%;
  571. }
  572. #u1734_text {
  573. border-width:0px;
  574. word-wrap:break-word;
  575. text-transform:none;
  576. visibility:hidden;
  577. }
  578. #u1735_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. #u1735 {
  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. #u1735 .text {
  613. position:absolute;
  614. align-self:center;
  615. padding:2px 2px 2px 2px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u1735_text {
  620. border-width:0px;
  621. white-space:nowrap;
  622. text-transform:none;
  623. }
  624. #u1736_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. #u1736 {
  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. #u1736 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 10px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u1736_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. }
  680. #u1737_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. #u1737 {
  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. #u1737 .text {
  719. position:absolute;
  720. align-self:center;
  721. padding:2px 2px 2px 2px;
  722. box-sizing:border-box;
  723. width:100%;
  724. }
  725. #u1737_text {
  726. border-width:0px;
  727. white-space:nowrap;
  728. text-transform:none;
  729. }
  730. #u1738_img {
  731. border-width:0px;
  732. position:absolute;
  733. left:-5px;
  734. top:-5px;
  735. width:30px;
  736. height:40px;
  737. }
  738. #u1738 {
  739. border-width:0px;
  740. position:absolute;
  741. left:868px;
  742. top:593px;
  743. width:20px;
  744. height:30px;
  745. display:flex;
  746. }
  747. #u1738 .text {
  748. position:absolute;
  749. align-self:center;
  750. padding:2px 2px 2px 2px;
  751. box-sizing:border-box;
  752. width:100%;
  753. }
  754. #u1738_text {
  755. border-width:0px;
  756. word-wrap:break-word;
  757. text-transform:none;
  758. visibility:hidden;
  759. }
  760. #u1739_div {
  761. border-width:0px;
  762. position:absolute;
  763. left:0px;
  764. top:0px;
  765. width:83px;
  766. height:24px;
  767. background:inherit;
  768. background-color:rgba(245, 154, 35, 0);
  769. border:none;
  770. border-left:0px;
  771. border-top:0px;
  772. border-right:0px;
  773. border-radius:0px;
  774. border-bottom-right-radius:0px;
  775. border-bottom-left-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:14px;
  783. color:#FFFFFF;
  784. text-align:left;
  785. }
  786. #u1739 {
  787. border-width:0px;
  788. position:absolute;
  789. left:64px;
  790. top:367px;
  791. width:83px;
  792. height:24px;
  793. display:flex;
  794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  795. font-weight:400;
  796. font-style:normal;
  797. font-size:14px;
  798. color:#FFFFFF;
  799. text-align:left;
  800. }
  801. #u1739 .text {
  802. position:absolute;
  803. align-self:center;
  804. padding:2px 2px 2px 10px;
  805. box-sizing:border-box;
  806. width:100%;
  807. }
  808. #u1739_text {
  809. border-width:0px;
  810. white-space:nowrap;
  811. text-transform:none;
  812. }
  813. #u1740_div {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:67px;
  819. height:29px;
  820. background:inherit;
  821. background-color:rgba(245, 154, 35, 0);
  822. border:none;
  823. border-left:0px;
  824. border-top:0px;
  825. border-right:0px;
  826. border-radius:0px;
  827. border-bottom-right-radius:0px;
  828. border-bottom-left-radius:0px;
  829. -moz-box-shadow:none;
  830. -webkit-box-shadow:none;
  831. box-shadow:none;
  832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  833. font-weight:500;
  834. font-style:normal;
  835. font-size:18px;
  836. color:#FFFFFF;
  837. text-align:left;
  838. }
  839. #u1740 {
  840. border-width:0px;
  841. position:absolute;
  842. left:147px;
  843. top:364px;
  844. width:67px;
  845. height:29px;
  846. display:flex;
  847. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  848. font-weight:500;
  849. font-style:normal;
  850. font-size:18px;
  851. color:#FFFFFF;
  852. text-align:left;
  853. }
  854. #u1740 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 10px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u1740_text {
  862. border-width:0px;
  863. white-space:nowrap;
  864. text-transform:none;
  865. }
  866. #u1741_div {
  867. border-width:0px;
  868. position:absolute;
  869. left:0px;
  870. top:0px;
  871. width:27px;
  872. height:124px;
  873. background:inherit;
  874. background-color:rgba(255, 255, 255, 0);
  875. border:none;
  876. border-radius:0px;
  877. -moz-box-shadow:none;
  878. -webkit-box-shadow:none;
  879. box-shadow:none;
  880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  881. font-weight:400;
  882. font-style:normal;
  883. font-size:12px;
  884. color:rgba(255, 255, 255, 0.698039215686274);
  885. text-align:left;
  886. line-height:30px;
  887. }
  888. #u1741 {
  889. border-width:0px;
  890. position:absolute;
  891. left:192px;
  892. top:429px;
  893. width:27px;
  894. height:124px;
  895. display:flex;
  896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  897. font-weight:400;
  898. font-style:normal;
  899. font-size:12px;
  900. color:rgba(255, 255, 255, 0.698039215686274);
  901. text-align:left;
  902. line-height:30px;
  903. }
  904. #u1741 .text {
  905. position:absolute;
  906. align-self:center;
  907. padding:2px 2px 2px 2px;
  908. box-sizing:border-box;
  909. width:100%;
  910. }
  911. #u1741_text {
  912. border-width:0px;
  913. white-space:nowrap;
  914. text-transform:none;
  915. }
  916. #u1742_div {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:31px;
  922. height:124px;
  923. background:inherit;
  924. background-color:rgba(255, 255, 255, 0);
  925. border:none;
  926. border-radius:0px;
  927. -moz-box-shadow:none;
  928. -webkit-box-shadow:none;
  929. box-shadow:none;
  930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  931. font-weight:400;
  932. font-style:normal;
  933. font-size:12px;
  934. color:rgba(255, 255, 255, 0.698039215686274);
  935. text-align:left;
  936. line-height:30px;
  937. }
  938. #u1742 {
  939. border-width:0px;
  940. position:absolute;
  941. left:238px;
  942. top:429px;
  943. width:31px;
  944. height:124px;
  945. display:flex;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:12px;
  950. color:rgba(255, 255, 255, 0.698039215686274);
  951. text-align:left;
  952. line-height:30px;
  953. }
  954. #u1742 .text {
  955. position:absolute;
  956. align-self:center;
  957. padding:2px 2px 2px 2px;
  958. box-sizing:border-box;
  959. width:100%;
  960. }
  961. #u1742_text {
  962. border-width:0px;
  963. white-space:nowrap;
  964. text-transform:none;
  965. }
  966. #u1743_div {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:65px;
  972. height:30px;
  973. background:inherit;
  974. background-color:rgba(245, 154, 35, 0);
  975. box-sizing:border-box;
  976. border-width:2px;
  977. border-style:solid;
  978. border-color:rgba(245, 154, 35, 1);
  979. border-left:0px;
  980. border-top:0px;
  981. border-right:0px;
  982. border-radius:0px;
  983. border-bottom-right-radius:0px;
  984. border-bottom-left-radius:0px;
  985. -moz-box-shadow:none;
  986. -webkit-box-shadow:none;
  987. box-shadow:none;
  988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  989. font-weight:400;
  990. font-style:normal;
  991. font-size:12px;
  992. color:#FFFFFF;
  993. text-align:left;
  994. }
  995. #u1743 {
  996. border-width:0px;
  997. position:absolute;
  998. left:37px;
  999. top:399px;
  1000. width:65px;
  1001. height:30px;
  1002. display:flex;
  1003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1004. font-weight:400;
  1005. font-style:normal;
  1006. font-size:12px;
  1007. color:#FFFFFF;
  1008. text-align:left;
  1009. }
  1010. #u1743 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u1743_text {
  1018. border-width:0px;
  1019. white-space:nowrap;
  1020. text-transform:none;
  1021. }
  1022. #u1744_div {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:53px;
  1028. height:30px;
  1029. background:inherit;
  1030. background-color:rgba(245, 154, 35, 0);
  1031. border:none;
  1032. border-left:0px;
  1033. border-top:0px;
  1034. border-right:0px;
  1035. border-radius:0px;
  1036. border-bottom-right-radius:0px;
  1037. border-bottom-left-radius:0px;
  1038. -moz-box-shadow:none;
  1039. -webkit-box-shadow:none;
  1040. box-shadow:none;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:12px;
  1045. color:#FFFFFF;
  1046. text-align:left;
  1047. }
  1048. #u1744 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:122px;
  1052. top:399px;
  1053. width:53px;
  1054. height:30px;
  1055. display:flex;
  1056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1057. font-weight:400;
  1058. font-style:normal;
  1059. font-size:12px;
  1060. color:#FFFFFF;
  1061. text-align:left;
  1062. }
  1063. #u1744 .text {
  1064. position:absolute;
  1065. align-self:center;
  1066. padding:2px 2px 2px 2px;
  1067. box-sizing:border-box;
  1068. width:100%;
  1069. }
  1070. #u1744_text {
  1071. border-width:0px;
  1072. white-space:nowrap;
  1073. text-transform:none;
  1074. }
  1075. #u1745_div {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:240px;
  1081. height:40px;
  1082. background:inherit;
  1083. background-color:rgba(245, 154, 35, 0.2);
  1084. box-sizing:border-box;
  1085. border-width:2px;
  1086. border-style:solid;
  1087. border-color:rgba(245, 154, 35, 1);
  1088. border-left:0px;
  1089. border-top:0px;
  1090. border-right:0px;
  1091. border-radius:0px;
  1092. border-bottom-right-radius:0px;
  1093. border-bottom-left-radius:0px;
  1094. -moz-box-shadow:none;
  1095. -webkit-box-shadow:none;
  1096. box-shadow:none;
  1097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1098. font-weight:400;
  1099. font-style:normal;
  1100. font-size:18px;
  1101. color:#FFFFFF;
  1102. text-align:left;
  1103. }
  1104. #u1745 {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:27px;
  1108. top:565px;
  1109. width:240px;
  1110. height:40px;
  1111. display:flex;
  1112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1113. font-weight:400;
  1114. font-style:normal;
  1115. font-size:18px;
  1116. color:#FFFFFF;
  1117. text-align:left;
  1118. }
  1119. #u1745 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 10px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u1745_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. }
  1131. #u1746 {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:0px;
  1137. height:0px;
  1138. }
  1139. #u1747_div {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:14px;
  1145. height:11px;
  1146. background:inherit;
  1147. background-color:rgba(255, 255, 255, 0);
  1148. border:none;
  1149. border-radius:0px;
  1150. -moz-box-shadow:none;
  1151. -webkit-box-shadow:none;
  1152. box-shadow:none;
  1153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1154. font-weight:400;
  1155. font-style:normal;
  1156. font-size:8px;
  1157. color:rgba(255, 255, 255, 0.435294117647059);
  1158. }
  1159. #u1747 {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:27px;
  1163. top:753px;
  1164. width:14px;
  1165. height:11px;
  1166. display:flex;
  1167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1168. font-weight:400;
  1169. font-style:normal;
  1170. font-size:8px;
  1171. color:rgba(255, 255, 255, 0.435294117647059);
  1172. }
  1173. #u1747 .text {
  1174. position:absolute;
  1175. align-self:flex-start;
  1176. padding:0px 0px 0px 0px;
  1177. box-sizing:border-box;
  1178. width:100%;
  1179. }
  1180. #u1747_text {
  1181. border-width:0px;
  1182. white-space:nowrap;
  1183. text-transform:none;
  1184. }
  1185. #u1748_div {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:14px;
  1191. height:11px;
  1192. background:inherit;
  1193. background-color:rgba(255, 255, 255, 0);
  1194. border:none;
  1195. border-radius:0px;
  1196. -moz-box-shadow:none;
  1197. -webkit-box-shadow:none;
  1198. box-shadow:none;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:8px;
  1203. color:rgba(255, 255, 255, 0.435294117647059);
  1204. }
  1205. #u1748 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:45px;
  1209. top:753px;
  1210. width:14px;
  1211. height:11px;
  1212. display:flex;
  1213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1214. font-weight:400;
  1215. font-style:normal;
  1216. font-size:8px;
  1217. color:rgba(255, 255, 255, 0.435294117647059);
  1218. }
  1219. #u1748 .text {
  1220. position:absolute;
  1221. align-self:flex-start;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u1748_text {
  1227. border-width:0px;
  1228. white-space:nowrap;
  1229. text-transform:none;
  1230. }
  1231. #u1749_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:14px;
  1237. height:11px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 0);
  1240. border:none;
  1241. border-radius:0px;
  1242. -moz-box-shadow:none;
  1243. -webkit-box-shadow:none;
  1244. box-shadow:none;
  1245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1246. font-weight:400;
  1247. font-style:normal;
  1248. font-size:8px;
  1249. color:rgba(255, 255, 255, 0.435294117647059);
  1250. }
  1251. #u1749 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:64px;
  1255. top:753px;
  1256. width:14px;
  1257. height:11px;
  1258. display:flex;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:8px;
  1263. color:rgba(255, 255, 255, 0.435294117647059);
  1264. }
  1265. #u1749 .text {
  1266. position:absolute;
  1267. align-self:flex-start;
  1268. padding:0px 0px 0px 0px;
  1269. box-sizing:border-box;
  1270. width:100%;
  1271. }
  1272. #u1749_text {
  1273. border-width:0px;
  1274. white-space:nowrap;
  1275. text-transform:none;
  1276. }
  1277. #u1750_div {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:14px;
  1283. height:11px;
  1284. background:inherit;
  1285. background-color:rgba(255, 255, 255, 0);
  1286. border:none;
  1287. border-radius:0px;
  1288. -moz-box-shadow:none;
  1289. -webkit-box-shadow:none;
  1290. box-shadow:none;
  1291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1292. font-weight:400;
  1293. font-style:normal;
  1294. font-size:8px;
  1295. color:rgba(255, 255, 255, 0.435294117647059);
  1296. }
  1297. #u1750 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:82px;
  1301. top:753px;
  1302. width:14px;
  1303. height:11px;
  1304. display:flex;
  1305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1306. font-weight:400;
  1307. font-style:normal;
  1308. font-size:8px;
  1309. color:rgba(255, 255, 255, 0.435294117647059);
  1310. }
  1311. #u1750 .text {
  1312. position:absolute;
  1313. align-self:flex-start;
  1314. padding:0px 0px 0px 0px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u1750_text {
  1319. border-width:0px;
  1320. white-space:nowrap;
  1321. text-transform:none;
  1322. }
  1323. #u1751_div {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:14px;
  1329. height:11px;
  1330. background:inherit;
  1331. background-color:rgba(255, 255, 255, 0);
  1332. border:none;
  1333. border-radius:0px;
  1334. -moz-box-shadow:none;
  1335. -webkit-box-shadow:none;
  1336. box-shadow:none;
  1337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1338. font-weight:400;
  1339. font-style:normal;
  1340. font-size:8px;
  1341. color:rgba(255, 255, 255, 0.435294117647059);
  1342. }
  1343. #u1751 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:100px;
  1347. top:753px;
  1348. width:14px;
  1349. height:11px;
  1350. display:flex;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. font-size:8px;
  1355. color:rgba(255, 255, 255, 0.435294117647059);
  1356. }
  1357. #u1751 .text {
  1358. position:absolute;
  1359. align-self:flex-start;
  1360. padding:0px 0px 0px 0px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u1751_text {
  1365. border-width:0px;
  1366. white-space:nowrap;
  1367. text-transform:none;
  1368. }
  1369. #u1752_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:17px;
  1375. height:11px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1384. font-weight:400;
  1385. font-style:normal;
  1386. font-size:8px;
  1387. color:rgba(255, 255, 255, 0.435294117647059);
  1388. }
  1389. #u1752 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:119px;
  1393. top:753px;
  1394. width:17px;
  1395. height:11px;
  1396. display:flex;
  1397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1398. font-weight:400;
  1399. font-style:normal;
  1400. font-size:8px;
  1401. color:rgba(255, 255, 255, 0.435294117647059);
  1402. }
  1403. #u1752 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:0px 0px 0px 0px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u1752_text {
  1411. border-width:0px;
  1412. white-space:nowrap;
  1413. text-transform:none;
  1414. }
  1415. #u1753_div {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:17px;
  1421. height:11px;
  1422. background:inherit;
  1423. background-color:rgba(255, 255, 255, 0);
  1424. border:none;
  1425. border-radius:0px;
  1426. -moz-box-shadow:none;
  1427. -webkit-box-shadow:none;
  1428. box-shadow:none;
  1429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1430. font-weight:400;
  1431. font-style:normal;
  1432. font-size:8px;
  1433. color:rgba(255, 255, 255, 0.435294117647059);
  1434. }
  1435. #u1753 {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:140px;
  1439. top:753px;
  1440. width:17px;
  1441. height:11px;
  1442. display:flex;
  1443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1444. font-weight:400;
  1445. font-style:normal;
  1446. font-size:8px;
  1447. color:rgba(255, 255, 255, 0.435294117647059);
  1448. }
  1449. #u1753 .text {
  1450. position:absolute;
  1451. align-self:flex-start;
  1452. padding:0px 0px 0px 0px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u1753_text {
  1457. border-width:0px;
  1458. white-space:nowrap;
  1459. text-transform:none;
  1460. }
  1461. #u1754_div {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:17px;
  1467. height:11px;
  1468. background:inherit;
  1469. background-color:rgba(255, 255, 255, 0);
  1470. border:none;
  1471. border-radius:0px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:8px;
  1479. color:rgba(255, 255, 255, 0.435294117647059);
  1480. }
  1481. #u1754 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:162px;
  1485. top:753px;
  1486. width:17px;
  1487. height:11px;
  1488. display:flex;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:8px;
  1493. color:rgba(255, 255, 255, 0.435294117647059);
  1494. }
  1495. #u1754 .text {
  1496. position:absolute;
  1497. align-self:flex-start;
  1498. padding:0px 0px 0px 0px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u1754_text {
  1503. border-width:0px;
  1504. white-space:nowrap;
  1505. text-transform:none;
  1506. }
  1507. #u1755_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:17px;
  1513. height:11px;
  1514. background:inherit;
  1515. background-color:rgba(255, 255, 255, 0);
  1516. border:none;
  1517. border-radius:0px;
  1518. -moz-box-shadow:none;
  1519. -webkit-box-shadow:none;
  1520. box-shadow:none;
  1521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1522. font-weight:400;
  1523. font-style:normal;
  1524. font-size:8px;
  1525. color:rgba(255, 255, 255, 0.435294117647059);
  1526. }
  1527. #u1755 {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:183px;
  1531. top:753px;
  1532. width:17px;
  1533. height:11px;
  1534. display:flex;
  1535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1536. font-weight:400;
  1537. font-style:normal;
  1538. font-size:8px;
  1539. color:rgba(255, 255, 255, 0.435294117647059);
  1540. }
  1541. #u1755 .text {
  1542. position:absolute;
  1543. align-self:flex-start;
  1544. padding:0px 0px 0px 0px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u1755_text {
  1549. border-width:0px;
  1550. white-space:nowrap;
  1551. text-transform:none;
  1552. }
  1553. #u1756_div {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:17px;
  1559. height:11px;
  1560. background:inherit;
  1561. background-color:rgba(255, 255, 255, 0);
  1562. border:none;
  1563. border-radius:0px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:8px;
  1571. color:rgba(255, 255, 255, 0.435294117647059);
  1572. }
  1573. #u1756 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:204px;
  1577. top:753px;
  1578. width:17px;
  1579. height:11px;
  1580. display:flex;
  1581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. font-size:8px;
  1585. color:rgba(255, 255, 255, 0.435294117647059);
  1586. }
  1587. #u1756 .text {
  1588. position:absolute;
  1589. align-self:flex-start;
  1590. padding:0px 0px 0px 0px;
  1591. box-sizing:border-box;
  1592. width:100%;
  1593. }
  1594. #u1756_text {
  1595. border-width:0px;
  1596. white-space:nowrap;
  1597. text-transform:none;
  1598. }
  1599. #u1757_div {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:0px;
  1603. top:0px;
  1604. width:19px;
  1605. height:11px;
  1606. background:inherit;
  1607. background-color:rgba(255, 255, 255, 0);
  1608. border:none;
  1609. border-radius:0px;
  1610. -moz-box-shadow:none;
  1611. -webkit-box-shadow:none;
  1612. box-shadow:none;
  1613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1614. font-weight:400;
  1615. font-style:normal;
  1616. font-size:8px;
  1617. color:rgba(255, 255, 255, 0.435294117647059);
  1618. }
  1619. #u1757 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:226px;
  1623. top:753px;
  1624. width:19px;
  1625. height:11px;
  1626. display:flex;
  1627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1628. font-weight:400;
  1629. font-style:normal;
  1630. font-size:8px;
  1631. color:rgba(255, 255, 255, 0.435294117647059);
  1632. }
  1633. #u1757 .text {
  1634. position:absolute;
  1635. align-self:flex-start;
  1636. padding:0px 0px 0px 0px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u1757_text {
  1641. border-width:0px;
  1642. white-space:nowrap;
  1643. text-transform:none;
  1644. }
  1645. #u1758_div {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:0px;
  1649. top:0px;
  1650. width:19px;
  1651. height:11px;
  1652. background:inherit;
  1653. background-color:rgba(255, 255, 255, 0);
  1654. border:none;
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:8px;
  1663. color:rgba(255, 255, 255, 0.435294117647059);
  1664. }
  1665. #u1758 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:249px;
  1669. top:753px;
  1670. width:19px;
  1671. height:11px;
  1672. display:flex;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:8px;
  1677. color:rgba(255, 255, 255, 0.435294117647059);
  1678. }
  1679. #u1758 .text {
  1680. position:absolute;
  1681. align-self:flex-start;
  1682. padding:0px 0px 0px 0px;
  1683. box-sizing:border-box;
  1684. width:100%;
  1685. }
  1686. #u1758_text {
  1687. border-width:0px;
  1688. white-space:nowrap;
  1689. text-transform:none;
  1690. }
  1691. #u1759 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:0px;
  1697. height:0px;
  1698. }
  1699. #u1760_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:240px;
  1705. height:85px;
  1706. }
  1707. #u1760 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:28px;
  1711. top:642px;
  1712. width:239px;
  1713. height:84px;
  1714. display:flex;
  1715. color:rgba(255, 255, 255, 0.435294117647059);
  1716. }
  1717. #u1760 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 2px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u1760_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. visibility:hidden;
  1729. }
  1730. #u1761_img {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:239px;
  1736. height:92px;
  1737. }
  1738. #u1761 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:27px;
  1742. top:657px;
  1743. width:238px;
  1744. height:91px;
  1745. display:flex;
  1746. color:rgba(255, 255, 255, 0.435294117647059);
  1747. }
  1748. #u1761 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u1761_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u1762_img {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:240px;
  1767. height:4px;
  1768. }
  1769. #u1762 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:27px;
  1773. top:747px;
  1774. width:239px;
  1775. height:3px;
  1776. display:flex;
  1777. }
  1778. #u1762 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u1762_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. visibility:hidden;
  1790. }
  1791. #u1763 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:0px;
  1797. height:0px;
  1798. }
  1799. #u1764 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:0px;
  1805. height:0px;
  1806. }
  1807. #u1765_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:11px;
  1813. height:2px;
  1814. }
  1815. #u1765 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:181px;
  1819. top:624px;
  1820. width:10px;
  1821. height:1px;
  1822. display:flex;
  1823. }
  1824. #u1765 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u1765_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. visibility:hidden;
  1836. }
  1837. #u1766_div {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:15px;
  1843. height:18px;
  1844. background:inherit;
  1845. background-color:rgba(255, 255, 255, 0);
  1846. border:none;
  1847. border-radius:0px;
  1848. -moz-box-shadow:none;
  1849. -webkit-box-shadow:none;
  1850. box-shadow:none;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:10px;
  1855. color:#FFFFFF;
  1856. text-align:left;
  1857. }
  1858. #u1766 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:194px;
  1862. top:615px;
  1863. width:15px;
  1864. height:18px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:10px;
  1870. color:#FFFFFF;
  1871. text-align:left;
  1872. }
  1873. #u1766 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:2px 2px 2px 2px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u1766_text {
  1881. border-width:0px;
  1882. white-space:nowrap;
  1883. text-transform:none;
  1884. }
  1885. #u1767 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u1768_img {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:11px;
  1899. height:2px;
  1900. }
  1901. #u1768 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:239px;
  1905. top:624px;
  1906. width:10px;
  1907. height:1px;
  1908. display:flex;
  1909. }
  1910. #u1768 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 2px 2px 2px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u1768_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. visibility:hidden;
  1922. }
  1923. #u1769_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:15px;
  1929. height:18px;
  1930. background:inherit;
  1931. background-color:rgba(255, 255, 255, 0);
  1932. border:none;
  1933. border-radius:0px;
  1934. -moz-box-shadow:none;
  1935. -webkit-box-shadow:none;
  1936. box-shadow:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:10px;
  1941. color:#FFFFFF;
  1942. text-align:left;
  1943. }
  1944. #u1769 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:252px;
  1948. top:615px;
  1949. width:15px;
  1950. height:18px;
  1951. display:flex;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:10px;
  1956. color:#FFFFFF;
  1957. text-align:left;
  1958. }
  1959. #u1769 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u1769_text {
  1967. border-width:0px;
  1968. white-space:nowrap;
  1969. text-transform:none;
  1970. }
  1971. #u1770 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:0px;
  1977. height:0px;
  1978. }
  1979. #u1771_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:41px;
  1985. height:21px;
  1986. background:inherit;
  1987. background-color:rgba(245, 154, 35, 0);
  1988. border:none;
  1989. border-left:0px;
  1990. border-top:0px;
  1991. border-right:0px;
  1992. border-radius:0px;
  1993. border-bottom-right-radius:0px;
  1994. border-bottom-left-radius:0px;
  1995. -moz-box-shadow:none;
  1996. -webkit-box-shadow:none;
  1997. box-shadow:none;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:12px;
  2002. color:#FFFFFF;
  2003. }
  2004. #u1771 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:1249px;
  2008. top:186px;
  2009. width:41px;
  2010. height:21px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:12px;
  2016. color:#FFFFFF;
  2017. }
  2018. #u1771 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u1771_text {
  2026. border-width:0px;
  2027. white-space:nowrap;
  2028. text-transform:none;
  2029. }
  2030. #u1772_div {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:34px;
  2036. height:29px;
  2037. background:inherit;
  2038. background-color:rgba(245, 154, 35, 0);
  2039. border:none;
  2040. border-left:0px;
  2041. border-top:0px;
  2042. border-right:0px;
  2043. border-radius:0px;
  2044. border-bottom-right-radius:0px;
  2045. border-bottom-left-radius:0px;
  2046. -moz-box-shadow:none;
  2047. -webkit-box-shadow:none;
  2048. box-shadow:none;
  2049. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2050. font-weight:500;
  2051. font-style:normal;
  2052. font-size:18px;
  2053. color:#FFFFFF;
  2054. }
  2055. #u1772 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:1252px;
  2059. top:157px;
  2060. width:34px;
  2061. height:29px;
  2062. display:flex;
  2063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2064. font-weight:500;
  2065. font-style:normal;
  2066. font-size:18px;
  2067. color:#FFFFFF;
  2068. }
  2069. #u1772 .text {
  2070. position:absolute;
  2071. align-self:center;
  2072. padding:2px 2px 2px 2px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u1772_text {
  2077. border-width:0px;
  2078. white-space:nowrap;
  2079. text-transform:none;
  2080. }
  2081. #u1773 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:0px;
  2087. height:0px;
  2088. }
  2089. #u1774_div {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:41px;
  2095. height:21px;
  2096. background:inherit;
  2097. background-color:rgba(245, 154, 35, 0);
  2098. border:none;
  2099. border-left:0px;
  2100. border-top:0px;
  2101. border-right:0px;
  2102. border-radius:0px;
  2103. border-bottom-right-radius:0px;
  2104. border-bottom-left-radius:0px;
  2105. -moz-box-shadow:none;
  2106. -webkit-box-shadow:none;
  2107. box-shadow:none;
  2108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:12px;
  2112. color:#FFFFFF;
  2113. }
  2114. #u1774 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:1312px;
  2118. top:186px;
  2119. width:41px;
  2120. height:21px;
  2121. display:flex;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:12px;
  2126. color:#FFFFFF;
  2127. }
  2128. #u1774 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u1774_text {
  2136. border-width:0px;
  2137. white-space:nowrap;
  2138. text-transform:none;
  2139. }
  2140. #u1775_div {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:34px;
  2146. height:29px;
  2147. background:inherit;
  2148. background-color:rgba(245, 154, 35, 0);
  2149. border:none;
  2150. border-left:0px;
  2151. border-top:0px;
  2152. border-right:0px;
  2153. border-radius:0px;
  2154. border-bottom-right-radius:0px;
  2155. border-bottom-left-radius:0px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2160. font-weight:500;
  2161. font-style:normal;
  2162. font-size:18px;
  2163. color:#FFFFFF;
  2164. }
  2165. #u1775 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:1315px;
  2169. top:157px;
  2170. width:34px;
  2171. height:29px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2174. font-weight:500;
  2175. font-style:normal;
  2176. font-size:18px;
  2177. color:#FFFFFF;
  2178. }
  2179. #u1775 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u1775_text {
  2187. border-width:0px;
  2188. white-space:nowrap;
  2189. text-transform:none;
  2190. }
  2191. #u1776 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:0px;
  2197. height:0px;
  2198. }
  2199. #u1777_div {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:29px;
  2205. height:21px;
  2206. background:inherit;
  2207. background-color:rgba(245, 154, 35, 0);
  2208. border:none;
  2209. border-left:0px;
  2210. border-top:0px;
  2211. border-right:0px;
  2212. border-radius:0px;
  2213. border-bottom-right-radius:0px;
  2214. border-bottom-left-radius:0px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:12px;
  2222. color:#FFFFFF;
  2223. }
  2224. #u1777 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:1438px;
  2228. top:186px;
  2229. width:29px;
  2230. height:21px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:12px;
  2236. color:#FFFFFF;
  2237. }
  2238. #u1777 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 2px 2px 2px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u1777_text {
  2246. border-width:0px;
  2247. white-space:nowrap;
  2248. text-transform:none;
  2249. }
  2250. #u1778_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:27px;
  2256. height:29px;
  2257. background:inherit;
  2258. background-color:rgba(245, 154, 35, 0);
  2259. border:none;
  2260. border-left:0px;
  2261. border-top:0px;
  2262. border-right:0px;
  2263. border-radius:0px;
  2264. border-bottom-right-radius:0px;
  2265. border-bottom-left-radius:0px;
  2266. -moz-box-shadow:none;
  2267. -webkit-box-shadow:none;
  2268. box-shadow:none;
  2269. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2270. font-weight:500;
  2271. font-style:normal;
  2272. font-size:18px;
  2273. color:#FFFFFF;
  2274. }
  2275. #u1778 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:1439px;
  2279. top:157px;
  2280. width:27px;
  2281. height:29px;
  2282. display:flex;
  2283. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2284. font-weight:500;
  2285. font-style:normal;
  2286. font-size:18px;
  2287. color:#FFFFFF;
  2288. }
  2289. #u1778 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:2px 2px 2px 2px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u1778_text {
  2297. border-width:0px;
  2298. white-space:nowrap;
  2299. text-transform:none;
  2300. }
  2301. #u1779 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:0px;
  2307. height:0px;
  2308. }
  2309. #u1780_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:240px;
  2315. height:30px;
  2316. }
  2317. #u1780 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:1242px;
  2321. top:232px;
  2322. width:240px;
  2323. height:30px;
  2324. display:flex;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:12px;
  2329. color:#FFFFFF;
  2330. text-align:left;
  2331. }
  2332. #u1780 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:2px 2px 2px 10px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u1780_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. visibility:hidden;
  2344. }
  2345. #u1781_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:73px;
  2351. height:17px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 0);
  2354. border:none;
  2355. border-radius:0px;
  2356. -moz-box-shadow:none;
  2357. -webkit-box-shadow:none;
  2358. box-shadow:none;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. color:#FFFFFF;
  2364. }
  2365. #u1781 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:1252px;
  2369. top:237px;
  2370. width:73px;
  2371. height:17px;
  2372. display:flex;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:12px;
  2377. color:#FFFFFF;
  2378. }
  2379. #u1781 .text {
  2380. position:absolute;
  2381. align-self:flex-start;
  2382. padding:0px 0px 0px 0px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u1781_text {
  2387. border-width:0px;
  2388. white-space:nowrap;
  2389. text-transform:none;
  2390. }
  2391. #u1782_div {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:29px;
  2397. height:34px;
  2398. background:inherit;
  2399. background-color:rgba(255, 255, 255, 0);
  2400. border:none;
  2401. border-radius:0px;
  2402. -moz-box-shadow:none;
  2403. -webkit-box-shadow:none;
  2404. box-shadow:none;
  2405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:12px;
  2409. color:rgba(255, 255, 255, 0.698039215686274);
  2410. text-align:left;
  2411. line-height:30px;
  2412. }
  2413. #u1782 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:1453px;
  2417. top:232px;
  2418. width:29px;
  2419. height:34px;
  2420. display:flex;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:12px;
  2425. color:rgba(255, 255, 255, 0.698039215686274);
  2426. text-align:left;
  2427. line-height:30px;
  2428. }
  2429. #u1782 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 2px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u1782_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u1783 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:0px;
  2447. height:0px;
  2448. }
  2449. #u1784_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:240px;
  2455. height:60px;
  2456. }
  2457. #u1784 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:1236px;
  2461. top:542px;
  2462. width:240px;
  2463. height:60px;
  2464. display:flex;
  2465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2466. font-weight:400;
  2467. font-style:normal;
  2468. font-size:12px;
  2469. color:#FFFFFF;
  2470. text-align:left;
  2471. }
  2472. #u1784 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 10px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u1784_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u1785_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:62px;
  2491. height:60px;
  2492. }
  2493. #u1785 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:1236px;
  2497. top:542px;
  2498. width:62px;
  2499. height:60px;
  2500. display:flex;
  2501. }
  2502. #u1785 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 2px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u1785_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u1786_div {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:41px;
  2521. height:21px;
  2522. background:inherit;
  2523. background-color:rgba(245, 154, 35, 0);
  2524. border:none;
  2525. border-left:0px;
  2526. border-top:0px;
  2527. border-right:0px;
  2528. border-radius:0px;
  2529. border-bottom-right-radius:0px;
  2530. border-bottom-left-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:12px;
  2538. color:#FFFFFF;
  2539. text-align:left;
  2540. }
  2541. #u1786 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:1303px;
  2545. top:546px;
  2546. width:41px;
  2547. height:21px;
  2548. display:flex;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:12px;
  2553. color:#FFFFFF;
  2554. text-align:left;
  2555. }
  2556. #u1786 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 2px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u1786_text {
  2564. border-width:0px;
  2565. white-space:nowrap;
  2566. text-transform:none;
  2567. }
  2568. #u1787_div {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:75px;
  2574. height:32px;
  2575. background:inherit;
  2576. background-color:rgba(245, 154, 35, 0);
  2577. border:none;
  2578. border-left:0px;
  2579. border-top:0px;
  2580. border-right:0px;
  2581. border-radius:0px;
  2582. border-bottom-right-radius:0px;
  2583. border-bottom-left-radius:0px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:10px;
  2591. color:#FFFFFF;
  2592. text-align:left;
  2593. }
  2594. #u1787 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:1303px;
  2598. top:567px;
  2599. width:75px;
  2600. height:32px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:10px;
  2606. color:#FFFFFF;
  2607. text-align:left;
  2608. }
  2609. #u1787 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 2px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u1787_text {
  2617. border-width:0px;
  2618. white-space:nowrap;
  2619. text-transform:none;
  2620. }
  2621. #u1788_div {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:24px;
  2627. height:13px;
  2628. background:inherit;
  2629. background-color:rgba(245, 154, 35, 1);
  2630. border:none;
  2631. border-radius:40px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:8px;
  2639. color:rgba(255, 255, 255, 0.698039215686274);
  2640. }
  2641. #u1788 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:1356px;
  2645. top:550px;
  2646. width:24px;
  2647. height:13px;
  2648. display:flex;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:8px;
  2653. color:rgba(255, 255, 255, 0.698039215686274);
  2654. }
  2655. #u1788 .text {
  2656. position:absolute;
  2657. align-self:center;
  2658. padding:0px 0px 2px 0px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u1788_text {
  2663. border-width:0px;
  2664. word-wrap:break-word;
  2665. text-transform:none;
  2666. }
  2667. #u1789 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:0px;
  2673. height:0px;
  2674. }
  2675. #u1790_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:240px;
  2681. height:60px;
  2682. }
  2683. #u1790 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:1236px;
  2687. top:612px;
  2688. width:240px;
  2689. height:60px;
  2690. display:flex;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. color:#FFFFFF;
  2696. text-align:left;
  2697. }
  2698. #u1790 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 10px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u1790_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u1791_img {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:62px;
  2717. height:60px;
  2718. }
  2719. #u1791 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:1236px;
  2723. top:612px;
  2724. width:62px;
  2725. height:60px;
  2726. display:flex;
  2727. }
  2728. #u1791 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 2px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u1791_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u1792_div {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:53px;
  2747. height:21px;
  2748. background:inherit;
  2749. background-color:rgba(245, 154, 35, 0);
  2750. border:none;
  2751. border-left:0px;
  2752. border-top:0px;
  2753. border-right:0px;
  2754. border-radius:0px;
  2755. border-bottom-right-radius:0px;
  2756. border-bottom-left-radius:0px;
  2757. -moz-box-shadow:none;
  2758. -webkit-box-shadow:none;
  2759. box-shadow:none;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:12px;
  2764. color:#FFFFFF;
  2765. text-align:left;
  2766. }
  2767. #u1792 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:1303px;
  2771. top:616px;
  2772. width:53px;
  2773. height:21px;
  2774. display:flex;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:12px;
  2779. color:#FFFFFF;
  2780. text-align:left;
  2781. }
  2782. #u1792 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 2px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u1792_text {
  2790. border-width:0px;
  2791. white-space:nowrap;
  2792. text-transform:none;
  2793. }
  2794. #u1793_div {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:75px;
  2800. height:32px;
  2801. background:inherit;
  2802. background-color:rgba(245, 154, 35, 0);
  2803. border:none;
  2804. border-left:0px;
  2805. border-top:0px;
  2806. border-right:0px;
  2807. border-radius:0px;
  2808. border-bottom-right-radius:0px;
  2809. border-bottom-left-radius:0px;
  2810. -moz-box-shadow:none;
  2811. -webkit-box-shadow:none;
  2812. box-shadow:none;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:10px;
  2817. color:#FFFFFF;
  2818. text-align:left;
  2819. }
  2820. #u1793 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:1303px;
  2824. top:637px;
  2825. width:75px;
  2826. height:32px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:10px;
  2832. color:#FFFFFF;
  2833. text-align:left;
  2834. }
  2835. #u1793 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 2px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u1793_text {
  2843. border-width:0px;
  2844. white-space:nowrap;
  2845. text-transform:none;
  2846. }
  2847. #u1794_div {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:35px;
  2853. height:13px;
  2854. background:inherit;
  2855. background-color:rgba(217, 0, 27, 1);
  2856. border:none;
  2857. border-radius:40px;
  2858. -moz-box-shadow:none;
  2859. -webkit-box-shadow:none;
  2860. box-shadow:none;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:8px;
  2865. color:rgba(255, 255, 255, 0.698039215686274);
  2866. }
  2867. #u1794 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:1356px;
  2871. top:620px;
  2872. width:35px;
  2873. height:13px;
  2874. display:flex;
  2875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:8px;
  2879. color:rgba(255, 255, 255, 0.698039215686274);
  2880. }
  2881. #u1794 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:0px 0px 2px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u1794_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. }
  2893. #u1795_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:-5px;
  2897. top:-5px;
  2898. width:30px;
  2899. height:40px;
  2900. }
  2901. #u1795 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:811px;
  2905. top:124px;
  2906. width:20px;
  2907. height:30px;
  2908. display:flex;
  2909. }
  2910. #u1795 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u1795_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. visibility:hidden;
  2922. }
  2923. #u1796_img {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:-5px;
  2927. top:-5px;
  2928. width:30px;
  2929. height:40px;
  2930. }
  2931. #u1796 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:418px;
  2935. top:476px;
  2936. width:20px;
  2937. height:30px;
  2938. display:flex;
  2939. }
  2940. #u1796 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 2px 2px 2px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u1796_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u1797_div {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:188px;
  2959. height:30px;
  2960. background:inherit;
  2961. background-color:rgba(245, 154, 35, 1);
  2962. box-sizing:border-box;
  2963. border-width:1px;
  2964. border-style:solid;
  2965. border-color:rgba(245, 154, 35, 1);
  2966. border-radius:53px;
  2967. -moz-box-shadow:none;
  2968. -webkit-box-shadow:none;
  2969. box-shadow:none;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:15px;
  2974. color:#FFFFFF;
  2975. }
  2976. #u1797 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:428px;
  2980. top:446px;
  2981. width:188px;
  2982. height:30px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:15px;
  2988. color:#FFFFFF;
  2989. }
  2990. #u1797 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 2px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u1797_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. }
  3002. #u1798_div {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:188px;
  3008. height:30px;
  3009. background:inherit;
  3010. background-color:rgba(245, 154, 35, 1);
  3011. box-sizing:border-box;
  3012. border-width:1px;
  3013. border-style:solid;
  3014. border-color:rgba(245, 154, 35, 1);
  3015. border-radius:53px;
  3016. -moz-box-shadow:none;
  3017. -webkit-box-shadow:none;
  3018. box-shadow:none;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:15px;
  3023. color:#FFFFFF;
  3024. }
  3025. #u1798 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:841px;
  3029. top:112px;
  3030. width:188px;
  3031. height:30px;
  3032. display:flex;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:15px;
  3037. color:#FFFFFF;
  3038. }
  3039. #u1798 .text {
  3040. position:absolute;
  3041. align-self:center;
  3042. padding:2px 2px 2px 2px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u1798_text {
  3047. border-width:0px;
  3048. word-wrap:break-word;
  3049. text-transform:none;
  3050. }
  3051. #u1799 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:0px;
  3057. height:0px;
  3058. }
  3059. #u1800_div {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:41px;
  3065. height:21px;
  3066. background:inherit;
  3067. background-color:rgba(245, 154, 35, 0);
  3068. border:none;
  3069. border-left:0px;
  3070. border-top:0px;
  3071. border-right:0px;
  3072. border-radius:0px;
  3073. border-bottom-right-radius:0px;
  3074. border-bottom-left-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. color:#FFFFFF;
  3083. }
  3084. #u1800 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:1375px;
  3088. top:186px;
  3089. width:41px;
  3090. height:21px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. color:#FFFFFF;
  3097. }
  3098. #u1800 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 2px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u1800_text {
  3106. border-width:0px;
  3107. white-space:nowrap;
  3108. text-transform:none;
  3109. }
  3110. #u1801_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:27px;
  3116. height:29px;
  3117. background:inherit;
  3118. background-color:rgba(245, 154, 35, 0);
  3119. border:none;
  3120. border-left:0px;
  3121. border-top:0px;
  3122. border-right:0px;
  3123. border-radius:0px;
  3124. border-bottom-right-radius:0px;
  3125. border-bottom-left-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3130. font-weight:500;
  3131. font-style:normal;
  3132. font-size:18px;
  3133. color:#FFFFFF;
  3134. }
  3135. #u1801 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:1382px;
  3139. top:157px;
  3140. width:27px;
  3141. height:29px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3144. font-weight:500;
  3145. font-style:normal;
  3146. font-size:18px;
  3147. color:#FFFFFF;
  3148. }
  3149. #u1801 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:2px 2px 2px 2px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u1801_text {
  3157. border-width:0px;
  3158. white-space:nowrap;
  3159. text-transform:none;
  3160. }
  3161. #u1802_div {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:836px;
  3167. height:630px;
  3168. background:inherit;
  3169. background-color:rgba(51, 51, 51, 0.8);
  3170. border:none;
  3171. border-radius:0px;
  3172. -moz-box-shadow:none;
  3173. -webkit-box-shadow:none;
  3174. box-shadow:none;
  3175. }
  3176. #u1802 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:326px;
  3180. top:109px;
  3181. width:836px;
  3182. height:630px;
  3183. display:flex;
  3184. }
  3185. #u1802 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 2px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u1802_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u1803_div {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:157px;
  3204. height:29px;
  3205. background:inherit;
  3206. background-color:rgba(245, 154, 35, 0);
  3207. border:none;
  3208. border-left:0px;
  3209. border-top:0px;
  3210. border-right:0px;
  3211. border-radius:0px;
  3212. border-bottom-right-radius:0px;
  3213. border-bottom-left-radius:0px;
  3214. -moz-box-shadow:none;
  3215. -webkit-box-shadow:none;
  3216. box-shadow:none;
  3217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3218. font-weight:500;
  3219. font-style:normal;
  3220. font-size:18px;
  3221. color:#F59A23;
  3222. text-align:left;
  3223. }
  3224. #u1803 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:337px;
  3228. top:129px;
  3229. width:157px;
  3230. height:29px;
  3231. display:flex;
  3232. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3233. font-weight:500;
  3234. font-style:normal;
  3235. font-size:18px;
  3236. color:#F59A23;
  3237. text-align:left;
  3238. }
  3239. #u1803 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 10px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u1803_text {
  3247. border-width:0px;
  3248. white-space:nowrap;
  3249. text-transform:none;
  3250. }
  3251. #u1804 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:0px;
  3257. height:0px;
  3258. }
  3259. #u1805_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:254px;
  3265. height:82px;
  3266. background:inherit;
  3267. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3268. box-sizing:border-box;
  3269. border-width:1px;
  3270. border-style:solid;
  3271. border-color:rgba(121, 121, 121, 1);
  3272. border-radius:0px;
  3273. -moz-box-shadow:none;
  3274. -webkit-box-shadow:none;
  3275. box-shadow:none;
  3276. }
  3277. #u1805 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:342px;
  3281. top:179px;
  3282. width:254px;
  3283. height:82px;
  3284. display:flex;
  3285. }
  3286. #u1805 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 2px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u1805_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u1806_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:31px;
  3305. height:24px;
  3306. background:inherit;
  3307. background-color:rgba(245, 154, 35, 0);
  3308. border:none;
  3309. border-left:0px;
  3310. border-top:0px;
  3311. border-right:0px;
  3312. border-radius:0px;
  3313. border-bottom-right-radius:0px;
  3314. border-bottom-left-radius:0px;
  3315. -moz-box-shadow:none;
  3316. -webkit-box-shadow:none;
  3317. box-shadow:none;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. color:#FFFFFF;
  3323. text-align:left;
  3324. }
  3325. #u1806 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:409px;
  3329. top:186px;
  3330. width:31px;
  3331. height:24px;
  3332. display:flex;
  3333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3334. font-weight:400;
  3335. font-style:normal;
  3336. font-size:14px;
  3337. color:#FFFFFF;
  3338. text-align:left;
  3339. }
  3340. #u1806 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u1806_text {
  3348. border-width:0px;
  3349. white-space:nowrap;
  3350. text-transform:none;
  3351. }
  3352. #u1807_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:35px;
  3358. height:21px;
  3359. background:inherit;
  3360. background-color:rgba(245, 154, 35, 1);
  3361. border:none;
  3362. border-radius:11px;
  3363. -moz-box-shadow:none;
  3364. -webkit-box-shadow:none;
  3365. box-shadow:none;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#FFFFFF;
  3371. }
  3372. #u1807 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:482px;
  3376. top:188px;
  3377. width:35px;
  3378. height:21px;
  3379. display:flex;
  3380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:12px;
  3384. color:#FFFFFF;
  3385. }
  3386. #u1807 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 2px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u1807_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. }
  3398. #u1808_div {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:25px;
  3404. height:20px;
  3405. background:inherit;
  3406. background-color:rgba(245, 154, 35, 0);
  3407. border:none;
  3408. border-left:0px;
  3409. border-top:0px;
  3410. border-right:0px;
  3411. border-radius:0px;
  3412. border-bottom-right-radius:0px;
  3413. border-bottom-left-radius:0px;
  3414. -moz-box-shadow:none;
  3415. -webkit-box-shadow:none;
  3416. box-shadow:none;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:11px;
  3421. color:#FFFFFF;
  3422. text-align:left;
  3423. }
  3424. #u1808 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:560px;
  3428. top:190px;
  3429. width:25px;
  3430. height:20px;
  3431. display:flex;
  3432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:11px;
  3436. color:#FFFFFF;
  3437. text-align:left;
  3438. }
  3439. #u1808 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 0px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u1808_text {
  3447. border-width:0px;
  3448. white-space:nowrap;
  3449. text-transform:none;
  3450. }
  3451. #u1809_div {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:63px;
  3457. height:21px;
  3458. background:inherit;
  3459. background-color:rgba(245, 154, 35, 0);
  3460. border:none;
  3461. border-left:0px;
  3462. border-top:0px;
  3463. border-right:0px;
  3464. border-radius:0px;
  3465. border-bottom-right-radius:0px;
  3466. border-bottom-left-radius:0px;
  3467. -moz-box-shadow:none;
  3468. -webkit-box-shadow:none;
  3469. box-shadow:none;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:12px;
  3474. color:#FFFFFF;
  3475. text-align:left;
  3476. }
  3477. #u1809 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:409px;
  3481. top:217px;
  3482. width:63px;
  3483. height:21px;
  3484. display:flex;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:12px;
  3489. color:#FFFFFF;
  3490. text-align:left;
  3491. }
  3492. #u1809 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 2px 2px 0px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u1809_text {
  3500. border-width:0px;
  3501. white-space:nowrap;
  3502. text-transform:none;
  3503. }
  3504. #u1810_div {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:103px;
  3510. height:18px;
  3511. background:inherit;
  3512. background-color:rgba(245, 154, 35, 0);
  3513. border:none;
  3514. border-left:0px;
  3515. border-top:0px;
  3516. border-right:0px;
  3517. border-radius:0px;
  3518. border-bottom-right-radius:0px;
  3519. border-bottom-left-radius:0px;
  3520. -moz-box-shadow:none;
  3521. -webkit-box-shadow:none;
  3522. box-shadow:none;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:10px;
  3527. color:#FFFFFF;
  3528. text-align:left;
  3529. }
  3530. #u1810 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:409px;
  3534. top:238px;
  3535. width:103px;
  3536. height:18px;
  3537. display:flex;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:10px;
  3542. color:#FFFFFF;
  3543. text-align:left;
  3544. }
  3545. #u1810 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u1810_text {
  3553. border-width:0px;
  3554. white-space:nowrap;
  3555. text-transform:none;
  3556. }
  3557. #u1811_img {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:50px;
  3563. height:59px;
  3564. }
  3565. #u1811 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:350px;
  3569. top:190px;
  3570. width:50px;
  3571. height:59px;
  3572. display:flex;
  3573. }
  3574. #u1811 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 2px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u1811_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u1812 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:0px;
  3593. height:0px;
  3594. }
  3595. #u1813_div {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:254px;
  3601. height:82px;
  3602. background:inherit;
  3603. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3604. box-sizing:border-box;
  3605. border-width:1px;
  3606. border-style:solid;
  3607. border-color:rgba(121, 121, 121, 1);
  3608. border-radius:0px;
  3609. -moz-box-shadow:none;
  3610. -webkit-box-shadow:none;
  3611. box-shadow:none;
  3612. }
  3613. #u1813 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:617px;
  3617. top:179px;
  3618. width:254px;
  3619. height:82px;
  3620. display:flex;
  3621. }
  3622. #u1813 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 2px 2px 2px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u1813_text {
  3630. border-width:0px;
  3631. word-wrap:break-word;
  3632. text-transform:none;
  3633. visibility:hidden;
  3634. }
  3635. #u1814_div {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:31px;
  3641. height:24px;
  3642. background:inherit;
  3643. background-color:rgba(245, 154, 35, 0);
  3644. border:none;
  3645. border-left:0px;
  3646. border-top:0px;
  3647. border-right:0px;
  3648. border-radius:0px;
  3649. border-bottom-right-radius:0px;
  3650. border-bottom-left-radius:0px;
  3651. -moz-box-shadow:none;
  3652. -webkit-box-shadow:none;
  3653. box-shadow:none;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:14px;
  3658. color:#FFFFFF;
  3659. text-align:left;
  3660. }
  3661. #u1814 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:684px;
  3665. top:186px;
  3666. width:31px;
  3667. height:24px;
  3668. display:flex;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:14px;
  3673. color:#FFFFFF;
  3674. text-align:left;
  3675. }
  3676. #u1814 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 0px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u1814_text {
  3684. border-width:0px;
  3685. white-space:nowrap;
  3686. text-transform:none;
  3687. }
  3688. #u1815_div {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:35px;
  3694. height:21px;
  3695. background:inherit;
  3696. background-color:rgba(245, 154, 35, 1);
  3697. border:none;
  3698. border-radius:11px;
  3699. -moz-box-shadow:none;
  3700. -webkit-box-shadow:none;
  3701. box-shadow:none;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:12px;
  3706. color:#FFFFFF;
  3707. }
  3708. #u1815 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:757px;
  3712. top:188px;
  3713. width:35px;
  3714. height:21px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:12px;
  3720. color:#FFFFFF;
  3721. }
  3722. #u1815 .text {
  3723. position:absolute;
  3724. align-self:center;
  3725. padding:2px 2px 2px 2px;
  3726. box-sizing:border-box;
  3727. width:100%;
  3728. }
  3729. #u1815_text {
  3730. border-width:0px;
  3731. word-wrap:break-word;
  3732. text-transform:none;
  3733. }
  3734. #u1816_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:25px;
  3740. height:20px;
  3741. background:inherit;
  3742. background-color:rgba(245, 154, 35, 0);
  3743. border:none;
  3744. border-left:0px;
  3745. border-top:0px;
  3746. border-right:0px;
  3747. border-radius:0px;
  3748. border-bottom-right-radius:0px;
  3749. border-bottom-left-radius:0px;
  3750. -moz-box-shadow:none;
  3751. -webkit-box-shadow:none;
  3752. box-shadow:none;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:11px;
  3757. color:#FFFFFF;
  3758. text-align:left;
  3759. }
  3760. #u1816 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:835px;
  3764. top:190px;
  3765. width:25px;
  3766. height:20px;
  3767. display:flex;
  3768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. font-size:11px;
  3772. color:#FFFFFF;
  3773. text-align:left;
  3774. }
  3775. #u1816 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u1816_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u1817_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:63px;
  3793. height:21px;
  3794. background:inherit;
  3795. background-color:rgba(245, 154, 35, 0);
  3796. border:none;
  3797. border-left:0px;
  3798. border-top:0px;
  3799. border-right:0px;
  3800. border-radius:0px;
  3801. border-bottom-right-radius:0px;
  3802. border-bottom-left-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. color:#FFFFFF;
  3811. text-align:left;
  3812. }
  3813. #u1817 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:684px;
  3817. top:217px;
  3818. width:63px;
  3819. height:21px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. color:#FFFFFF;
  3826. text-align:left;
  3827. }
  3828. #u1817 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:2px 2px 2px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u1817_text {
  3836. border-width:0px;
  3837. white-space:nowrap;
  3838. text-transform:none;
  3839. }
  3840. #u1818_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:103px;
  3846. height:18px;
  3847. background:inherit;
  3848. background-color:rgba(245, 154, 35, 0);
  3849. border:none;
  3850. border-left:0px;
  3851. border-top:0px;
  3852. border-right:0px;
  3853. border-radius:0px;
  3854. border-bottom-right-radius:0px;
  3855. border-bottom-left-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:10px;
  3863. color:#FFFFFF;
  3864. text-align:left;
  3865. }
  3866. #u1818 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:684px;
  3870. top:238px;
  3871. width:103px;
  3872. height:18px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:10px;
  3878. color:#FFFFFF;
  3879. text-align:left;
  3880. }
  3881. #u1818 .text {
  3882. position:absolute;
  3883. align-self:center;
  3884. padding:2px 2px 2px 0px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u1818_text {
  3889. border-width:0px;
  3890. white-space:nowrap;
  3891. text-transform:none;
  3892. }
  3893. #u1819_img {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:50px;
  3899. height:59px;
  3900. }
  3901. #u1819 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:625px;
  3905. top:190px;
  3906. width:50px;
  3907. height:59px;
  3908. display:flex;
  3909. }
  3910. #u1819 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 2px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u1819_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u1820 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:0px;
  3929. height:0px;
  3930. }
  3931. #u1821_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:254px;
  3937. height:82px;
  3938. background:inherit;
  3939. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3940. box-sizing:border-box;
  3941. border-width:1px;
  3942. border-style:solid;
  3943. border-color:rgba(121, 121, 121, 1);
  3944. border-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. }
  3949. #u1821 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:892px;
  3953. top:179px;
  3954. width:254px;
  3955. height:82px;
  3956. display:flex;
  3957. }
  3958. #u1821 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 2px 2px 2px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u1821_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u1822_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:31px;
  3977. height:24px;
  3978. background:inherit;
  3979. background-color:rgba(245, 154, 35, 0);
  3980. border:none;
  3981. border-left:0px;
  3982. border-top:0px;
  3983. border-right:0px;
  3984. border-radius:0px;
  3985. border-bottom-right-radius:0px;
  3986. border-bottom-left-radius:0px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. color:#FFFFFF;
  3995. text-align:left;
  3996. }
  3997. #u1822 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:959px;
  4001. top:186px;
  4002. width:31px;
  4003. height:24px;
  4004. display:flex;
  4005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:14px;
  4009. color:#FFFFFF;
  4010. text-align:left;
  4011. }
  4012. #u1822 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u1822_text {
  4020. border-width:0px;
  4021. white-space:nowrap;
  4022. text-transform:none;
  4023. }
  4024. #u1823_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:35px;
  4030. height:21px;
  4031. background:inherit;
  4032. background-color:rgba(245, 154, 35, 1);
  4033. border:none;
  4034. border-radius:11px;
  4035. -moz-box-shadow:none;
  4036. -webkit-box-shadow:none;
  4037. box-shadow:none;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. color:#FFFFFF;
  4043. }
  4044. #u1823 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:1032px;
  4048. top:188px;
  4049. width:35px;
  4050. height:21px;
  4051. display:flex;
  4052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4053. font-weight:400;
  4054. font-style:normal;
  4055. font-size:12px;
  4056. color:#FFFFFF;
  4057. }
  4058. #u1823 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u1823_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. }
  4070. #u1824_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:25px;
  4076. height:20px;
  4077. background:inherit;
  4078. background-color:rgba(245, 154, 35, 0);
  4079. border:none;
  4080. border-left:0px;
  4081. border-top:0px;
  4082. border-right:0px;
  4083. border-radius:0px;
  4084. border-bottom-right-radius:0px;
  4085. border-bottom-left-radius:0px;
  4086. -moz-box-shadow:none;
  4087. -webkit-box-shadow:none;
  4088. box-shadow:none;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:11px;
  4093. color:#FFFFFF;
  4094. text-align:left;
  4095. }
  4096. #u1824 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:1110px;
  4100. top:190px;
  4101. width:25px;
  4102. height:20px;
  4103. display:flex;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:11px;
  4108. color:#FFFFFF;
  4109. text-align:left;
  4110. }
  4111. #u1824 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u1824_text {
  4119. border-width:0px;
  4120. white-space:nowrap;
  4121. text-transform:none;
  4122. }
  4123. #u1825_div {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:63px;
  4129. height:21px;
  4130. background:inherit;
  4131. background-color:rgba(245, 154, 35, 0);
  4132. border:none;
  4133. border-left:0px;
  4134. border-top:0px;
  4135. border-right:0px;
  4136. border-radius:0px;
  4137. border-bottom-right-radius:0px;
  4138. border-bottom-left-radius:0px;
  4139. -moz-box-shadow:none;
  4140. -webkit-box-shadow:none;
  4141. box-shadow:none;
  4142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:12px;
  4146. color:#FFFFFF;
  4147. text-align:left;
  4148. }
  4149. #u1825 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:959px;
  4153. top:217px;
  4154. width:63px;
  4155. height:21px;
  4156. display:flex;
  4157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:12px;
  4161. color:#FFFFFF;
  4162. text-align:left;
  4163. }
  4164. #u1825 .text {
  4165. position:absolute;
  4166. align-self:center;
  4167. padding:2px 2px 2px 0px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u1825_text {
  4172. border-width:0px;
  4173. white-space:nowrap;
  4174. text-transform:none;
  4175. }
  4176. #u1826_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:103px;
  4182. height:18px;
  4183. background:inherit;
  4184. background-color:rgba(245, 154, 35, 0);
  4185. border:none;
  4186. border-left:0px;
  4187. border-top:0px;
  4188. border-right:0px;
  4189. border-radius:0px;
  4190. border-bottom-right-radius:0px;
  4191. border-bottom-left-radius:0px;
  4192. -moz-box-shadow:none;
  4193. -webkit-box-shadow:none;
  4194. box-shadow:none;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:10px;
  4199. color:#FFFFFF;
  4200. text-align:left;
  4201. }
  4202. #u1826 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:959px;
  4206. top:238px;
  4207. width:103px;
  4208. height:18px;
  4209. display:flex;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:10px;
  4214. color:#FFFFFF;
  4215. text-align:left;
  4216. }
  4217. #u1826 .text {
  4218. position:absolute;
  4219. align-self:center;
  4220. padding:2px 2px 2px 0px;
  4221. box-sizing:border-box;
  4222. width:100%;
  4223. }
  4224. #u1826_text {
  4225. border-width:0px;
  4226. white-space:nowrap;
  4227. text-transform:none;
  4228. }
  4229. #u1827_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:50px;
  4235. height:59px;
  4236. }
  4237. #u1827 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:900px;
  4241. top:190px;
  4242. width:50px;
  4243. height:59px;
  4244. display:flex;
  4245. }
  4246. #u1827 .text {
  4247. position:absolute;
  4248. align-self:center;
  4249. padding:2px 2px 2px 2px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u1827_text {
  4254. border-width:0px;
  4255. word-wrap:break-word;
  4256. text-transform:none;
  4257. visibility:hidden;
  4258. }
  4259. #u1828 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:0px;
  4265. height:0px;
  4266. }
  4267. #u1829_div {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:254px;
  4273. height:82px;
  4274. background:inherit;
  4275. background-color:rgba(245, 154, 35, 0.0980392156862745);
  4276. box-sizing:border-box;
  4277. border-width:1px;
  4278. border-style:solid;
  4279. border-color:rgba(121, 121, 121, 1);
  4280. border-radius:0px;
  4281. -moz-box-shadow:none;
  4282. -webkit-box-shadow:none;
  4283. box-shadow:none;
  4284. }
  4285. #u1829 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:342px;
  4289. top:281px;
  4290. width:254px;
  4291. height:82px;
  4292. display:flex;
  4293. }
  4294. #u1829 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 2px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u1829_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. visibility:hidden;
  4306. }
  4307. #u1830_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:31px;
  4313. height:24px;
  4314. background:inherit;
  4315. background-color:rgba(245, 154, 35, 0);
  4316. border:none;
  4317. border-left:0px;
  4318. border-top:0px;
  4319. border-right:0px;
  4320. border-radius:0px;
  4321. border-bottom-right-radius:0px;
  4322. border-bottom-left-radius:0px;
  4323. -moz-box-shadow:none;
  4324. -webkit-box-shadow:none;
  4325. box-shadow:none;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:14px;
  4330. color:#FFFFFF;
  4331. text-align:left;
  4332. }
  4333. #u1830 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:409px;
  4337. top:288px;
  4338. width:31px;
  4339. height:24px;
  4340. display:flex;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. color:#FFFFFF;
  4346. text-align:left;
  4347. }
  4348. #u1830 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u1830_text {
  4356. border-width:0px;
  4357. white-space:nowrap;
  4358. text-transform:none;
  4359. }
  4360. #u1831_div {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:35px;
  4366. height:21px;
  4367. background:inherit;
  4368. background-color:rgba(245, 154, 35, 1);
  4369. border:none;
  4370. border-radius:11px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. color:#FFFFFF;
  4379. }
  4380. #u1831 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:482px;
  4384. top:290px;
  4385. width:35px;
  4386. height:21px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:12px;
  4392. color:#FFFFFF;
  4393. }
  4394. #u1831 .text {
  4395. position:absolute;
  4396. align-self:center;
  4397. padding:2px 2px 2px 2px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u1831_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. }
  4406. #u1832_div {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:25px;
  4412. height:20px;
  4413. background:inherit;
  4414. background-color:rgba(245, 154, 35, 0);
  4415. border:none;
  4416. border-left:0px;
  4417. border-top:0px;
  4418. border-right:0px;
  4419. border-radius:0px;
  4420. border-bottom-right-radius:0px;
  4421. border-bottom-left-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:11px;
  4429. color:#FFFFFF;
  4430. text-align:left;
  4431. }
  4432. #u1832 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:560px;
  4436. top:292px;
  4437. width:25px;
  4438. height:20px;
  4439. display:flex;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:11px;
  4444. color:#FFFFFF;
  4445. text-align:left;
  4446. }
  4447. #u1832 .text {
  4448. position:absolute;
  4449. align-self:center;
  4450. padding:2px 2px 2px 0px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u1832_text {
  4455. border-width:0px;
  4456. white-space:nowrap;
  4457. text-transform:none;
  4458. }
  4459. #u1833_div {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:63px;
  4465. height:21px;
  4466. background:inherit;
  4467. background-color:rgba(245, 154, 35, 0);
  4468. border:none;
  4469. border-left:0px;
  4470. border-top:0px;
  4471. border-right:0px;
  4472. border-radius:0px;
  4473. border-bottom-right-radius:0px;
  4474. border-bottom-left-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:12px;
  4482. color:#FFFFFF;
  4483. text-align:left;
  4484. }
  4485. #u1833 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:409px;
  4489. top:319px;
  4490. width:63px;
  4491. height:21px;
  4492. display:flex;
  4493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:12px;
  4497. color:#FFFFFF;
  4498. text-align:left;
  4499. }
  4500. #u1833 .text {
  4501. position:absolute;
  4502. align-self:center;
  4503. padding:2px 2px 2px 0px;
  4504. box-sizing:border-box;
  4505. width:100%;
  4506. }
  4507. #u1833_text {
  4508. border-width:0px;
  4509. white-space:nowrap;
  4510. text-transform:none;
  4511. }
  4512. #u1834_div {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:103px;
  4518. height:18px;
  4519. background:inherit;
  4520. background-color:rgba(245, 154, 35, 0);
  4521. border:none;
  4522. border-left:0px;
  4523. border-top:0px;
  4524. border-right:0px;
  4525. border-radius:0px;
  4526. border-bottom-right-radius:0px;
  4527. border-bottom-left-radius:0px;
  4528. -moz-box-shadow:none;
  4529. -webkit-box-shadow:none;
  4530. box-shadow:none;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:10px;
  4535. color:#FFFFFF;
  4536. text-align:left;
  4537. }
  4538. #u1834 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:409px;
  4542. top:340px;
  4543. width:103px;
  4544. height:18px;
  4545. display:flex;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:10px;
  4550. color:#FFFFFF;
  4551. text-align:left;
  4552. }
  4553. #u1834 .text {
  4554. position:absolute;
  4555. align-self:center;
  4556. padding:2px 2px 2px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u1834_text {
  4561. border-width:0px;
  4562. white-space:nowrap;
  4563. text-transform:none;
  4564. }
  4565. #u1835_img {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:50px;
  4571. height:59px;
  4572. }
  4573. #u1835 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:350px;
  4577. top:292px;
  4578. width:50px;
  4579. height:59px;
  4580. display:flex;
  4581. }
  4582. #u1835 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:2px 2px 2px 2px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u1835_text {
  4590. border-width:0px;
  4591. word-wrap:break-word;
  4592. text-transform:none;
  4593. visibility:hidden;
  4594. }
  4595. #u1836 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:0px;
  4601. height:0px;
  4602. }
  4603. #u1837_div {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:254px;
  4609. height:82px;
  4610. background:inherit;
  4611. background-color:rgba(245, 154, 35, 0.0980392156862745);
  4612. box-sizing:border-box;
  4613. border-width:1px;
  4614. border-style:solid;
  4615. border-color:rgba(121, 121, 121, 1);
  4616. border-radius:0px;
  4617. -moz-box-shadow:none;
  4618. -webkit-box-shadow:none;
  4619. box-shadow:none;
  4620. }
  4621. #u1837 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:617px;
  4625. top:281px;
  4626. width:254px;
  4627. height:82px;
  4628. display:flex;
  4629. }
  4630. #u1837 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 2px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u1837_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u1838_div {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:31px;
  4649. height:24px;
  4650. background:inherit;
  4651. background-color:rgba(245, 154, 35, 0);
  4652. border:none;
  4653. border-left:0px;
  4654. border-top:0px;
  4655. border-right:0px;
  4656. border-radius:0px;
  4657. border-bottom-right-radius:0px;
  4658. border-bottom-left-radius:0px;
  4659. -moz-box-shadow:none;
  4660. -webkit-box-shadow:none;
  4661. box-shadow:none;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:14px;
  4666. color:#FFFFFF;
  4667. text-align:left;
  4668. }
  4669. #u1838 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:684px;
  4673. top:288px;
  4674. width:31px;
  4675. height:24px;
  4676. display:flex;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:14px;
  4681. color:#FFFFFF;
  4682. text-align:left;
  4683. }
  4684. #u1838 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:2px 2px 2px 0px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u1838_text {
  4692. border-width:0px;
  4693. white-space:nowrap;
  4694. text-transform:none;
  4695. }
  4696. #u1839_div {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:35px;
  4702. height:21px;
  4703. background:inherit;
  4704. background-color:rgba(245, 154, 35, 1);
  4705. border:none;
  4706. border-radius:11px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:12px;
  4714. color:#FFFFFF;
  4715. }
  4716. #u1839 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:757px;
  4720. top:290px;
  4721. width:35px;
  4722. height:21px;
  4723. display:flex;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:12px;
  4728. color:#FFFFFF;
  4729. }
  4730. #u1839 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u1839_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. }
  4742. #u1840_div {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:25px;
  4748. height:20px;
  4749. background:inherit;
  4750. background-color:rgba(245, 154, 35, 0);
  4751. border:none;
  4752. border-left:0px;
  4753. border-top:0px;
  4754. border-right:0px;
  4755. border-radius:0px;
  4756. border-bottom-right-radius:0px;
  4757. border-bottom-left-radius:0px;
  4758. -moz-box-shadow:none;
  4759. -webkit-box-shadow:none;
  4760. box-shadow:none;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:11px;
  4765. color:#FFFFFF;
  4766. text-align:left;
  4767. }
  4768. #u1840 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:835px;
  4772. top:292px;
  4773. width:25px;
  4774. height:20px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:11px;
  4780. color:#FFFFFF;
  4781. text-align:left;
  4782. }
  4783. #u1840 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u1840_text {
  4791. border-width:0px;
  4792. white-space:nowrap;
  4793. text-transform:none;
  4794. }
  4795. #u1841_div {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:63px;
  4801. height:21px;
  4802. background:inherit;
  4803. background-color:rgba(245, 154, 35, 0);
  4804. border:none;
  4805. border-left:0px;
  4806. border-top:0px;
  4807. border-right:0px;
  4808. border-radius:0px;
  4809. border-bottom-right-radius:0px;
  4810. border-bottom-left-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#FFFFFF;
  4819. text-align:left;
  4820. }
  4821. #u1841 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:684px;
  4825. top:319px;
  4826. width:63px;
  4827. height:21px;
  4828. display:flex;
  4829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:12px;
  4833. color:#FFFFFF;
  4834. text-align:left;
  4835. }
  4836. #u1841 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 0px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u1841_text {
  4844. border-width:0px;
  4845. white-space:nowrap;
  4846. text-transform:none;
  4847. }
  4848. #u1842_div {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:103px;
  4854. height:18px;
  4855. background:inherit;
  4856. background-color:rgba(245, 154, 35, 0);
  4857. border:none;
  4858. border-left:0px;
  4859. border-top:0px;
  4860. border-right:0px;
  4861. border-radius:0px;
  4862. border-bottom-right-radius:0px;
  4863. border-bottom-left-radius:0px;
  4864. -moz-box-shadow:none;
  4865. -webkit-box-shadow:none;
  4866. box-shadow:none;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:10px;
  4871. color:#FFFFFF;
  4872. text-align:left;
  4873. }
  4874. #u1842 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:684px;
  4878. top:340px;
  4879. width:103px;
  4880. height:18px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:10px;
  4886. color:#FFFFFF;
  4887. text-align:left;
  4888. }
  4889. #u1842 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:2px 2px 2px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u1842_text {
  4897. border-width:0px;
  4898. white-space:nowrap;
  4899. text-transform:none;
  4900. }
  4901. #u1843_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:50px;
  4907. height:59px;
  4908. }
  4909. #u1843 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:625px;
  4913. top:292px;
  4914. width:50px;
  4915. height:59px;
  4916. display:flex;
  4917. }
  4918. #u1843 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u1843_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u1844 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u1845_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:254px;
  4945. height:82px;
  4946. background:inherit;
  4947. background-color:rgba(245, 154, 35, 0.0980392156862745);
  4948. box-sizing:border-box;
  4949. border-width:1px;
  4950. border-style:solid;
  4951. border-color:rgba(121, 121, 121, 1);
  4952. border-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. }
  4957. #u1845 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:892px;
  4961. top:281px;
  4962. width:254px;
  4963. height:82px;
  4964. display:flex;
  4965. }
  4966. #u1845 .text {
  4967. position:absolute;
  4968. align-self:center;
  4969. padding:2px 2px 2px 2px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u1845_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. visibility:hidden;
  4978. }
  4979. #u1846_div {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:31px;
  4985. height:24px;
  4986. background:inherit;
  4987. background-color:rgba(245, 154, 35, 0);
  4988. border:none;
  4989. border-left:0px;
  4990. border-top:0px;
  4991. border-right:0px;
  4992. border-radius:0px;
  4993. border-bottom-right-radius:0px;
  4994. border-bottom-left-radius:0px;
  4995. -moz-box-shadow:none;
  4996. -webkit-box-shadow:none;
  4997. box-shadow:none;
  4998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:14px;
  5002. color:#FFFFFF;
  5003. text-align:left;
  5004. }
  5005. #u1846 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:959px;
  5009. top:288px;
  5010. width:31px;
  5011. height:24px;
  5012. display:flex;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:14px;
  5017. color:#FFFFFF;
  5018. text-align:left;
  5019. }
  5020. #u1846 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u1846_text {
  5028. border-width:0px;
  5029. white-space:nowrap;
  5030. text-transform:none;
  5031. }
  5032. #u1847_div {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:35px;
  5038. height:21px;
  5039. background:inherit;
  5040. background-color:rgba(245, 154, 35, 1);
  5041. border:none;
  5042. border-radius:11px;
  5043. -moz-box-shadow:none;
  5044. -webkit-box-shadow:none;
  5045. box-shadow:none;
  5046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:12px;
  5050. color:#FFFFFF;
  5051. }
  5052. #u1847 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:1032px;
  5056. top:290px;
  5057. width:35px;
  5058. height:21px;
  5059. display:flex;
  5060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:12px;
  5064. color:#FFFFFF;
  5065. }
  5066. #u1847 .text {
  5067. position:absolute;
  5068. align-self:center;
  5069. padding:2px 2px 2px 2px;
  5070. box-sizing:border-box;
  5071. width:100%;
  5072. }
  5073. #u1847_text {
  5074. border-width:0px;
  5075. word-wrap:break-word;
  5076. text-transform:none;
  5077. }
  5078. #u1848_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:25px;
  5084. height:20px;
  5085. background:inherit;
  5086. background-color:rgba(245, 154, 35, 0);
  5087. border:none;
  5088. border-left:0px;
  5089. border-top:0px;
  5090. border-right:0px;
  5091. border-radius:0px;
  5092. border-bottom-right-radius:0px;
  5093. border-bottom-left-radius:0px;
  5094. -moz-box-shadow:none;
  5095. -webkit-box-shadow:none;
  5096. box-shadow:none;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:11px;
  5101. color:#FFFFFF;
  5102. text-align:left;
  5103. }
  5104. #u1848 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:1110px;
  5108. top:292px;
  5109. width:25px;
  5110. height:20px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:11px;
  5116. color:#FFFFFF;
  5117. text-align:left;
  5118. }
  5119. #u1848 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 0px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u1848_text {
  5127. border-width:0px;
  5128. white-space:nowrap;
  5129. text-transform:none;
  5130. }
  5131. #u1849_div {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:63px;
  5137. height:21px;
  5138. background:inherit;
  5139. background-color:rgba(245, 154, 35, 0);
  5140. border:none;
  5141. border-left:0px;
  5142. border-top:0px;
  5143. border-right:0px;
  5144. border-radius:0px;
  5145. border-bottom-right-radius:0px;
  5146. border-bottom-left-radius:0px;
  5147. -moz-box-shadow:none;
  5148. -webkit-box-shadow:none;
  5149. box-shadow:none;
  5150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5151. font-weight:400;
  5152. font-style:normal;
  5153. font-size:12px;
  5154. color:#FFFFFF;
  5155. text-align:left;
  5156. }
  5157. #u1849 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:959px;
  5161. top:319px;
  5162. width:63px;
  5163. height:21px;
  5164. display:flex;
  5165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5166. font-weight:400;
  5167. font-style:normal;
  5168. font-size:12px;
  5169. color:#FFFFFF;
  5170. text-align:left;
  5171. }
  5172. #u1849 .text {
  5173. position:absolute;
  5174. align-self:center;
  5175. padding:2px 2px 2px 0px;
  5176. box-sizing:border-box;
  5177. width:100%;
  5178. }
  5179. #u1849_text {
  5180. border-width:0px;
  5181. white-space:nowrap;
  5182. text-transform:none;
  5183. }
  5184. #u1850_div {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:103px;
  5190. height:18px;
  5191. background:inherit;
  5192. background-color:rgba(245, 154, 35, 0);
  5193. border:none;
  5194. border-left:0px;
  5195. border-top:0px;
  5196. border-right:0px;
  5197. border-radius:0px;
  5198. border-bottom-right-radius:0px;
  5199. border-bottom-left-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:10px;
  5207. color:#FFFFFF;
  5208. text-align:left;
  5209. }
  5210. #u1850 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:959px;
  5214. top:340px;
  5215. width:103px;
  5216. height:18px;
  5217. display:flex;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:10px;
  5222. color:#FFFFFF;
  5223. text-align:left;
  5224. }
  5225. #u1850 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:2px 2px 2px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u1850_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u1851_img {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:50px;
  5243. height:59px;
  5244. }
  5245. #u1851 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:900px;
  5249. top:292px;
  5250. width:50px;
  5251. height:59px;
  5252. display:flex;
  5253. }
  5254. #u1851 .text {
  5255. position:absolute;
  5256. align-self:center;
  5257. padding:2px 2px 2px 2px;
  5258. box-sizing:border-box;
  5259. width:100%;
  5260. }
  5261. #u1851_text {
  5262. border-width:0px;
  5263. word-wrap:break-word;
  5264. text-transform:none;
  5265. visibility:hidden;
  5266. }
  5267. #u1852 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:0px;
  5273. height:0px;
  5274. }
  5275. #u1853_div {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:254px;
  5281. height:82px;
  5282. background:inherit;
  5283. background-color:rgba(245, 154, 35, 0.0980392156862745);
  5284. box-sizing:border-box;
  5285. border-width:1px;
  5286. border-style:solid;
  5287. border-color:rgba(121, 121, 121, 1);
  5288. border-radius:0px;
  5289. -moz-box-shadow:none;
  5290. -webkit-box-shadow:none;
  5291. box-shadow:none;
  5292. }
  5293. #u1853 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:342px;
  5297. top:383px;
  5298. width:254px;
  5299. height:82px;
  5300. display:flex;
  5301. }
  5302. #u1853 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:2px 2px 2px 2px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u1853_text {
  5310. border-width:0px;
  5311. word-wrap:break-word;
  5312. text-transform:none;
  5313. visibility:hidden;
  5314. }
  5315. #u1854_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:31px;
  5321. height:24px;
  5322. background:inherit;
  5323. background-color:rgba(245, 154, 35, 0);
  5324. border:none;
  5325. border-left:0px;
  5326. border-top:0px;
  5327. border-right:0px;
  5328. border-radius:0px;
  5329. border-bottom-right-radius:0px;
  5330. border-bottom-left-radius:0px;
  5331. -moz-box-shadow:none;
  5332. -webkit-box-shadow:none;
  5333. box-shadow:none;
  5334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:14px;
  5338. color:#FFFFFF;
  5339. text-align:left;
  5340. }
  5341. #u1854 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:409px;
  5345. top:390px;
  5346. width:31px;
  5347. height:24px;
  5348. display:flex;
  5349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. color:#FFFFFF;
  5354. text-align:left;
  5355. }
  5356. #u1854 .text {
  5357. position:absolute;
  5358. align-self:center;
  5359. padding:2px 2px 2px 0px;
  5360. box-sizing:border-box;
  5361. width:100%;
  5362. }
  5363. #u1854_text {
  5364. border-width:0px;
  5365. white-space:nowrap;
  5366. text-transform:none;
  5367. }
  5368. #u1855_div {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:35px;
  5374. height:21px;
  5375. background:inherit;
  5376. background-color:rgba(245, 154, 35, 1);
  5377. border:none;
  5378. border-radius:11px;
  5379. -moz-box-shadow:none;
  5380. -webkit-box-shadow:none;
  5381. box-shadow:none;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:12px;
  5386. color:#FFFFFF;
  5387. }
  5388. #u1855 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:482px;
  5392. top:392px;
  5393. width:35px;
  5394. height:21px;
  5395. display:flex;
  5396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:12px;
  5400. color:#FFFFFF;
  5401. }
  5402. #u1855 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 2px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u1855_text {
  5410. border-width:0px;
  5411. word-wrap:break-word;
  5412. text-transform:none;
  5413. }
  5414. #u1856_div {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:25px;
  5420. height:20px;
  5421. background:inherit;
  5422. background-color:rgba(245, 154, 35, 0);
  5423. border:none;
  5424. border-left:0px;
  5425. border-top:0px;
  5426. border-right:0px;
  5427. border-radius:0px;
  5428. border-bottom-right-radius:0px;
  5429. border-bottom-left-radius:0px;
  5430. -moz-box-shadow:none;
  5431. -webkit-box-shadow:none;
  5432. box-shadow:none;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:11px;
  5437. color:#FFFFFF;
  5438. text-align:left;
  5439. }
  5440. #u1856 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:560px;
  5444. top:394px;
  5445. width:25px;
  5446. height:20px;
  5447. display:flex;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:11px;
  5452. color:#FFFFFF;
  5453. text-align:left;
  5454. }
  5455. #u1856 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:2px 2px 2px 0px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u1856_text {
  5463. border-width:0px;
  5464. white-space:nowrap;
  5465. text-transform:none;
  5466. }
  5467. #u1857_div {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:63px;
  5473. height:21px;
  5474. background:inherit;
  5475. background-color:rgba(245, 154, 35, 0);
  5476. border:none;
  5477. border-left:0px;
  5478. border-top:0px;
  5479. border-right:0px;
  5480. border-radius:0px;
  5481. border-bottom-right-radius:0px;
  5482. border-bottom-left-radius:0px;
  5483. -moz-box-shadow:none;
  5484. -webkit-box-shadow:none;
  5485. box-shadow:none;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. color:#FFFFFF;
  5491. text-align:left;
  5492. }
  5493. #u1857 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:409px;
  5497. top:421px;
  5498. width:63px;
  5499. height:21px;
  5500. display:flex;
  5501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5502. font-weight:400;
  5503. font-style:normal;
  5504. font-size:12px;
  5505. color:#FFFFFF;
  5506. text-align:left;
  5507. }
  5508. #u1857 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u1857_text {
  5516. border-width:0px;
  5517. white-space:nowrap;
  5518. text-transform:none;
  5519. }
  5520. #u1858_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:103px;
  5526. height:18px;
  5527. background:inherit;
  5528. background-color:rgba(245, 154, 35, 0);
  5529. border:none;
  5530. border-left:0px;
  5531. border-top:0px;
  5532. border-right:0px;
  5533. border-radius:0px;
  5534. border-bottom-right-radius:0px;
  5535. border-bottom-left-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:10px;
  5543. color:#FFFFFF;
  5544. text-align:left;
  5545. }
  5546. #u1858 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:409px;
  5550. top:442px;
  5551. width:103px;
  5552. height:18px;
  5553. display:flex;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:10px;
  5558. color:#FFFFFF;
  5559. text-align:left;
  5560. }
  5561. #u1858 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 0px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u1858_text {
  5569. border-width:0px;
  5570. white-space:nowrap;
  5571. text-transform:none;
  5572. }
  5573. #u1859_img {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:50px;
  5579. height:59px;
  5580. }
  5581. #u1859 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:350px;
  5585. top:394px;
  5586. width:50px;
  5587. height:59px;
  5588. display:flex;
  5589. }
  5590. #u1859 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 2px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u1859_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. visibility:hidden;
  5602. }
  5603. #u1860 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:0px;
  5609. height:0px;
  5610. }
  5611. #u1861_div {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:254px;
  5617. height:82px;
  5618. background:inherit;
  5619. background-color:rgba(245, 154, 35, 0.0980392156862745);
  5620. box-sizing:border-box;
  5621. border-width:1px;
  5622. border-style:solid;
  5623. border-color:rgba(121, 121, 121, 1);
  5624. border-radius:0px;
  5625. -moz-box-shadow:none;
  5626. -webkit-box-shadow:none;
  5627. box-shadow:none;
  5628. }
  5629. #u1861 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:617px;
  5633. top:383px;
  5634. width:254px;
  5635. height:82px;
  5636. display:flex;
  5637. }
  5638. #u1861 .text {
  5639. position:absolute;
  5640. align-self:center;
  5641. padding:2px 2px 2px 2px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u1861_text {
  5646. border-width:0px;
  5647. word-wrap:break-word;
  5648. text-transform:none;
  5649. visibility:hidden;
  5650. }
  5651. #u1862_div {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:31px;
  5657. height:24px;
  5658. background:inherit;
  5659. background-color:rgba(245, 154, 35, 0);
  5660. border:none;
  5661. border-left:0px;
  5662. border-top:0px;
  5663. border-right:0px;
  5664. border-radius:0px;
  5665. border-bottom-right-radius:0px;
  5666. border-bottom-left-radius:0px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:14px;
  5674. color:#FFFFFF;
  5675. text-align:left;
  5676. }
  5677. #u1862 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:684px;
  5681. top:390px;
  5682. width:31px;
  5683. height:24px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. color:#FFFFFF;
  5690. text-align:left;
  5691. }
  5692. #u1862 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u1862_text {
  5700. border-width:0px;
  5701. white-space:nowrap;
  5702. text-transform:none;
  5703. }
  5704. #u1863_div {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:35px;
  5710. height:21px;
  5711. background:inherit;
  5712. background-color:rgba(245, 154, 35, 1);
  5713. border:none;
  5714. border-radius:11px;
  5715. -moz-box-shadow:none;
  5716. -webkit-box-shadow:none;
  5717. box-shadow:none;
  5718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:12px;
  5722. color:#FFFFFF;
  5723. }
  5724. #u1863 {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:757px;
  5728. top:392px;
  5729. width:35px;
  5730. height:21px;
  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. #u1863 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 2px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u1863_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. }
  5750. #u1864_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:25px;
  5756. height:20px;
  5757. background:inherit;
  5758. background-color:rgba(245, 154, 35, 0);
  5759. border:none;
  5760. border-left:0px;
  5761. border-top:0px;
  5762. border-right:0px;
  5763. border-radius:0px;
  5764. border-bottom-right-radius:0px;
  5765. border-bottom-left-radius:0px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:11px;
  5773. color:#FFFFFF;
  5774. text-align:left;
  5775. }
  5776. #u1864 {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:835px;
  5780. top:394px;
  5781. width:25px;
  5782. height:20px;
  5783. display:flex;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:11px;
  5788. color:#FFFFFF;
  5789. text-align:left;
  5790. }
  5791. #u1864 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u1864_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u1865_div {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:63px;
  5809. height:21px;
  5810. background:inherit;
  5811. background-color:rgba(245, 154, 35, 0);
  5812. border:none;
  5813. border-left:0px;
  5814. border-top:0px;
  5815. border-right:0px;
  5816. border-radius:0px;
  5817. border-bottom-right-radius:0px;
  5818. border-bottom-left-radius:0px;
  5819. -moz-box-shadow:none;
  5820. -webkit-box-shadow:none;
  5821. box-shadow:none;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:12px;
  5826. color:#FFFFFF;
  5827. text-align:left;
  5828. }
  5829. #u1865 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:684px;
  5833. top:421px;
  5834. width:63px;
  5835. height:21px;
  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. text-align:left;
  5843. }
  5844. #u1865 .text {
  5845. position:absolute;
  5846. align-self:center;
  5847. padding:2px 2px 2px 0px;
  5848. box-sizing:border-box;
  5849. width:100%;
  5850. }
  5851. #u1865_text {
  5852. border-width:0px;
  5853. white-space:nowrap;
  5854. text-transform:none;
  5855. }
  5856. #u1866_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:103px;
  5862. height:18px;
  5863. background:inherit;
  5864. background-color:rgba(245, 154, 35, 0);
  5865. border:none;
  5866. border-left:0px;
  5867. border-top:0px;
  5868. border-right:0px;
  5869. border-radius:0px;
  5870. border-bottom-right-radius:0px;
  5871. border-bottom-left-radius:0px;
  5872. -moz-box-shadow:none;
  5873. -webkit-box-shadow:none;
  5874. box-shadow:none;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:10px;
  5879. color:#FFFFFF;
  5880. text-align:left;
  5881. }
  5882. #u1866 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:684px;
  5886. top:442px;
  5887. width:103px;
  5888. height:18px;
  5889. display:flex;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:10px;
  5894. color:#FFFFFF;
  5895. text-align:left;
  5896. }
  5897. #u1866 .text {
  5898. position:absolute;
  5899. align-self:center;
  5900. padding:2px 2px 2px 0px;
  5901. box-sizing:border-box;
  5902. width:100%;
  5903. }
  5904. #u1866_text {
  5905. border-width:0px;
  5906. white-space:nowrap;
  5907. text-transform:none;
  5908. }
  5909. #u1867_img {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:50px;
  5915. height:59px;
  5916. }
  5917. #u1867 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:625px;
  5921. top:394px;
  5922. width:50px;
  5923. height:59px;
  5924. display:flex;
  5925. }
  5926. #u1867 .text {
  5927. position:absolute;
  5928. align-self:center;
  5929. padding:2px 2px 2px 2px;
  5930. box-sizing:border-box;
  5931. width:100%;
  5932. }
  5933. #u1867_text {
  5934. border-width:0px;
  5935. word-wrap:break-word;
  5936. text-transform:none;
  5937. visibility:hidden;
  5938. }
  5939. #u1868 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:0px;
  5945. height:0px;
  5946. }
  5947. #u1869_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:254px;
  5953. height:82px;
  5954. background:inherit;
  5955. background-color:rgba(245, 154, 35, 0.0980392156862745);
  5956. box-sizing:border-box;
  5957. border-width:1px;
  5958. border-style:solid;
  5959. border-color:rgba(121, 121, 121, 1);
  5960. border-radius:0px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. }
  5965. #u1869 {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:892px;
  5969. top:383px;
  5970. width:254px;
  5971. height:82px;
  5972. display:flex;
  5973. }
  5974. #u1869 .text {
  5975. position:absolute;
  5976. align-self:center;
  5977. padding:2px 2px 2px 2px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u1869_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. visibility:hidden;
  5986. }
  5987. #u1870_div {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:31px;
  5993. height:24px;
  5994. background:inherit;
  5995. background-color:rgba(245, 154, 35, 0);
  5996. border:none;
  5997. border-left:0px;
  5998. border-top:0px;
  5999. border-right:0px;
  6000. border-radius:0px;
  6001. border-bottom-right-radius:0px;
  6002. border-bottom-left-radius:0px;
  6003. -moz-box-shadow:none;
  6004. -webkit-box-shadow:none;
  6005. box-shadow:none;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:14px;
  6010. color:#FFFFFF;
  6011. text-align:left;
  6012. }
  6013. #u1870 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:959px;
  6017. top:390px;
  6018. width:31px;
  6019. height:24px;
  6020. display:flex;
  6021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:14px;
  6025. color:#FFFFFF;
  6026. text-align:left;
  6027. }
  6028. #u1870 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 2px 2px 0px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u1870_text {
  6036. border-width:0px;
  6037. white-space:nowrap;
  6038. text-transform:none;
  6039. }
  6040. #u1871_div {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:0px;
  6044. top:0px;
  6045. width:35px;
  6046. height:21px;
  6047. background:inherit;
  6048. background-color:rgba(245, 154, 35, 1);
  6049. border:none;
  6050. border-radius:11px;
  6051. -moz-box-shadow:none;
  6052. -webkit-box-shadow:none;
  6053. box-shadow:none;
  6054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6055. font-weight:400;
  6056. font-style:normal;
  6057. font-size:12px;
  6058. color:#FFFFFF;
  6059. }
  6060. #u1871 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:1032px;
  6064. top:392px;
  6065. width:35px;
  6066. height:21px;
  6067. display:flex;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:12px;
  6072. color:#FFFFFF;
  6073. }
  6074. #u1871 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 2px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u1871_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. }
  6086. #u1872_div {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:25px;
  6092. height:20px;
  6093. background:inherit;
  6094. background-color:rgba(245, 154, 35, 0);
  6095. border:none;
  6096. border-left:0px;
  6097. border-top:0px;
  6098. border-right:0px;
  6099. border-radius:0px;
  6100. border-bottom-right-radius:0px;
  6101. border-bottom-left-radius:0px;
  6102. -moz-box-shadow:none;
  6103. -webkit-box-shadow:none;
  6104. box-shadow:none;
  6105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6106. font-weight:400;
  6107. font-style:normal;
  6108. font-size:11px;
  6109. color:#FFFFFF;
  6110. text-align:left;
  6111. }
  6112. #u1872 {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:1110px;
  6116. top:394px;
  6117. width:25px;
  6118. height:20px;
  6119. display:flex;
  6120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:11px;
  6124. color:#FFFFFF;
  6125. text-align:left;
  6126. }
  6127. #u1872 .text {
  6128. position:absolute;
  6129. align-self:center;
  6130. padding:2px 2px 2px 0px;
  6131. box-sizing:border-box;
  6132. width:100%;
  6133. }
  6134. #u1872_text {
  6135. border-width:0px;
  6136. white-space:nowrap;
  6137. text-transform:none;
  6138. }
  6139. #u1873_div {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:63px;
  6145. height:21px;
  6146. background:inherit;
  6147. background-color:rgba(245, 154, 35, 0);
  6148. border:none;
  6149. border-left:0px;
  6150. border-top:0px;
  6151. border-right:0px;
  6152. border-radius:0px;
  6153. border-bottom-right-radius:0px;
  6154. border-bottom-left-radius:0px;
  6155. -moz-box-shadow:none;
  6156. -webkit-box-shadow:none;
  6157. box-shadow:none;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:12px;
  6162. color:#FFFFFF;
  6163. text-align:left;
  6164. }
  6165. #u1873 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:959px;
  6169. top:421px;
  6170. width:63px;
  6171. height:21px;
  6172. display:flex;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:12px;
  6177. color:#FFFFFF;
  6178. text-align:left;
  6179. }
  6180. #u1873 .text {
  6181. position:absolute;
  6182. align-self:center;
  6183. padding:2px 2px 2px 0px;
  6184. box-sizing:border-box;
  6185. width:100%;
  6186. }
  6187. #u1873_text {
  6188. border-width:0px;
  6189. white-space:nowrap;
  6190. text-transform:none;
  6191. }
  6192. #u1874_div {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:103px;
  6198. height:18px;
  6199. background:inherit;
  6200. background-color:rgba(245, 154, 35, 0);
  6201. border:none;
  6202. border-left:0px;
  6203. border-top:0px;
  6204. border-right:0px;
  6205. border-radius:0px;
  6206. border-bottom-right-radius:0px;
  6207. border-bottom-left-radius:0px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:10px;
  6215. color:#FFFFFF;
  6216. text-align:left;
  6217. }
  6218. #u1874 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:959px;
  6222. top:442px;
  6223. width:103px;
  6224. height:18px;
  6225. display:flex;
  6226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6227. font-weight:400;
  6228. font-style:normal;
  6229. font-size:10px;
  6230. color:#FFFFFF;
  6231. text-align:left;
  6232. }
  6233. #u1874 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u1874_text {
  6241. border-width:0px;
  6242. white-space:nowrap;
  6243. text-transform:none;
  6244. }
  6245. #u1875_img {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:50px;
  6251. height:59px;
  6252. }
  6253. #u1875 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:900px;
  6257. top:394px;
  6258. width:50px;
  6259. height:59px;
  6260. display:flex;
  6261. }
  6262. #u1875 .text {
  6263. position:absolute;
  6264. align-self:center;
  6265. padding:2px 2px 2px 2px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u1875_text {
  6270. border-width:0px;
  6271. word-wrap:break-word;
  6272. text-transform:none;
  6273. visibility:hidden;
  6274. }
  6275. #u1876 {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:0px;
  6281. height:0px;
  6282. }
  6283. #u1877_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:254px;
  6289. height:82px;
  6290. background:inherit;
  6291. background-color:rgba(245, 154, 35, 0.0980392156862745);
  6292. box-sizing:border-box;
  6293. border-width:1px;
  6294. border-style:solid;
  6295. border-color:rgba(121, 121, 121, 1);
  6296. border-radius:0px;
  6297. -moz-box-shadow:none;
  6298. -webkit-box-shadow:none;
  6299. box-shadow:none;
  6300. }
  6301. #u1877 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:342px;
  6305. top:485px;
  6306. width:254px;
  6307. height:82px;
  6308. display:flex;
  6309. }
  6310. #u1877 .text {
  6311. position:absolute;
  6312. align-self:center;
  6313. padding:2px 2px 2px 2px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u1877_text {
  6318. border-width:0px;
  6319. word-wrap:break-word;
  6320. text-transform:none;
  6321. visibility:hidden;
  6322. }
  6323. #u1878_div {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:31px;
  6329. height:24px;
  6330. background:inherit;
  6331. background-color:rgba(245, 154, 35, 0);
  6332. border:none;
  6333. border-left:0px;
  6334. border-top:0px;
  6335. border-right:0px;
  6336. border-radius:0px;
  6337. border-bottom-right-radius:0px;
  6338. border-bottom-left-radius:0px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. color:#FFFFFF;
  6347. text-align:left;
  6348. }
  6349. #u1878 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:409px;
  6353. top:492px;
  6354. width:31px;
  6355. height:24px;
  6356. display:flex;
  6357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. font-size:14px;
  6361. color:#FFFFFF;
  6362. text-align:left;
  6363. }
  6364. #u1878 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:2px 2px 2px 0px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u1878_text {
  6372. border-width:0px;
  6373. white-space:nowrap;
  6374. text-transform:none;
  6375. }
  6376. #u1879_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:35px;
  6382. height:21px;
  6383. background:inherit;
  6384. background-color:rgba(245, 154, 35, 1);
  6385. border:none;
  6386. border-radius:11px;
  6387. -moz-box-shadow:none;
  6388. -webkit-box-shadow:none;
  6389. box-shadow:none;
  6390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6391. font-weight:400;
  6392. font-style:normal;
  6393. font-size:12px;
  6394. color:#FFFFFF;
  6395. }
  6396. #u1879 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:482px;
  6400. top:494px;
  6401. width:35px;
  6402. height:21px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:12px;
  6408. color:#FFFFFF;
  6409. }
  6410. #u1879 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 2px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u1879_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. }
  6422. #u1880_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:25px;
  6428. height:20px;
  6429. background:inherit;
  6430. background-color:rgba(245, 154, 35, 0);
  6431. border:none;
  6432. border-left:0px;
  6433. border-top:0px;
  6434. border-right:0px;
  6435. border-radius:0px;
  6436. border-bottom-right-radius:0px;
  6437. border-bottom-left-radius:0px;
  6438. -moz-box-shadow:none;
  6439. -webkit-box-shadow:none;
  6440. box-shadow:none;
  6441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:11px;
  6445. color:#FFFFFF;
  6446. text-align:left;
  6447. }
  6448. #u1880 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:560px;
  6452. top:496px;
  6453. width:25px;
  6454. height:20px;
  6455. display:flex;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:11px;
  6460. color:#FFFFFF;
  6461. text-align:left;
  6462. }
  6463. #u1880 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 2px 2px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u1880_text {
  6471. border-width:0px;
  6472. white-space:nowrap;
  6473. text-transform:none;
  6474. }
  6475. #u1881_div {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:63px;
  6481. height:21px;
  6482. background:inherit;
  6483. background-color:rgba(245, 154, 35, 0);
  6484. border:none;
  6485. border-left:0px;
  6486. border-top:0px;
  6487. border-right:0px;
  6488. border-radius:0px;
  6489. border-bottom-right-radius:0px;
  6490. border-bottom-left-radius:0px;
  6491. -moz-box-shadow:none;
  6492. -webkit-box-shadow:none;
  6493. box-shadow:none;
  6494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:12px;
  6498. color:#FFFFFF;
  6499. text-align:left;
  6500. }
  6501. #u1881 {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:409px;
  6505. top:523px;
  6506. width:63px;
  6507. height:21px;
  6508. display:flex;
  6509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:12px;
  6513. color:#FFFFFF;
  6514. text-align:left;
  6515. }
  6516. #u1881 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 2px 2px 0px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u1881_text {
  6524. border-width:0px;
  6525. white-space:nowrap;
  6526. text-transform:none;
  6527. }
  6528. #u1882_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:103px;
  6534. height:18px;
  6535. background:inherit;
  6536. background-color:rgba(245, 154, 35, 0);
  6537. border:none;
  6538. border-left:0px;
  6539. border-top:0px;
  6540. border-right:0px;
  6541. border-radius:0px;
  6542. border-bottom-right-radius:0px;
  6543. border-bottom-left-radius:0px;
  6544. -moz-box-shadow:none;
  6545. -webkit-box-shadow:none;
  6546. box-shadow:none;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:10px;
  6551. color:#FFFFFF;
  6552. text-align:left;
  6553. }
  6554. #u1882 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:409px;
  6558. top:544px;
  6559. width:103px;
  6560. height:18px;
  6561. display:flex;
  6562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:10px;
  6566. color:#FFFFFF;
  6567. text-align:left;
  6568. }
  6569. #u1882 .text {
  6570. position:absolute;
  6571. align-self:center;
  6572. padding:2px 2px 2px 0px;
  6573. box-sizing:border-box;
  6574. width:100%;
  6575. }
  6576. #u1882_text {
  6577. border-width:0px;
  6578. white-space:nowrap;
  6579. text-transform:none;
  6580. }
  6581. #u1883_img {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:50px;
  6587. height:59px;
  6588. }
  6589. #u1883 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:350px;
  6593. top:496px;
  6594. width:50px;
  6595. height:59px;
  6596. display:flex;
  6597. }
  6598. #u1883 .text {
  6599. position:absolute;
  6600. align-self:center;
  6601. padding:2px 2px 2px 2px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u1883_text {
  6606. border-width:0px;
  6607. word-wrap:break-word;
  6608. text-transform:none;
  6609. visibility:hidden;
  6610. }
  6611. #u1884 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:0px;
  6617. height:0px;
  6618. }
  6619. #u1885_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:254px;
  6625. height:82px;
  6626. background:inherit;
  6627. background-color:rgba(245, 154, 35, 0.0980392156862745);
  6628. box-sizing:border-box;
  6629. border-width:1px;
  6630. border-style:solid;
  6631. border-color:rgba(121, 121, 121, 1);
  6632. border-radius:0px;
  6633. -moz-box-shadow:none;
  6634. -webkit-box-shadow:none;
  6635. box-shadow:none;
  6636. }
  6637. #u1885 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:617px;
  6641. top:485px;
  6642. width:254px;
  6643. height:82px;
  6644. display:flex;
  6645. }
  6646. #u1885 .text {
  6647. position:absolute;
  6648. align-self:center;
  6649. padding:2px 2px 2px 2px;
  6650. box-sizing:border-box;
  6651. width:100%;
  6652. }
  6653. #u1885_text {
  6654. border-width:0px;
  6655. word-wrap:break-word;
  6656. text-transform:none;
  6657. visibility:hidden;
  6658. }
  6659. #u1886_div {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:31px;
  6665. height:24px;
  6666. background:inherit;
  6667. background-color:rgba(245, 154, 35, 0);
  6668. border:none;
  6669. border-left:0px;
  6670. border-top:0px;
  6671. border-right:0px;
  6672. border-radius:0px;
  6673. border-bottom-right-radius:0px;
  6674. border-bottom-left-radius:0px;
  6675. -moz-box-shadow:none;
  6676. -webkit-box-shadow:none;
  6677. box-shadow:none;
  6678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. font-size:14px;
  6682. color:#FFFFFF;
  6683. text-align:left;
  6684. }
  6685. #u1886 {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:684px;
  6689. top:492px;
  6690. width:31px;
  6691. height:24px;
  6692. display:flex;
  6693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:14px;
  6697. color:#FFFFFF;
  6698. text-align:left;
  6699. }
  6700. #u1886 .text {
  6701. position:absolute;
  6702. align-self:center;
  6703. padding:2px 2px 2px 0px;
  6704. box-sizing:border-box;
  6705. width:100%;
  6706. }
  6707. #u1886_text {
  6708. border-width:0px;
  6709. white-space:nowrap;
  6710. text-transform:none;
  6711. }
  6712. #u1887_div {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:35px;
  6718. height:21px;
  6719. background:inherit;
  6720. background-color:rgba(245, 154, 35, 1);
  6721. border:none;
  6722. border-radius:11px;
  6723. -moz-box-shadow:none;
  6724. -webkit-box-shadow:none;
  6725. box-shadow:none;
  6726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:12px;
  6730. color:#FFFFFF;
  6731. }
  6732. #u1887 {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:757px;
  6736. top:494px;
  6737. width:35px;
  6738. height:21px;
  6739. display:flex;
  6740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6741. font-weight:400;
  6742. font-style:normal;
  6743. font-size:12px;
  6744. color:#FFFFFF;
  6745. }
  6746. #u1887 .text {
  6747. position:absolute;
  6748. align-self:center;
  6749. padding:2px 2px 2px 2px;
  6750. box-sizing:border-box;
  6751. width:100%;
  6752. }
  6753. #u1887_text {
  6754. border-width:0px;
  6755. word-wrap:break-word;
  6756. text-transform:none;
  6757. }
  6758. #u1888_div {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:25px;
  6764. height:20px;
  6765. background:inherit;
  6766. background-color:rgba(245, 154, 35, 0);
  6767. border:none;
  6768. border-left:0px;
  6769. border-top:0px;
  6770. border-right:0px;
  6771. border-radius:0px;
  6772. border-bottom-right-radius:0px;
  6773. border-bottom-left-radius:0px;
  6774. -moz-box-shadow:none;
  6775. -webkit-box-shadow:none;
  6776. box-shadow:none;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:11px;
  6781. color:#FFFFFF;
  6782. text-align:left;
  6783. }
  6784. #u1888 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:835px;
  6788. top:496px;
  6789. width:25px;
  6790. height:20px;
  6791. display:flex;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:11px;
  6796. color:#FFFFFF;
  6797. text-align:left;
  6798. }
  6799. #u1888 .text {
  6800. position:absolute;
  6801. align-self:center;
  6802. padding:2px 2px 2px 0px;
  6803. box-sizing:border-box;
  6804. width:100%;
  6805. }
  6806. #u1888_text {
  6807. border-width:0px;
  6808. white-space:nowrap;
  6809. text-transform:none;
  6810. }
  6811. #u1889_div {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:0px;
  6815. top:0px;
  6816. width:63px;
  6817. height:21px;
  6818. background:inherit;
  6819. background-color:rgba(245, 154, 35, 0);
  6820. border:none;
  6821. border-left:0px;
  6822. border-top:0px;
  6823. border-right:0px;
  6824. border-radius:0px;
  6825. border-bottom-right-radius:0px;
  6826. border-bottom-left-radius:0px;
  6827. -moz-box-shadow:none;
  6828. -webkit-box-shadow:none;
  6829. box-shadow:none;
  6830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6831. font-weight:400;
  6832. font-style:normal;
  6833. font-size:12px;
  6834. color:#FFFFFF;
  6835. text-align:left;
  6836. }
  6837. #u1889 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:684px;
  6841. top:523px;
  6842. width:63px;
  6843. height:21px;
  6844. display:flex;
  6845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:12px;
  6849. color:#FFFFFF;
  6850. text-align:left;
  6851. }
  6852. #u1889 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:2px 2px 2px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u1889_text {
  6860. border-width:0px;
  6861. white-space:nowrap;
  6862. text-transform:none;
  6863. }
  6864. #u1890_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:103px;
  6870. height:18px;
  6871. background:inherit;
  6872. background-color:rgba(245, 154, 35, 0);
  6873. border:none;
  6874. border-left:0px;
  6875. border-top:0px;
  6876. border-right:0px;
  6877. border-radius:0px;
  6878. border-bottom-right-radius:0px;
  6879. border-bottom-left-radius:0px;
  6880. -moz-box-shadow:none;
  6881. -webkit-box-shadow:none;
  6882. box-shadow:none;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:10px;
  6887. color:#FFFFFF;
  6888. text-align:left;
  6889. }
  6890. #u1890 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:684px;
  6894. top:544px;
  6895. width:103px;
  6896. height:18px;
  6897. display:flex;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:10px;
  6902. color:#FFFFFF;
  6903. text-align:left;
  6904. }
  6905. #u1890 .text {
  6906. position:absolute;
  6907. align-self:center;
  6908. padding:2px 2px 2px 0px;
  6909. box-sizing:border-box;
  6910. width:100%;
  6911. }
  6912. #u1890_text {
  6913. border-width:0px;
  6914. white-space:nowrap;
  6915. text-transform:none;
  6916. }
  6917. #u1891_img {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:50px;
  6923. height:59px;
  6924. }
  6925. #u1891 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:625px;
  6929. top:496px;
  6930. width:50px;
  6931. height:59px;
  6932. display:flex;
  6933. }
  6934. #u1891 .text {
  6935. position:absolute;
  6936. align-self:center;
  6937. padding:2px 2px 2px 2px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u1891_text {
  6942. border-width:0px;
  6943. word-wrap:break-word;
  6944. text-transform:none;
  6945. visibility:hidden;
  6946. }
  6947. #u1892 {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:0px;
  6951. top:0px;
  6952. width:0px;
  6953. height:0px;
  6954. }
  6955. #u1893_div {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:254px;
  6961. height:82px;
  6962. background:inherit;
  6963. background-color:rgba(245, 154, 35, 0.0980392156862745);
  6964. box-sizing:border-box;
  6965. border-width:1px;
  6966. border-style:solid;
  6967. border-color:rgba(121, 121, 121, 1);
  6968. border-radius:0px;
  6969. -moz-box-shadow:none;
  6970. -webkit-box-shadow:none;
  6971. box-shadow:none;
  6972. }
  6973. #u1893 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:892px;
  6977. top:485px;
  6978. width:254px;
  6979. height:82px;
  6980. display:flex;
  6981. }
  6982. #u1893 .text {
  6983. position:absolute;
  6984. align-self:center;
  6985. padding:2px 2px 2px 2px;
  6986. box-sizing:border-box;
  6987. width:100%;
  6988. }
  6989. #u1893_text {
  6990. border-width:0px;
  6991. word-wrap:break-word;
  6992. text-transform:none;
  6993. visibility:hidden;
  6994. }
  6995. #u1894_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:31px;
  7001. height:24px;
  7002. background:inherit;
  7003. background-color:rgba(245, 154, 35, 0);
  7004. border:none;
  7005. border-left:0px;
  7006. border-top:0px;
  7007. border-right:0px;
  7008. border-radius:0px;
  7009. border-bottom-right-radius:0px;
  7010. border-bottom-left-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:14px;
  7018. color:#FFFFFF;
  7019. text-align:left;
  7020. }
  7021. #u1894 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:959px;
  7025. top:492px;
  7026. width:31px;
  7027. height:24px;
  7028. display:flex;
  7029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:14px;
  7033. color:#FFFFFF;
  7034. text-align:left;
  7035. }
  7036. #u1894 .text {
  7037. position:absolute;
  7038. align-self:center;
  7039. padding:2px 2px 2px 0px;
  7040. box-sizing:border-box;
  7041. width:100%;
  7042. }
  7043. #u1894_text {
  7044. border-width:0px;
  7045. white-space:nowrap;
  7046. text-transform:none;
  7047. }
  7048. #u1895_div {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:35px;
  7054. height:21px;
  7055. background:inherit;
  7056. background-color:rgba(245, 154, 35, 1);
  7057. border:none;
  7058. border-radius:11px;
  7059. -moz-box-shadow:none;
  7060. -webkit-box-shadow:none;
  7061. box-shadow:none;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:12px;
  7066. color:#FFFFFF;
  7067. }
  7068. #u1895 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:1032px;
  7072. top:494px;
  7073. width:35px;
  7074. height:21px;
  7075. display:flex;
  7076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:12px;
  7080. color:#FFFFFF;
  7081. }
  7082. #u1895 .text {
  7083. position:absolute;
  7084. align-self:center;
  7085. padding:2px 2px 2px 2px;
  7086. box-sizing:border-box;
  7087. width:100%;
  7088. }
  7089. #u1895_text {
  7090. border-width:0px;
  7091. word-wrap:break-word;
  7092. text-transform:none;
  7093. }
  7094. #u1896_div {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:0px;
  7098. top:0px;
  7099. width:25px;
  7100. height:20px;
  7101. background:inherit;
  7102. background-color:rgba(245, 154, 35, 0);
  7103. border:none;
  7104. border-left:0px;
  7105. border-top:0px;
  7106. border-right:0px;
  7107. border-radius:0px;
  7108. border-bottom-right-radius:0px;
  7109. border-bottom-left-radius:0px;
  7110. -moz-box-shadow:none;
  7111. -webkit-box-shadow:none;
  7112. box-shadow:none;
  7113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:11px;
  7117. color:#FFFFFF;
  7118. text-align:left;
  7119. }
  7120. #u1896 {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:1110px;
  7124. top:496px;
  7125. width:25px;
  7126. height:20px;
  7127. display:flex;
  7128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7129. font-weight:400;
  7130. font-style:normal;
  7131. font-size:11px;
  7132. color:#FFFFFF;
  7133. text-align:left;
  7134. }
  7135. #u1896 .text {
  7136. position:absolute;
  7137. align-self:center;
  7138. padding:2px 2px 2px 0px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u1896_text {
  7143. border-width:0px;
  7144. white-space:nowrap;
  7145. text-transform:none;
  7146. }
  7147. #u1897_div {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:63px;
  7153. height:21px;
  7154. background:inherit;
  7155. background-color:rgba(245, 154, 35, 0);
  7156. border:none;
  7157. border-left:0px;
  7158. border-top:0px;
  7159. border-right:0px;
  7160. border-radius:0px;
  7161. border-bottom-right-radius:0px;
  7162. border-bottom-left-radius:0px;
  7163. -moz-box-shadow:none;
  7164. -webkit-box-shadow:none;
  7165. box-shadow:none;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:12px;
  7170. color:#FFFFFF;
  7171. text-align:left;
  7172. }
  7173. #u1897 {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:959px;
  7177. top:523px;
  7178. width:63px;
  7179. height:21px;
  7180. display:flex;
  7181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7182. font-weight:400;
  7183. font-style:normal;
  7184. font-size:12px;
  7185. color:#FFFFFF;
  7186. text-align:left;
  7187. }
  7188. #u1897 .text {
  7189. position:absolute;
  7190. align-self:center;
  7191. padding:2px 2px 2px 0px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u1897_text {
  7196. border-width:0px;
  7197. white-space:nowrap;
  7198. text-transform:none;
  7199. }
  7200. #u1898_div {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:103px;
  7206. height:18px;
  7207. background:inherit;
  7208. background-color:rgba(245, 154, 35, 0);
  7209. border:none;
  7210. border-left:0px;
  7211. border-top:0px;
  7212. border-right:0px;
  7213. border-radius:0px;
  7214. border-bottom-right-radius:0px;
  7215. border-bottom-left-radius:0px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:10px;
  7223. color:#FFFFFF;
  7224. text-align:left;
  7225. }
  7226. #u1898 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:959px;
  7230. top:544px;
  7231. width:103px;
  7232. height:18px;
  7233. display:flex;
  7234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:10px;
  7238. color:#FFFFFF;
  7239. text-align:left;
  7240. }
  7241. #u1898 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:2px 2px 2px 0px;
  7245. box-sizing:border-box;
  7246. width:100%;
  7247. }
  7248. #u1898_text {
  7249. border-width:0px;
  7250. white-space:nowrap;
  7251. text-transform:none;
  7252. }
  7253. #u1899_img {
  7254. border-width:0px;
  7255. position:absolute;
  7256. left:0px;
  7257. top:0px;
  7258. width:50px;
  7259. height:59px;
  7260. }
  7261. #u1899 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:900px;
  7265. top:496px;
  7266. width:50px;
  7267. height:59px;
  7268. display:flex;
  7269. }
  7270. #u1899 .text {
  7271. position:absolute;
  7272. align-self:center;
  7273. padding:2px 2px 2px 2px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u1899_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. visibility:hidden;
  7282. }
  7283. #u1900 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:0px;
  7289. height:0px;
  7290. }
  7291. #u1901 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:0px;
  7297. height:0px;
  7298. }
  7299. #u1902_div {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:31px;
  7305. height:30px;
  7306. background:inherit;
  7307. background-color:rgba(255, 255, 255, 1);
  7308. box-sizing:border-box;
  7309. border-width:1px;
  7310. border-style:solid;
  7311. border-color:rgba(228, 228, 228, 1);
  7312. border-radius:4px;
  7313. -moz-box-shadow:none;
  7314. -webkit-box-shadow:none;
  7315. box-shadow:none;
  7316. font-family:'Microsoft YaHei', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:12px;
  7320. }
  7321. #u1902 {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:1030px;
  7325. top:689px;
  7326. width:31px;
  7327. height:30px;
  7328. display:flex;
  7329. font-family:'Microsoft YaHei', sans-serif;
  7330. font-weight:400;
  7331. font-style:normal;
  7332. font-size:12px;
  7333. }
  7334. #u1902 .text {
  7335. position:absolute;
  7336. align-self:center;
  7337. padding:2px 2px 2px 2px;
  7338. box-sizing:border-box;
  7339. width:100%;
  7340. }
  7341. #u1902_text {
  7342. border-width:0px;
  7343. word-wrap:break-word;
  7344. text-transform:none;
  7345. visibility:hidden;
  7346. }
  7347. #u1903_img {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:8px;
  7353. height:14px;
  7354. }
  7355. #u1903 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:1042px;
  7359. top:697px;
  7360. width:8px;
  7361. height:14px;
  7362. display:flex;
  7363. font-family:'Microsoft YaHei', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:12px;
  7367. }
  7368. #u1903 .text {
  7369. position:absolute;
  7370. align-self:center;
  7371. padding:2px 2px 2px 2px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u1903_text {
  7376. border-width:0px;
  7377. word-wrap:break-word;
  7378. text-transform:none;
  7379. visibility:hidden;
  7380. }
  7381. #u1904 {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:0px;
  7387. height:0px;
  7388. }
  7389. #u1905_div {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:0px;
  7393. top:0px;
  7394. width:31px;
  7395. height:30px;
  7396. background:inherit;
  7397. background-color:rgba(255, 255, 255, 1);
  7398. box-sizing:border-box;
  7399. border-width:1px;
  7400. border-style:solid;
  7401. border-color:rgba(228, 228, 228, 1);
  7402. border-radius:4px;
  7403. -moz-box-shadow:none;
  7404. -webkit-box-shadow:none;
  7405. box-shadow:none;
  7406. font-family:'Microsoft YaHei', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:12px;
  7410. }
  7411. #u1905 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:1115px;
  7415. top:689px;
  7416. width:31px;
  7417. height:30px;
  7418. display:flex;
  7419. font-family:'Microsoft YaHei', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:12px;
  7423. }
  7424. #u1905 .text {
  7425. position:absolute;
  7426. align-self:center;
  7427. padding:2px 2px 2px 2px;
  7428. box-sizing:border-box;
  7429. width:100%;
  7430. }
  7431. #u1905_text {
  7432. border-width:0px;
  7433. word-wrap:break-word;
  7434. text-transform:none;
  7435. visibility:hidden;
  7436. }
  7437. #u1906_img {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:8px;
  7443. height:14px;
  7444. }
  7445. #u1906 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:1128px;
  7449. top:697px;
  7450. width:8px;
  7451. height:14px;
  7452. display:flex;
  7453. font-family:'Microsoft YaHei', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:12px;
  7457. }
  7458. #u1906 .text {
  7459. position:absolute;
  7460. align-self:center;
  7461. padding:2px 2px 2px 2px;
  7462. box-sizing:border-box;
  7463. width:100%;
  7464. }
  7465. #u1906_text {
  7466. border-width:0px;
  7467. word-wrap:break-word;
  7468. text-transform:none;
  7469. visibility:hidden;
  7470. }
  7471. #u1907_div {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:32px;
  7477. height:21px;
  7478. background:inherit;
  7479. background-color:rgba(255, 255, 255, 0);
  7480. border:none;
  7481. border-radius:15px;
  7482. -moz-box-shadow:none;
  7483. -webkit-box-shadow:none;
  7484. box-shadow:none;
  7485. font-family:'Microsoft YaHei', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:14px;
  7489. color:#FFFFFF;
  7490. }
  7491. #u1907 {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:1071px;
  7495. top:694px;
  7496. width:32px;
  7497. height:21px;
  7498. display:flex;
  7499. font-family:'Microsoft YaHei', sans-serif;
  7500. font-weight:400;
  7501. font-style:normal;
  7502. font-size:14px;
  7503. color:#FFFFFF;
  7504. }
  7505. #u1907 .text {
  7506. position:absolute;
  7507. align-self:center;
  7508. padding:2px 2px 2px 2px;
  7509. box-sizing:border-box;
  7510. width:100%;
  7511. }
  7512. #u1907_text {
  7513. border-width:0px;
  7514. white-space:nowrap;
  7515. text-transform:none;
  7516. }
  7517. #u1908_div {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:0px;
  7521. top:0px;
  7522. width:100px;
  7523. height:30px;
  7524. background:inherit;
  7525. background-color:rgba(245, 154, 35, 0);
  7526. box-sizing:border-box;
  7527. border-width:1px;
  7528. border-style:solid;
  7529. border-color:rgba(245, 154, 35, 1);
  7530. border-radius:4px;
  7531. -moz-box-shadow:none;
  7532. -webkit-box-shadow:none;
  7533. box-shadow:none;
  7534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7535. font-weight:400;
  7536. font-style:normal;
  7537. font-size:12px;
  7538. color:#F59A23;
  7539. }
  7540. #u1908 {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:941px;
  7544. top:124px;
  7545. width:100px;
  7546. height:30px;
  7547. display:flex;
  7548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7549. font-weight:400;
  7550. font-style:normal;
  7551. font-size:12px;
  7552. color:#F59A23;
  7553. }
  7554. #u1908 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 2px 2px 2px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u1908_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. }
  7566. #u1909_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:100px;
  7572. height:30px;
  7573. background:inherit;
  7574. background-color:rgba(245, 154, 35, 0);
  7575. box-sizing:border-box;
  7576. border-width:1px;
  7577. border-style:solid;
  7578. border-color:rgba(245, 154, 35, 1);
  7579. border-radius:4px;
  7580. -moz-box-shadow:none;
  7581. -webkit-box-shadow:none;
  7582. box-shadow:none;
  7583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7584. font-weight:400;
  7585. font-style:normal;
  7586. font-size:12px;
  7587. color:#F59A23;
  7588. }
  7589. #u1909 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:1047px;
  7593. top:124px;
  7594. width:100px;
  7595. height:30px;
  7596. display:flex;
  7597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:12px;
  7601. color:#F59A23;
  7602. }
  7603. #u1909 .text {
  7604. position:absolute;
  7605. align-self:center;
  7606. padding:2px 2px 2px 2px;
  7607. box-sizing:border-box;
  7608. width:100%;
  7609. }
  7610. #u1909_text {
  7611. border-width:0px;
  7612. word-wrap:break-word;
  7613. text-transform:none;
  7614. }
  7615. #u1910 {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:0px;
  7621. height:0px;
  7622. }
  7623. #u1911 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:0px;
  7627. top:0px;
  7628. width:0px;
  7629. height:0px;
  7630. }
  7631. #u1912_div {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:0px;
  7635. top:0px;
  7636. width:57px;
  7637. height:20px;
  7638. background:inherit;
  7639. background-color:rgba(28, 33, 30, 1);
  7640. border:none;
  7641. border-radius:0px;
  7642. -moz-box-shadow:none;
  7643. -webkit-box-shadow:none;
  7644. box-shadow:none;
  7645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7646. font-weight:500;
  7647. font-style:normal;
  7648. font-size:14px;
  7649. color:#FFFFFF;
  7650. }
  7651. #u1912 {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:497px;
  7655. top:831px;
  7656. width:57px;
  7657. height:20px;
  7658. display:flex;
  7659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7660. font-weight:500;
  7661. font-style:normal;
  7662. font-size:14px;
  7663. color:#FFFFFF;
  7664. }
  7665. #u1912 .text {
  7666. position:absolute;
  7667. align-self:flex-start;
  7668. padding:0px 0px 0px 0px;
  7669. box-sizing:border-box;
  7670. width:100%;
  7671. }
  7672. #u1912_text {
  7673. border-width:0px;
  7674. white-space:nowrap;
  7675. text-transform:none;
  7676. }
  7677. #u1913_img {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:0px;
  7681. top:0px;
  7682. width:33px;
  7683. height:39px;
  7684. }
  7685. #u1913 {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:509px;
  7689. top:790px;
  7690. width:33px;
  7691. height:39px;
  7692. display:flex;
  7693. color:#FFFFFF;
  7694. }
  7695. #u1913 .text {
  7696. position:absolute;
  7697. align-self:center;
  7698. padding:2px 2px 2px 2px;
  7699. box-sizing:border-box;
  7700. width:100%;
  7701. }
  7702. #u1913_text {
  7703. border-width:0px;
  7704. word-wrap:break-word;
  7705. text-transform:none;
  7706. }
  7707. #u1914 {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:0px;
  7713. height:0px;
  7714. }
  7715. #u1915_div {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:57px;
  7721. height:20px;
  7722. background:inherit;
  7723. background-color:rgba(28, 33, 30, 1);
  7724. border:none;
  7725. border-radius:0px;
  7726. -moz-box-shadow:none;
  7727. -webkit-box-shadow:none;
  7728. box-shadow:none;
  7729. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7730. font-weight:500;
  7731. font-style:normal;
  7732. font-size:14px;
  7733. color:#FFFFFF;
  7734. }
  7735. #u1915 {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:573px;
  7739. top:831px;
  7740. width:57px;
  7741. height:20px;
  7742. display:flex;
  7743. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7744. font-weight:500;
  7745. font-style:normal;
  7746. font-size:14px;
  7747. color:#FFFFFF;
  7748. }
  7749. #u1915 .text {
  7750. position:absolute;
  7751. align-self:flex-start;
  7752. padding:0px 0px 0px 0px;
  7753. box-sizing:border-box;
  7754. width:100%;
  7755. }
  7756. #u1915_text {
  7757. border-width:0px;
  7758. white-space:nowrap;
  7759. text-transform:none;
  7760. }
  7761. #u1916_img {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:33px;
  7767. height:39px;
  7768. }
  7769. #u1916 {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:585px;
  7773. top:790px;
  7774. width:33px;
  7775. height:39px;
  7776. display:flex;
  7777. color:#FFFFFF;
  7778. }
  7779. #u1916 .text {
  7780. position:absolute;
  7781. align-self:center;
  7782. padding:2px 2px 2px 2px;
  7783. box-sizing:border-box;
  7784. width:100%;
  7785. }
  7786. #u1916_text {
  7787. border-width:0px;
  7788. word-wrap:break-word;
  7789. text-transform:none;
  7790. }
  7791. #u1917 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:0px;
  7797. height:0px;
  7798. }
  7799. #u1918_div {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:57px;
  7805. height:20px;
  7806. background:inherit;
  7807. background-color:rgba(28, 33, 30, 1);
  7808. border:none;
  7809. border-radius:0px;
  7810. -moz-box-shadow:none;
  7811. -webkit-box-shadow:none;
  7812. box-shadow:none;
  7813. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7814. font-weight:500;
  7815. font-style:normal;
  7816. font-size:14px;
  7817. color:#FFFFFF;
  7818. }
  7819. #u1918 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:423px;
  7823. top:831px;
  7824. width:57px;
  7825. height:20px;
  7826. display:flex;
  7827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7828. font-weight:500;
  7829. font-style:normal;
  7830. font-size:14px;
  7831. color:#FFFFFF;
  7832. }
  7833. #u1918 .text {
  7834. position:absolute;
  7835. align-self:flex-start;
  7836. padding:0px 0px 0px 0px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u1918_text {
  7841. border-width:0px;
  7842. white-space:nowrap;
  7843. text-transform:none;
  7844. }
  7845. #u1919_img {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:33px;
  7851. height:39px;
  7852. }
  7853. #u1919 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:435px;
  7857. top:790px;
  7858. width:33px;
  7859. height:39px;
  7860. display:flex;
  7861. color:#FFFFFF;
  7862. }
  7863. #u1919 .text {
  7864. position:absolute;
  7865. align-self:center;
  7866. padding:2px 2px 2px 2px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u1919_text {
  7871. border-width:0px;
  7872. word-wrap:break-word;
  7873. text-transform:none;
  7874. }
  7875. #u1920_div {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:59px;
  7881. height:20px;
  7882. background:inherit;
  7883. background-color:rgba(28, 33, 30, 1);
  7884. border:none;
  7885. border-radius:0px;
  7886. -moz-box-shadow:none;
  7887. -webkit-box-shadow:none;
  7888. box-shadow:none;
  7889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7890. font-weight:500;
  7891. font-style:normal;
  7892. font-size:14px;
  7893. color:#FFFFFF;
  7894. }
  7895. #u1920 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:423px;
  7899. top:831px;
  7900. width:59px;
  7901. height:20px;
  7902. display:flex;
  7903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7904. font-weight:500;
  7905. font-style:normal;
  7906. font-size:14px;
  7907. color:#FFFFFF;
  7908. }
  7909. #u1920 .text {
  7910. position:absolute;
  7911. align-self:flex-start;
  7912. padding:0px 0px 0px 0px;
  7913. box-sizing:border-box;
  7914. width:100%;
  7915. }
  7916. #u1920_text {
  7917. border-width:0px;
  7918. word-wrap:break-word;
  7919. text-transform:none;
  7920. }
  7921. #u1921 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:0px;
  7927. height:0px;
  7928. }
  7929. #u1922_div {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:57px;
  7935. height:20px;
  7936. background:inherit;
  7937. background-color:rgba(28, 33, 30, 1);
  7938. border:none;
  7939. border-radius:0px;
  7940. -moz-box-shadow:none;
  7941. -webkit-box-shadow:none;
  7942. box-shadow:none;
  7943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7944. font-weight:500;
  7945. font-style:normal;
  7946. font-size:14px;
  7947. color:#FFFFFF;
  7948. }
  7949. #u1922 {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:651px;
  7953. top:831px;
  7954. width:57px;
  7955. height:20px;
  7956. display:flex;
  7957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7958. font-weight:500;
  7959. font-style:normal;
  7960. font-size:14px;
  7961. color:#FFFFFF;
  7962. }
  7963. #u1922 .text {
  7964. position:absolute;
  7965. align-self:flex-start;
  7966. padding:0px 0px 0px 0px;
  7967. box-sizing:border-box;
  7968. width:100%;
  7969. }
  7970. #u1922_text {
  7971. border-width:0px;
  7972. white-space:nowrap;
  7973. text-transform:none;
  7974. }
  7975. #u1923_img {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:33px;
  7981. height:39px;
  7982. }
  7983. #u1923 {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:663px;
  7987. top:790px;
  7988. width:33px;
  7989. height:39px;
  7990. display:flex;
  7991. color:#FFFFFF;
  7992. }
  7993. #u1923 .text {
  7994. position:absolute;
  7995. align-self:center;
  7996. padding:2px 2px 2px 2px;
  7997. box-sizing:border-box;
  7998. width:100%;
  7999. }
  8000. #u1923_text {
  8001. border-width:0px;
  8002. word-wrap:break-word;
  8003. text-transform:none;
  8004. }
  8005. #u1924 {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:0px;
  8011. height:0px;
  8012. }
  8013. #u1925_div {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:57px;
  8019. height:20px;
  8020. background:inherit;
  8021. background-color:rgba(28, 33, 30, 1);
  8022. border:none;
  8023. border-radius:0px;
  8024. -moz-box-shadow:none;
  8025. -webkit-box-shadow:none;
  8026. box-shadow:none;
  8027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8028. font-weight:500;
  8029. font-style:normal;
  8030. font-size:14px;
  8031. color:#FFFFFF;
  8032. }
  8033. #u1925 {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:799px;
  8037. top:831px;
  8038. width:57px;
  8039. height:20px;
  8040. display:flex;
  8041. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8042. font-weight:500;
  8043. font-style:normal;
  8044. font-size:14px;
  8045. color:#FFFFFF;
  8046. }
  8047. #u1925 .text {
  8048. position:absolute;
  8049. align-self:flex-start;
  8050. padding:0px 0px 0px 0px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u1925_text {
  8055. border-width:0px;
  8056. white-space:nowrap;
  8057. text-transform:none;
  8058. }
  8059. #u1926_img {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:0px;
  8063. top:0px;
  8064. width:33px;
  8065. height:39px;
  8066. }
  8067. #u1926 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:811px;
  8071. top:790px;
  8072. width:33px;
  8073. height:39px;
  8074. display:flex;
  8075. color:#FFFFFF;
  8076. }
  8077. #u1926 .text {
  8078. position:absolute;
  8079. align-self:center;
  8080. padding:2px 2px 2px 2px;
  8081. box-sizing:border-box;
  8082. width:100%;
  8083. }
  8084. #u1926_text {
  8085. border-width:0px;
  8086. word-wrap:break-word;
  8087. text-transform:none;
  8088. }
  8089. #u1927 {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:0px;
  8095. height:0px;
  8096. }
  8097. #u1928_div {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:0px;
  8101. top:0px;
  8102. width:56px;
  8103. height:20px;
  8104. background:inherit;
  8105. background-color:rgba(28, 33, 30, 1);
  8106. border:none;
  8107. border-radius:0px;
  8108. -moz-box-shadow:none;
  8109. -webkit-box-shadow:none;
  8110. box-shadow:none;
  8111. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8112. font-weight:500;
  8113. font-style:normal;
  8114. font-size:14px;
  8115. color:#FFFFFF;
  8116. }
  8117. #u1928 {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:874px;
  8121. top:831px;
  8122. width:56px;
  8123. height:20px;
  8124. display:flex;
  8125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8126. font-weight:500;
  8127. font-style:normal;
  8128. font-size:14px;
  8129. color:#FFFFFF;
  8130. }
  8131. #u1928 .text {
  8132. position:absolute;
  8133. align-self:flex-start;
  8134. padding:0px 0px 0px 0px;
  8135. box-sizing:border-box;
  8136. width:100%;
  8137. }
  8138. #u1928_text {
  8139. border-width:0px;
  8140. white-space:nowrap;
  8141. text-transform:none;
  8142. }
  8143. #u1929_img {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:0px;
  8147. top:0px;
  8148. width:33px;
  8149. height:39px;
  8150. }
  8151. #u1929 {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:886px;
  8155. top:790px;
  8156. width:33px;
  8157. height:39px;
  8158. display:flex;
  8159. color:#FFFFFF;
  8160. }
  8161. #u1929 .text {
  8162. position:absolute;
  8163. align-self:center;
  8164. padding:2px 2px 2px 2px;
  8165. box-sizing:border-box;
  8166. width:100%;
  8167. }
  8168. #u1929_text {
  8169. border-width:0px;
  8170. word-wrap:break-word;
  8171. text-transform:none;
  8172. }
  8173. #u1930 {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:0px;
  8179. height:0px;
  8180. }
  8181. #u1931_div {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:59px;
  8187. height:20px;
  8188. background:inherit;
  8189. background-color:rgba(28, 33, 30, 1);
  8190. border:none;
  8191. border-radius:0px;
  8192. -moz-box-shadow:none;
  8193. -webkit-box-shadow:none;
  8194. box-shadow:none;
  8195. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8196. font-weight:500;
  8197. font-style:normal;
  8198. font-size:14px;
  8199. color:#FFFFFF;
  8200. }
  8201. #u1931 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:726px;
  8205. top:831px;
  8206. width:59px;
  8207. height:20px;
  8208. display:flex;
  8209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8210. font-weight:500;
  8211. font-style:normal;
  8212. font-size:14px;
  8213. color:#FFFFFF;
  8214. }
  8215. #u1931 .text {
  8216. position:absolute;
  8217. align-self:flex-start;
  8218. padding:0px 0px 0px 0px;
  8219. box-sizing:border-box;
  8220. width:100%;
  8221. }
  8222. #u1931_text {
  8223. border-width:0px;
  8224. word-wrap:break-word;
  8225. text-transform:none;
  8226. }
  8227. #u1932_img {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:0px;
  8231. top:0px;
  8232. width:33px;
  8233. height:39px;
  8234. }
  8235. #u1932 {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:737px;
  8239. top:790px;
  8240. width:33px;
  8241. height:39px;
  8242. display:flex;
  8243. color:#FFFFFF;
  8244. }
  8245. #u1932 .text {
  8246. position:absolute;
  8247. align-self:center;
  8248. padding:2px 2px 2px 2px;
  8249. box-sizing:border-box;
  8250. width:100%;
  8251. }
  8252. #u1932_text {
  8253. border-width:0px;
  8254. word-wrap:break-word;
  8255. text-transform:none;
  8256. }
  8257. #u1933 {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:0px;
  8261. top:0px;
  8262. width:0px;
  8263. height:0px;
  8264. }
  8265. #u1934_div {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:57px;
  8271. height:20px;
  8272. background:inherit;
  8273. background-color:rgba(28, 33, 30, 1);
  8274. border:none;
  8275. border-radius:0px;
  8276. -moz-box-shadow:none;
  8277. -webkit-box-shadow:none;
  8278. box-shadow:none;
  8279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8280. font-weight:500;
  8281. font-style:normal;
  8282. font-size:14px;
  8283. color:#FFFFFF;
  8284. }
  8285. #u1934 {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:947px;
  8289. top:831px;
  8290. width:57px;
  8291. height:20px;
  8292. display:flex;
  8293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8294. font-weight:500;
  8295. font-style:normal;
  8296. font-size:14px;
  8297. color:#FFFFFF;
  8298. }
  8299. #u1934 .text {
  8300. position:absolute;
  8301. align-self:flex-start;
  8302. padding:0px 0px 0px 0px;
  8303. box-sizing:border-box;
  8304. width:100%;
  8305. }
  8306. #u1934_text {
  8307. border-width:0px;
  8308. white-space:nowrap;
  8309. text-transform:none;
  8310. }
  8311. #u1935_img {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:33px;
  8317. height:39px;
  8318. }
  8319. #u1935 {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:960px;
  8323. top:790px;
  8324. width:33px;
  8325. height:39px;
  8326. display:flex;
  8327. color:#FFFFFF;
  8328. }
  8329. #u1935 .text {
  8330. position:absolute;
  8331. align-self:center;
  8332. padding:2px 2px 2px 2px;
  8333. box-sizing:border-box;
  8334. width:100%;
  8335. }
  8336. #u1935_text {
  8337. border-width:0px;
  8338. word-wrap:break-word;
  8339. text-transform:none;
  8340. }
  8341. #u1936 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:0px;
  8347. height:0px;
  8348. }
  8349. #u1937_div {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:68px;
  8355. height:20px;
  8356. background:inherit;
  8357. background-color:rgba(28, 33, 30, 1);
  8358. border:none;
  8359. border-radius:0px;
  8360. -moz-box-shadow:none;
  8361. -webkit-box-shadow:none;
  8362. box-shadow:none;
  8363. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8364. font-weight:500;
  8365. font-style:normal;
  8366. font-size:14px;
  8367. color:#FFFFFF;
  8368. text-align:center;
  8369. }
  8370. #u1937 {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:1019px;
  8374. top:831px;
  8375. width:68px;
  8376. height:20px;
  8377. display:flex;
  8378. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8379. font-weight:500;
  8380. font-style:normal;
  8381. font-size:14px;
  8382. color:#FFFFFF;
  8383. text-align:center;
  8384. }
  8385. #u1937 .text {
  8386. position:absolute;
  8387. align-self:flex-start;
  8388. padding:0px 0px 0px 0px;
  8389. box-sizing:border-box;
  8390. width:100%;
  8391. }
  8392. #u1937_text {
  8393. border-width:0px;
  8394. word-wrap:break-word;
  8395. text-transform:none;
  8396. }
  8397. #u1938_img {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:33px;
  8403. height:39px;
  8404. }
  8405. #u1938 {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:1033px;
  8409. top:790px;
  8410. width:33px;
  8411. height:39px;
  8412. display:flex;
  8413. color:#FFFFFF;
  8414. }
  8415. #u1938 .text {
  8416. position:absolute;
  8417. align-self:center;
  8418. padding:2px 2px 2px 2px;
  8419. box-sizing:border-box;
  8420. width:100%;
  8421. }
  8422. #u1938_text {
  8423. border-width:0px;
  8424. word-wrap:break-word;
  8425. text-transform:none;
  8426. }
  8427. #u1939_div {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:0px;
  8431. top:0px;
  8432. width:178px;
  8433. height:21px;
  8434. background:inherit;
  8435. background-color:rgba(217, 0, 27, 0);
  8436. border:none;
  8437. border-radius:4px;
  8438. -moz-box-shadow:none;
  8439. -webkit-box-shadow:none;
  8440. box-shadow:none;
  8441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8442. font-weight:400;
  8443. font-style:normal;
  8444. font-size:12px;
  8445. color:#D9001B;
  8446. text-align:left;
  8447. }
  8448. #u1939 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:357px;
  8452. top:679px;
  8453. width:178px;
  8454. height:21px;
  8455. display:flex;
  8456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8457. font-weight:400;
  8458. font-style:normal;
  8459. font-size:12px;
  8460. color:#D9001B;
  8461. text-align:left;
  8462. }
  8463. #u1939 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:2px 2px 2px 2px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u1939_text {
  8471. border-width:0px;
  8472. white-space:nowrap;
  8473. text-transform:none;
  8474. }
  8475. #u1940 {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:0px;
  8481. height:0px;
  8482. }
  8483. #u1941_img {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:-20px;
  8487. top:-20px;
  8488. width:1040px;
  8489. height:629px;
  8490. }
  8491. #u1941 {
  8492. border-width:0px;
  8493. position:absolute;
  8494. left:216px;
  8495. top:887px;
  8496. width:1000px;
  8497. height:589px;
  8498. display:flex;
  8499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8500. font-weight:400;
  8501. font-style:normal;
  8502. font-size:14px;
  8503. color:#F59A23;
  8504. }
  8505. #u1941 .text {
  8506. position:absolute;
  8507. align-self:center;
  8508. padding:2px 2px 2px 2px;
  8509. box-sizing:border-box;
  8510. width:100%;
  8511. }
  8512. #u1941_text {
  8513. border-width:0px;
  8514. word-wrap:break-word;
  8515. text-transform:none;
  8516. visibility:hidden;
  8517. }
  8518. #u1942_div {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:0px;
  8522. top:0px;
  8523. width:125px;
  8524. height:32px;
  8525. background:inherit;
  8526. background-color:rgba(255, 255, 255, 0);
  8527. border:none;
  8528. border-radius:0px;
  8529. -moz-box-shadow:none;
  8530. -webkit-box-shadow:none;
  8531. box-shadow:none;
  8532. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8533. font-weight:500;
  8534. font-style:normal;
  8535. font-size:20px;
  8536. color:#FFFFFF;
  8537. }
  8538. #u1942 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:236px;
  8542. top:897px;
  8543. width:125px;
  8544. height:32px;
  8545. display:flex;
  8546. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8547. font-weight:500;
  8548. font-style:normal;
  8549. font-size:20px;
  8550. color:#FFFFFF;
  8551. }
  8552. #u1942 .text {
  8553. position:absolute;
  8554. align-self:center;
  8555. padding:2px 2px 2px 2px;
  8556. box-sizing:border-box;
  8557. width:100%;
  8558. }
  8559. #u1942_text {
  8560. border-width:0px;
  8561. white-space:nowrap;
  8562. text-transform:none;
  8563. }
  8564. #u1943_div {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:0px;
  8568. top:0px;
  8569. width:33px;
  8570. height:40px;
  8571. background:inherit;
  8572. background-color:rgba(255, 255, 255, 0);
  8573. box-sizing:border-box;
  8574. border-width:2px;
  8575. border-style:solid;
  8576. border-color:rgba(245, 154, 35, 1);
  8577. border-left:0px;
  8578. border-top:0px;
  8579. border-right:0px;
  8580. border-radius:0px;
  8581. border-bottom-right-radius:0px;
  8582. border-bottom-left-radius:0px;
  8583. -moz-box-shadow:none;
  8584. -webkit-box-shadow:none;
  8585. box-shadow:none;
  8586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8587. font-weight:400;
  8588. font-style:normal;
  8589. font-size:14px;
  8590. color:#F59A23;
  8591. }
  8592. #u1943 {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:252px;
  8596. top:943px;
  8597. width:33px;
  8598. height:40px;
  8599. display:flex;
  8600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:14px;
  8604. color:#F59A23;
  8605. }
  8606. #u1943 .text {
  8607. position:absolute;
  8608. align-self:center;
  8609. padding:2px 2px 2px 2px;
  8610. box-sizing:border-box;
  8611. width:100%;
  8612. }
  8613. #u1943_text {
  8614. border-width:0px;
  8615. white-space:nowrap;
  8616. text-transform:none;
  8617. }
  8618. #u1944_div {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:47px;
  8624. height:40px;
  8625. background:inherit;
  8626. background-color:rgba(255, 255, 255, 0);
  8627. border:none;
  8628. border-left:0px;
  8629. border-top:0px;
  8630. border-right:0px;
  8631. border-radius:0px;
  8632. border-bottom-right-radius:0px;
  8633. border-bottom-left-radius:0px;
  8634. -moz-box-shadow:none;
  8635. -webkit-box-shadow:none;
  8636. box-shadow:none;
  8637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:14px;
  8641. color:#FFFFFF;
  8642. }
  8643. #u1944 {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:317px;
  8647. top:943px;
  8648. width:47px;
  8649. height:40px;
  8650. display:flex;
  8651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:14px;
  8655. color:#FFFFFF;
  8656. }
  8657. #u1944 .text {
  8658. position:absolute;
  8659. align-self:center;
  8660. padding:2px 2px 2px 2px;
  8661. box-sizing:border-box;
  8662. width:100%;
  8663. }
  8664. #u1944_text {
  8665. border-width:0px;
  8666. white-space:nowrap;
  8667. text-transform:none;
  8668. }
  8669. #u1945_div {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:47px;
  8675. height:40px;
  8676. background:inherit;
  8677. background-color:rgba(255, 255, 255, 0);
  8678. border:none;
  8679. border-left:0px;
  8680. border-top:0px;
  8681. border-right:0px;
  8682. border-radius:0px;
  8683. border-bottom-right-radius:0px;
  8684. border-bottom-left-radius:0px;
  8685. -moz-box-shadow:none;
  8686. -webkit-box-shadow:none;
  8687. box-shadow:none;
  8688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8689. font-weight:400;
  8690. font-style:normal;
  8691. font-size:14px;
  8692. color:#FFFFFF;
  8693. }
  8694. #u1945 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:395px;
  8698. top:943px;
  8699. width:47px;
  8700. height:40px;
  8701. display:flex;
  8702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:14px;
  8706. color:#FFFFFF;
  8707. }
  8708. #u1945 .text {
  8709. position:absolute;
  8710. align-self:center;
  8711. padding:2px 2px 2px 2px;
  8712. box-sizing:border-box;
  8713. width:100%;
  8714. }
  8715. #u1945_text {
  8716. border-width:0px;
  8717. white-space:nowrap;
  8718. text-transform:none;
  8719. }
  8720. #u1946 {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:252px;
  8724. top:993px;
  8725. width:944px;
  8726. height:366px;
  8727. }
  8728. #u1947_img {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:0px;
  8732. top:0px;
  8733. width:118px;
  8734. height:39px;
  8735. }
  8736. #u1947 {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:0px;
  8740. top:0px;
  8741. width:118px;
  8742. height:39px;
  8743. display:flex;
  8744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8745. font-weight:400;
  8746. font-style:normal;
  8747. font-size:12px;
  8748. color:#FFFFFF;
  8749. }
  8750. #u1947 .text {
  8751. position:absolute;
  8752. align-self:center;
  8753. padding:2px 2px 2px 0px;
  8754. box-sizing:border-box;
  8755. width:100%;
  8756. }
  8757. #u1947_text {
  8758. border-width:0px;
  8759. word-wrap:break-word;
  8760. text-transform:none;
  8761. }
  8762. #u1948_img {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:118px;
  8768. height:39px;
  8769. }
  8770. #u1948 {
  8771. border-width:0px;
  8772. position:absolute;
  8773. left:118px;
  8774. top:0px;
  8775. width:118px;
  8776. height:39px;
  8777. display:flex;
  8778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8779. font-weight:400;
  8780. font-style:normal;
  8781. font-size:12px;
  8782. color:#FFFFFF;
  8783. }
  8784. #u1948 .text {
  8785. position:absolute;
  8786. align-self:center;
  8787. padding:2px 2px 2px 0px;
  8788. box-sizing:border-box;
  8789. width:100%;
  8790. }
  8791. #u1948_text {
  8792. border-width:0px;
  8793. word-wrap:break-word;
  8794. text-transform:none;
  8795. }
  8796. #u1949_img {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:0px;
  8800. top:0px;
  8801. width:118px;
  8802. height:39px;
  8803. }
  8804. #u1949 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:236px;
  8808. top:0px;
  8809. width:118px;
  8810. height:39px;
  8811. display:flex;
  8812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:12px;
  8816. color:#FFFFFF;
  8817. }
  8818. #u1949 .text {
  8819. position:absolute;
  8820. align-self:center;
  8821. padding:2px 2px 2px 0px;
  8822. box-sizing:border-box;
  8823. width:100%;
  8824. }
  8825. #u1949_text {
  8826. border-width:0px;
  8827. word-wrap:break-word;
  8828. text-transform:none;
  8829. }
  8830. #u1950_img {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:0px;
  8834. top:0px;
  8835. width:118px;
  8836. height:39px;
  8837. }
  8838. #u1950 {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:354px;
  8842. top:0px;
  8843. width:118px;
  8844. height:39px;
  8845. display:flex;
  8846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8847. font-weight:400;
  8848. font-style:normal;
  8849. font-size:12px;
  8850. color:#FFFFFF;
  8851. }
  8852. #u1950 .text {
  8853. position:absolute;
  8854. align-self:center;
  8855. padding:2px 2px 2px 0px;
  8856. box-sizing:border-box;
  8857. width:100%;
  8858. }
  8859. #u1950_text {
  8860. border-width:0px;
  8861. word-wrap:break-word;
  8862. text-transform:none;
  8863. }
  8864. #u1951_img {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:118px;
  8870. height:39px;
  8871. }
  8872. #u1951 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:472px;
  8876. top:0px;
  8877. width:118px;
  8878. height:39px;
  8879. display:flex;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. font-size:12px;
  8884. color:#FFFFFF;
  8885. }
  8886. #u1951 .text {
  8887. position:absolute;
  8888. align-self:center;
  8889. padding:2px 2px 2px 0px;
  8890. box-sizing:border-box;
  8891. width:100%;
  8892. }
  8893. #u1951_text {
  8894. border-width:0px;
  8895. word-wrap:break-word;
  8896. text-transform:none;
  8897. }
  8898. #u1952_img {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:118px;
  8904. height:39px;
  8905. }
  8906. #u1952 {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:590px;
  8910. top:0px;
  8911. width:118px;
  8912. height:39px;
  8913. display:flex;
  8914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8915. font-weight:400;
  8916. font-style:normal;
  8917. font-size:12px;
  8918. color:#FFFFFF;
  8919. }
  8920. #u1952 .text {
  8921. position:absolute;
  8922. align-self:center;
  8923. padding:2px 2px 2px 0px;
  8924. box-sizing:border-box;
  8925. width:100%;
  8926. }
  8927. #u1952_text {
  8928. border-width:0px;
  8929. word-wrap:break-word;
  8930. text-transform:none;
  8931. }
  8932. #u1953_img {
  8933. border-width:0px;
  8934. position:absolute;
  8935. left:0px;
  8936. top:0px;
  8937. width:118px;
  8938. height:39px;
  8939. }
  8940. #u1953 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:708px;
  8944. top:0px;
  8945. width:118px;
  8946. height:39px;
  8947. display:flex;
  8948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8949. font-weight:400;
  8950. font-style:normal;
  8951. font-size:12px;
  8952. color:#FFFFFF;
  8953. }
  8954. #u1953 .text {
  8955. position:absolute;
  8956. align-self:center;
  8957. padding:2px 2px 2px 0px;
  8958. box-sizing:border-box;
  8959. width:100%;
  8960. }
  8961. #u1953_text {
  8962. border-width:0px;
  8963. word-wrap:break-word;
  8964. text-transform:none;
  8965. }
  8966. #u1954_img {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:0px;
  8970. top:0px;
  8971. width:118px;
  8972. height:39px;
  8973. }
  8974. #u1954 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:826px;
  8978. top:0px;
  8979. width:118px;
  8980. height:39px;
  8981. display:flex;
  8982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:12px;
  8986. color:#FFFFFF;
  8987. }
  8988. #u1954 .text {
  8989. position:absolute;
  8990. align-self:center;
  8991. padding:2px 2px 2px 0px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u1954_text {
  8996. border-width:0px;
  8997. word-wrap:break-word;
  8998. text-transform:none;
  8999. }
  9000. #u1955_img {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:118px;
  9006. height:38px;
  9007. }
  9008. #u1955 {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:0px;
  9012. top:39px;
  9013. width:118px;
  9014. height:38px;
  9015. display:flex;
  9016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9017. font-weight:400;
  9018. font-style:normal;
  9019. font-size:12px;
  9020. color:#FFFFFF;
  9021. }
  9022. #u1955 .text {
  9023. position:absolute;
  9024. align-self:center;
  9025. padding:2px 2px 2px 0px;
  9026. box-sizing:border-box;
  9027. width:100%;
  9028. }
  9029. #u1955_text {
  9030. border-width:0px;
  9031. word-wrap:break-word;
  9032. text-transform:none;
  9033. visibility:hidden;
  9034. }
  9035. #u1956_img {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:0px;
  9039. top:0px;
  9040. width:118px;
  9041. height:38px;
  9042. }
  9043. #u1956 {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:118px;
  9047. top:39px;
  9048. width:118px;
  9049. height:38px;
  9050. display:flex;
  9051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9052. font-weight:400;
  9053. font-style:normal;
  9054. font-size:12px;
  9055. color:#FFFFFF;
  9056. }
  9057. #u1956 .text {
  9058. position:absolute;
  9059. align-self:center;
  9060. padding:2px 2px 2px 0px;
  9061. box-sizing:border-box;
  9062. width:100%;
  9063. }
  9064. #u1956_text {
  9065. border-width:0px;
  9066. word-wrap:break-word;
  9067. text-transform:none;
  9068. visibility:hidden;
  9069. }
  9070. #u1957_img {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:0px;
  9074. top:0px;
  9075. width:118px;
  9076. height:38px;
  9077. }
  9078. #u1957 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:236px;
  9082. top:39px;
  9083. width:118px;
  9084. height:38px;
  9085. display:flex;
  9086. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9087. font-weight:400;
  9088. font-style:normal;
  9089. font-size:12px;
  9090. color:#FFFFFF;
  9091. }
  9092. #u1957 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:2px 2px 2px 0px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u1957_text {
  9100. border-width:0px;
  9101. word-wrap:break-word;
  9102. text-transform:none;
  9103. visibility:hidden;
  9104. }
  9105. #u1958_img {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:0px;
  9109. top:0px;
  9110. width:118px;
  9111. height:38px;
  9112. }
  9113. #u1958 {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:354px;
  9117. top:39px;
  9118. width:118px;
  9119. height:38px;
  9120. display:flex;
  9121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9122. font-weight:400;
  9123. font-style:normal;
  9124. font-size:12px;
  9125. color:#FFFFFF;
  9126. }
  9127. #u1958 .text {
  9128. position:absolute;
  9129. align-self:center;
  9130. padding:2px 2px 2px 0px;
  9131. box-sizing:border-box;
  9132. width:100%;
  9133. }
  9134. #u1958_text {
  9135. border-width:0px;
  9136. word-wrap:break-word;
  9137. text-transform:none;
  9138. visibility:hidden;
  9139. }
  9140. #u1959_img {
  9141. border-width:0px;
  9142. position:absolute;
  9143. left:0px;
  9144. top:0px;
  9145. width:118px;
  9146. height:38px;
  9147. }
  9148. #u1959 {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:472px;
  9152. top:39px;
  9153. width:118px;
  9154. height:38px;
  9155. display:flex;
  9156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9157. font-weight:400;
  9158. font-style:normal;
  9159. font-size:12px;
  9160. color:#FFFFFF;
  9161. }
  9162. #u1959 .text {
  9163. position:absolute;
  9164. align-self:center;
  9165. padding:2px 2px 2px 0px;
  9166. box-sizing:border-box;
  9167. width:100%;
  9168. }
  9169. #u1959_text {
  9170. border-width:0px;
  9171. word-wrap:break-word;
  9172. text-transform:none;
  9173. visibility:hidden;
  9174. }
  9175. #u1960_img {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:0px;
  9179. top:0px;
  9180. width:118px;
  9181. height:38px;
  9182. }
  9183. #u1960 {
  9184. border-width:0px;
  9185. position:absolute;
  9186. left:590px;
  9187. top:39px;
  9188. width:118px;
  9189. height:38px;
  9190. display:flex;
  9191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9192. font-weight:400;
  9193. font-style:normal;
  9194. font-size:12px;
  9195. color:#FFFFFF;
  9196. }
  9197. #u1960 .text {
  9198. position:absolute;
  9199. align-self:center;
  9200. padding:2px 2px 2px 0px;
  9201. box-sizing:border-box;
  9202. width:100%;
  9203. }
  9204. #u1960_text {
  9205. border-width:0px;
  9206. word-wrap:break-word;
  9207. text-transform:none;
  9208. visibility:hidden;
  9209. }
  9210. #u1961_img {
  9211. border-width:0px;
  9212. position:absolute;
  9213. left:0px;
  9214. top:0px;
  9215. width:118px;
  9216. height:38px;
  9217. }
  9218. #u1961 {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:708px;
  9222. top:39px;
  9223. width:118px;
  9224. height:38px;
  9225. display:flex;
  9226. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9227. font-weight:400;
  9228. font-style:normal;
  9229. font-size:12px;
  9230. color:#FFFFFF;
  9231. }
  9232. #u1961 .text {
  9233. position:absolute;
  9234. align-self:center;
  9235. padding:2px 2px 2px 0px;
  9236. box-sizing:border-box;
  9237. width:100%;
  9238. }
  9239. #u1961_text {
  9240. border-width:0px;
  9241. word-wrap:break-word;
  9242. text-transform:none;
  9243. visibility:hidden;
  9244. }
  9245. #u1962_img {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:0px;
  9249. top:0px;
  9250. width:118px;
  9251. height:38px;
  9252. }
  9253. #u1962 {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:826px;
  9257. top:39px;
  9258. width:118px;
  9259. height:38px;
  9260. display:flex;
  9261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9262. font-weight:400;
  9263. font-style:normal;
  9264. font-size:12px;
  9265. color:#FFFFFF;
  9266. }
  9267. #u1962 .text {
  9268. position:absolute;
  9269. align-self:center;
  9270. padding:2px 2px 2px 0px;
  9271. box-sizing:border-box;
  9272. width:100%;
  9273. }
  9274. #u1962_text {
  9275. border-width:0px;
  9276. word-wrap:break-word;
  9277. text-transform:none;
  9278. visibility:hidden;
  9279. }
  9280. #u1963_img {
  9281. border-width:0px;
  9282. position:absolute;
  9283. left:0px;
  9284. top:0px;
  9285. width:118px;
  9286. height:38px;
  9287. }
  9288. #u1963 {
  9289. border-width:0px;
  9290. position:absolute;
  9291. left:0px;
  9292. top:77px;
  9293. width:118px;
  9294. height:38px;
  9295. display:flex;
  9296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9297. font-weight:400;
  9298. font-style:normal;
  9299. font-size:12px;
  9300. color:#FFFFFF;
  9301. }
  9302. #u1963 .text {
  9303. position:absolute;
  9304. align-self:center;
  9305. padding:2px 2px 2px 0px;
  9306. box-sizing:border-box;
  9307. width:100%;
  9308. }
  9309. #u1963_text {
  9310. border-width:0px;
  9311. word-wrap:break-word;
  9312. text-transform:none;
  9313. visibility:hidden;
  9314. }
  9315. #u1964_img {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:0px;
  9319. top:0px;
  9320. width:118px;
  9321. height:38px;
  9322. }
  9323. #u1964 {
  9324. border-width:0px;
  9325. position:absolute;
  9326. left:118px;
  9327. top:77px;
  9328. width:118px;
  9329. height:38px;
  9330. display:flex;
  9331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9332. font-weight:400;
  9333. font-style:normal;
  9334. font-size:12px;
  9335. color:#FFFFFF;
  9336. }
  9337. #u1964 .text {
  9338. position:absolute;
  9339. align-self:center;
  9340. padding:2px 2px 2px 0px;
  9341. box-sizing:border-box;
  9342. width:100%;
  9343. }
  9344. #u1964_text {
  9345. border-width:0px;
  9346. word-wrap:break-word;
  9347. text-transform:none;
  9348. visibility:hidden;
  9349. }
  9350. #u1965_img {
  9351. border-width:0px;
  9352. position:absolute;
  9353. left:0px;
  9354. top:0px;
  9355. width:118px;
  9356. height:38px;
  9357. }
  9358. #u1965 {
  9359. border-width:0px;
  9360. position:absolute;
  9361. left:236px;
  9362. top:77px;
  9363. width:118px;
  9364. height:38px;
  9365. display:flex;
  9366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9367. font-weight:400;
  9368. font-style:normal;
  9369. font-size:12px;
  9370. color:#FFFFFF;
  9371. }
  9372. #u1965 .text {
  9373. position:absolute;
  9374. align-self:center;
  9375. padding:2px 2px 2px 0px;
  9376. box-sizing:border-box;
  9377. width:100%;
  9378. }
  9379. #u1965_text {
  9380. border-width:0px;
  9381. word-wrap:break-word;
  9382. text-transform:none;
  9383. visibility:hidden;
  9384. }
  9385. #u1966_img {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:0px;
  9389. top:0px;
  9390. width:118px;
  9391. height:38px;
  9392. }
  9393. #u1966 {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:354px;
  9397. top:77px;
  9398. width:118px;
  9399. height:38px;
  9400. display:flex;
  9401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9402. font-weight:400;
  9403. font-style:normal;
  9404. font-size:12px;
  9405. color:#FFFFFF;
  9406. }
  9407. #u1966 .text {
  9408. position:absolute;
  9409. align-self:center;
  9410. padding:2px 2px 2px 0px;
  9411. box-sizing:border-box;
  9412. width:100%;
  9413. }
  9414. #u1966_text {
  9415. border-width:0px;
  9416. word-wrap:break-word;
  9417. text-transform:none;
  9418. visibility:hidden;
  9419. }
  9420. #u1967_img {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:0px;
  9424. top:0px;
  9425. width:118px;
  9426. height:38px;
  9427. }
  9428. #u1967 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:472px;
  9432. top:77px;
  9433. width:118px;
  9434. height:38px;
  9435. display:flex;
  9436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. font-size:12px;
  9440. color:#FFFFFF;
  9441. }
  9442. #u1967 .text {
  9443. position:absolute;
  9444. align-self:center;
  9445. padding:2px 2px 2px 0px;
  9446. box-sizing:border-box;
  9447. width:100%;
  9448. }
  9449. #u1967_text {
  9450. border-width:0px;
  9451. word-wrap:break-word;
  9452. text-transform:none;
  9453. visibility:hidden;
  9454. }
  9455. #u1968_img {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:0px;
  9459. top:0px;
  9460. width:118px;
  9461. height:38px;
  9462. }
  9463. #u1968 {
  9464. border-width:0px;
  9465. position:absolute;
  9466. left:590px;
  9467. top:77px;
  9468. width:118px;
  9469. height:38px;
  9470. display:flex;
  9471. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9472. font-weight:400;
  9473. font-style:normal;
  9474. font-size:12px;
  9475. color:#FFFFFF;
  9476. }
  9477. #u1968 .text {
  9478. position:absolute;
  9479. align-self:center;
  9480. padding:2px 2px 2px 0px;
  9481. box-sizing:border-box;
  9482. width:100%;
  9483. }
  9484. #u1968_text {
  9485. border-width:0px;
  9486. word-wrap:break-word;
  9487. text-transform:none;
  9488. visibility:hidden;
  9489. }
  9490. #u1969_img {
  9491. border-width:0px;
  9492. position:absolute;
  9493. left:0px;
  9494. top:0px;
  9495. width:118px;
  9496. height:38px;
  9497. }
  9498. #u1969 {
  9499. border-width:0px;
  9500. position:absolute;
  9501. left:708px;
  9502. top:77px;
  9503. width:118px;
  9504. height:38px;
  9505. display:flex;
  9506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9507. font-weight:400;
  9508. font-style:normal;
  9509. font-size:12px;
  9510. color:#FFFFFF;
  9511. }
  9512. #u1969 .text {
  9513. position:absolute;
  9514. align-self:center;
  9515. padding:2px 2px 2px 0px;
  9516. box-sizing:border-box;
  9517. width:100%;
  9518. }
  9519. #u1969_text {
  9520. border-width:0px;
  9521. word-wrap:break-word;
  9522. text-transform:none;
  9523. visibility:hidden;
  9524. }
  9525. #u1970_img {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:0px;
  9529. top:0px;
  9530. width:118px;
  9531. height:38px;
  9532. }
  9533. #u1970 {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:826px;
  9537. top:77px;
  9538. width:118px;
  9539. height:38px;
  9540. display:flex;
  9541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9542. font-weight:400;
  9543. font-style:normal;
  9544. font-size:12px;
  9545. color:#FFFFFF;
  9546. }
  9547. #u1970 .text {
  9548. position:absolute;
  9549. align-self:center;
  9550. padding:2px 2px 2px 0px;
  9551. box-sizing:border-box;
  9552. width:100%;
  9553. }
  9554. #u1970_text {
  9555. border-width:0px;
  9556. word-wrap:break-word;
  9557. text-transform:none;
  9558. visibility:hidden;
  9559. }
  9560. #u1971_img {
  9561. border-width:0px;
  9562. position:absolute;
  9563. left:0px;
  9564. top:0px;
  9565. width:118px;
  9566. height:38px;
  9567. }
  9568. #u1971 {
  9569. border-width:0px;
  9570. position:absolute;
  9571. left:0px;
  9572. top:115px;
  9573. width:118px;
  9574. height:38px;
  9575. display:flex;
  9576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9577. font-weight:400;
  9578. font-style:normal;
  9579. font-size:12px;
  9580. color:#FFFFFF;
  9581. }
  9582. #u1971 .text {
  9583. position:absolute;
  9584. align-self:center;
  9585. padding:2px 2px 2px 0px;
  9586. box-sizing:border-box;
  9587. width:100%;
  9588. }
  9589. #u1971_text {
  9590. border-width:0px;
  9591. word-wrap:break-word;
  9592. text-transform:none;
  9593. visibility:hidden;
  9594. }
  9595. #u1972_img {
  9596. border-width:0px;
  9597. position:absolute;
  9598. left:0px;
  9599. top:0px;
  9600. width:118px;
  9601. height:38px;
  9602. }
  9603. #u1972 {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:118px;
  9607. top:115px;
  9608. width:118px;
  9609. height:38px;
  9610. display:flex;
  9611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9612. font-weight:400;
  9613. font-style:normal;
  9614. font-size:12px;
  9615. color:#FFFFFF;
  9616. }
  9617. #u1972 .text {
  9618. position:absolute;
  9619. align-self:center;
  9620. padding:2px 2px 2px 0px;
  9621. box-sizing:border-box;
  9622. width:100%;
  9623. }
  9624. #u1972_text {
  9625. border-width:0px;
  9626. word-wrap:break-word;
  9627. text-transform:none;
  9628. visibility:hidden;
  9629. }
  9630. #u1973_img {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:0px;
  9634. top:0px;
  9635. width:118px;
  9636. height:38px;
  9637. }
  9638. #u1973 {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:236px;
  9642. top:115px;
  9643. width:118px;
  9644. height:38px;
  9645. display:flex;
  9646. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:12px;
  9650. color:#FFFFFF;
  9651. }
  9652. #u1973 .text {
  9653. position:absolute;
  9654. align-self:center;
  9655. padding:2px 2px 2px 0px;
  9656. box-sizing:border-box;
  9657. width:100%;
  9658. }
  9659. #u1973_text {
  9660. border-width:0px;
  9661. word-wrap:break-word;
  9662. text-transform:none;
  9663. visibility:hidden;
  9664. }
  9665. #u1974_img {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:118px;
  9671. height:38px;
  9672. }
  9673. #u1974 {
  9674. border-width:0px;
  9675. position:absolute;
  9676. left:354px;
  9677. top:115px;
  9678. width:118px;
  9679. height:38px;
  9680. display:flex;
  9681. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9682. font-weight:400;
  9683. font-style:normal;
  9684. font-size:12px;
  9685. color:#FFFFFF;
  9686. }
  9687. #u1974 .text {
  9688. position:absolute;
  9689. align-self:center;
  9690. padding:2px 2px 2px 0px;
  9691. box-sizing:border-box;
  9692. width:100%;
  9693. }
  9694. #u1974_text {
  9695. border-width:0px;
  9696. word-wrap:break-word;
  9697. text-transform:none;
  9698. visibility:hidden;
  9699. }
  9700. #u1975_img {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:118px;
  9706. height:38px;
  9707. }
  9708. #u1975 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:472px;
  9712. top:115px;
  9713. width:118px;
  9714. height:38px;
  9715. display:flex;
  9716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9717. font-weight:400;
  9718. font-style:normal;
  9719. font-size:12px;
  9720. color:#FFFFFF;
  9721. }
  9722. #u1975 .text {
  9723. position:absolute;
  9724. align-self:center;
  9725. padding:2px 2px 2px 0px;
  9726. box-sizing:border-box;
  9727. width:100%;
  9728. }
  9729. #u1975_text {
  9730. border-width:0px;
  9731. word-wrap:break-word;
  9732. text-transform:none;
  9733. visibility:hidden;
  9734. }
  9735. #u1976_img {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:118px;
  9741. height:38px;
  9742. }
  9743. #u1976 {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:590px;
  9747. top:115px;
  9748. width:118px;
  9749. height:38px;
  9750. display:flex;
  9751. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9752. font-weight:400;
  9753. font-style:normal;
  9754. font-size:12px;
  9755. color:#FFFFFF;
  9756. }
  9757. #u1976 .text {
  9758. position:absolute;
  9759. align-self:center;
  9760. padding:2px 2px 2px 0px;
  9761. box-sizing:border-box;
  9762. width:100%;
  9763. }
  9764. #u1976_text {
  9765. border-width:0px;
  9766. word-wrap:break-word;
  9767. text-transform:none;
  9768. visibility:hidden;
  9769. }
  9770. #u1977_img {
  9771. border-width:0px;
  9772. position:absolute;
  9773. left:0px;
  9774. top:0px;
  9775. width:118px;
  9776. height:38px;
  9777. }
  9778. #u1977 {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:708px;
  9782. top:115px;
  9783. width:118px;
  9784. height:38px;
  9785. display:flex;
  9786. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9787. font-weight:400;
  9788. font-style:normal;
  9789. font-size:12px;
  9790. color:#FFFFFF;
  9791. }
  9792. #u1977 .text {
  9793. position:absolute;
  9794. align-self:center;
  9795. padding:2px 2px 2px 0px;
  9796. box-sizing:border-box;
  9797. width:100%;
  9798. }
  9799. #u1977_text {
  9800. border-width:0px;
  9801. word-wrap:break-word;
  9802. text-transform:none;
  9803. visibility:hidden;
  9804. }
  9805. #u1978_img {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:0px;
  9809. top:0px;
  9810. width:118px;
  9811. height:38px;
  9812. }
  9813. #u1978 {
  9814. border-width:0px;
  9815. position:absolute;
  9816. left:826px;
  9817. top:115px;
  9818. width:118px;
  9819. height:38px;
  9820. display:flex;
  9821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9822. font-weight:400;
  9823. font-style:normal;
  9824. font-size:12px;
  9825. color:#FFFFFF;
  9826. }
  9827. #u1978 .text {
  9828. position:absolute;
  9829. align-self:center;
  9830. padding:2px 2px 2px 0px;
  9831. box-sizing:border-box;
  9832. width:100%;
  9833. }
  9834. #u1978_text {
  9835. border-width:0px;
  9836. word-wrap:break-word;
  9837. text-transform:none;
  9838. visibility:hidden;
  9839. }
  9840. #u1979_img {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:0px;
  9844. top:0px;
  9845. width:118px;
  9846. height:38px;
  9847. }
  9848. #u1979 {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:0px;
  9852. top:153px;
  9853. width:118px;
  9854. height:38px;
  9855. display:flex;
  9856. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9857. font-weight:400;
  9858. font-style:normal;
  9859. font-size:12px;
  9860. color:#FFFFFF;
  9861. }
  9862. #u1979 .text {
  9863. position:absolute;
  9864. align-self:center;
  9865. padding:2px 2px 2px 0px;
  9866. box-sizing:border-box;
  9867. width:100%;
  9868. }
  9869. #u1979_text {
  9870. border-width:0px;
  9871. word-wrap:break-word;
  9872. text-transform:none;
  9873. visibility:hidden;
  9874. }
  9875. #u1980_img {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:0px;
  9879. top:0px;
  9880. width:118px;
  9881. height:38px;
  9882. }
  9883. #u1980 {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:118px;
  9887. top:153px;
  9888. width:118px;
  9889. height:38px;
  9890. display:flex;
  9891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9892. font-weight:400;
  9893. font-style:normal;
  9894. font-size:12px;
  9895. color:#FFFFFF;
  9896. }
  9897. #u1980 .text {
  9898. position:absolute;
  9899. align-self:center;
  9900. padding:2px 2px 2px 0px;
  9901. box-sizing:border-box;
  9902. width:100%;
  9903. }
  9904. #u1980_text {
  9905. border-width:0px;
  9906. word-wrap:break-word;
  9907. text-transform:none;
  9908. visibility:hidden;
  9909. }
  9910. #u1981_img {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:0px;
  9914. top:0px;
  9915. width:118px;
  9916. height:38px;
  9917. }
  9918. #u1981 {
  9919. border-width:0px;
  9920. position:absolute;
  9921. left:236px;
  9922. top:153px;
  9923. width:118px;
  9924. height:38px;
  9925. display:flex;
  9926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9927. font-weight:400;
  9928. font-style:normal;
  9929. font-size:12px;
  9930. color:#FFFFFF;
  9931. }
  9932. #u1981 .text {
  9933. position:absolute;
  9934. align-self:center;
  9935. padding:2px 2px 2px 0px;
  9936. box-sizing:border-box;
  9937. width:100%;
  9938. }
  9939. #u1981_text {
  9940. border-width:0px;
  9941. word-wrap:break-word;
  9942. text-transform:none;
  9943. visibility:hidden;
  9944. }
  9945. #u1982_img {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:0px;
  9949. top:0px;
  9950. width:118px;
  9951. height:38px;
  9952. }
  9953. #u1982 {
  9954. border-width:0px;
  9955. position:absolute;
  9956. left:354px;
  9957. top:153px;
  9958. width:118px;
  9959. height:38px;
  9960. display:flex;
  9961. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9962. font-weight:400;
  9963. font-style:normal;
  9964. font-size:12px;
  9965. color:#FFFFFF;
  9966. }
  9967. #u1982 .text {
  9968. position:absolute;
  9969. align-self:center;
  9970. padding:2px 2px 2px 0px;
  9971. box-sizing:border-box;
  9972. width:100%;
  9973. }
  9974. #u1982_text {
  9975. border-width:0px;
  9976. word-wrap:break-word;
  9977. text-transform:none;
  9978. visibility:hidden;
  9979. }
  9980. #u1983_img {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:118px;
  9986. height:38px;
  9987. }
  9988. #u1983 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:472px;
  9992. top:153px;
  9993. width:118px;
  9994. height:38px;
  9995. display:flex;
  9996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9997. font-weight:400;
  9998. font-style:normal;
  9999. font-size:12px;
  10000. color:#FFFFFF;
  10001. }
  10002. #u1983 .text {
  10003. position:absolute;
  10004. align-self:center;
  10005. padding:2px 2px 2px 0px;
  10006. box-sizing:border-box;
  10007. width:100%;
  10008. }
  10009. #u1983_text {
  10010. border-width:0px;
  10011. word-wrap:break-word;
  10012. text-transform:none;
  10013. visibility:hidden;
  10014. }
  10015. #u1984_img {
  10016. border-width:0px;
  10017. position:absolute;
  10018. left:0px;
  10019. top:0px;
  10020. width:118px;
  10021. height:38px;
  10022. }
  10023. #u1984 {
  10024. border-width:0px;
  10025. position:absolute;
  10026. left:590px;
  10027. top:153px;
  10028. width:118px;
  10029. height:38px;
  10030. display:flex;
  10031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10032. font-weight:400;
  10033. font-style:normal;
  10034. font-size:12px;
  10035. color:#FFFFFF;
  10036. }
  10037. #u1984 .text {
  10038. position:absolute;
  10039. align-self:center;
  10040. padding:2px 2px 2px 0px;
  10041. box-sizing:border-box;
  10042. width:100%;
  10043. }
  10044. #u1984_text {
  10045. border-width:0px;
  10046. word-wrap:break-word;
  10047. text-transform:none;
  10048. visibility:hidden;
  10049. }
  10050. #u1985_img {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:0px;
  10054. top:0px;
  10055. width:118px;
  10056. height:38px;
  10057. }
  10058. #u1985 {
  10059. border-width:0px;
  10060. position:absolute;
  10061. left:708px;
  10062. top:153px;
  10063. width:118px;
  10064. height:38px;
  10065. display:flex;
  10066. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10067. font-weight:400;
  10068. font-style:normal;
  10069. font-size:12px;
  10070. color:#FFFFFF;
  10071. }
  10072. #u1985 .text {
  10073. position:absolute;
  10074. align-self:center;
  10075. padding:2px 2px 2px 0px;
  10076. box-sizing:border-box;
  10077. width:100%;
  10078. }
  10079. #u1985_text {
  10080. border-width:0px;
  10081. word-wrap:break-word;
  10082. text-transform:none;
  10083. visibility:hidden;
  10084. }
  10085. #u1986_img {
  10086. border-width:0px;
  10087. position:absolute;
  10088. left:0px;
  10089. top:0px;
  10090. width:118px;
  10091. height:38px;
  10092. }
  10093. #u1986 {
  10094. border-width:0px;
  10095. position:absolute;
  10096. left:826px;
  10097. top:153px;
  10098. width:118px;
  10099. height:38px;
  10100. display:flex;
  10101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10102. font-weight:400;
  10103. font-style:normal;
  10104. font-size:12px;
  10105. color:#FFFFFF;
  10106. }
  10107. #u1986 .text {
  10108. position:absolute;
  10109. align-self:center;
  10110. padding:2px 2px 2px 0px;
  10111. box-sizing:border-box;
  10112. width:100%;
  10113. }
  10114. #u1986_text {
  10115. border-width:0px;
  10116. word-wrap:break-word;
  10117. text-transform:none;
  10118. visibility:hidden;
  10119. }
  10120. #u1987_img {
  10121. border-width:0px;
  10122. position:absolute;
  10123. left:0px;
  10124. top:0px;
  10125. width:118px;
  10126. height:35px;
  10127. }
  10128. #u1987 {
  10129. border-width:0px;
  10130. position:absolute;
  10131. left:0px;
  10132. top:191px;
  10133. width:118px;
  10134. height:35px;
  10135. display:flex;
  10136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10137. font-weight:400;
  10138. font-style:normal;
  10139. font-size:12px;
  10140. color:#FFFFFF;
  10141. }
  10142. #u1987 .text {
  10143. position:absolute;
  10144. align-self:center;
  10145. padding:2px 2px 2px 0px;
  10146. box-sizing:border-box;
  10147. width:100%;
  10148. }
  10149. #u1987_text {
  10150. border-width:0px;
  10151. word-wrap:break-word;
  10152. text-transform:none;
  10153. visibility:hidden;
  10154. }
  10155. #u1988_img {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:0px;
  10159. top:0px;
  10160. width:118px;
  10161. height:35px;
  10162. }
  10163. #u1988 {
  10164. border-width:0px;
  10165. position:absolute;
  10166. left:118px;
  10167. top:191px;
  10168. width:118px;
  10169. height:35px;
  10170. display:flex;
  10171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10172. font-weight:400;
  10173. font-style:normal;
  10174. font-size:12px;
  10175. color:#FFFFFF;
  10176. }
  10177. #u1988 .text {
  10178. position:absolute;
  10179. align-self:center;
  10180. padding:2px 2px 2px 0px;
  10181. box-sizing:border-box;
  10182. width:100%;
  10183. }
  10184. #u1988_text {
  10185. border-width:0px;
  10186. word-wrap:break-word;
  10187. text-transform:none;
  10188. visibility:hidden;
  10189. }
  10190. #u1989_img {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:0px;
  10194. top:0px;
  10195. width:118px;
  10196. height:35px;
  10197. }
  10198. #u1989 {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:236px;
  10202. top:191px;
  10203. width:118px;
  10204. height:35px;
  10205. display:flex;
  10206. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10207. font-weight:400;
  10208. font-style:normal;
  10209. font-size:12px;
  10210. color:#FFFFFF;
  10211. }
  10212. #u1989 .text {
  10213. position:absolute;
  10214. align-self:center;
  10215. padding:2px 2px 2px 0px;
  10216. box-sizing:border-box;
  10217. width:100%;
  10218. }
  10219. #u1989_text {
  10220. border-width:0px;
  10221. word-wrap:break-word;
  10222. text-transform:none;
  10223. visibility:hidden;
  10224. }
  10225. #u1990_img {
  10226. border-width:0px;
  10227. position:absolute;
  10228. left:0px;
  10229. top:0px;
  10230. width:118px;
  10231. height:35px;
  10232. }
  10233. #u1990 {
  10234. border-width:0px;
  10235. position:absolute;
  10236. left:354px;
  10237. top:191px;
  10238. width:118px;
  10239. height:35px;
  10240. display:flex;
  10241. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10242. font-weight:400;
  10243. font-style:normal;
  10244. font-size:12px;
  10245. color:#FFFFFF;
  10246. }
  10247. #u1990 .text {
  10248. position:absolute;
  10249. align-self:center;
  10250. padding:2px 2px 2px 0px;
  10251. box-sizing:border-box;
  10252. width:100%;
  10253. }
  10254. #u1990_text {
  10255. border-width:0px;
  10256. word-wrap:break-word;
  10257. text-transform:none;
  10258. visibility:hidden;
  10259. }
  10260. #u1991_img {
  10261. border-width:0px;
  10262. position:absolute;
  10263. left:0px;
  10264. top:0px;
  10265. width:118px;
  10266. height:35px;
  10267. }
  10268. #u1991 {
  10269. border-width:0px;
  10270. position:absolute;
  10271. left:472px;
  10272. top:191px;
  10273. width:118px;
  10274. height:35px;
  10275. display:flex;
  10276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10277. font-weight:400;
  10278. font-style:normal;
  10279. font-size:12px;
  10280. color:#FFFFFF;
  10281. }
  10282. #u1991 .text {
  10283. position:absolute;
  10284. align-self:center;
  10285. padding:2px 2px 2px 0px;
  10286. box-sizing:border-box;
  10287. width:100%;
  10288. }
  10289. #u1991_text {
  10290. border-width:0px;
  10291. word-wrap:break-word;
  10292. text-transform:none;
  10293. visibility:hidden;
  10294. }
  10295. #u1992_img {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:0px;
  10299. top:0px;
  10300. width:118px;
  10301. height:35px;
  10302. }
  10303. #u1992 {
  10304. border-width:0px;
  10305. position:absolute;
  10306. left:590px;
  10307. top:191px;
  10308. width:118px;
  10309. height:35px;
  10310. display:flex;
  10311. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10312. font-weight:400;
  10313. font-style:normal;
  10314. font-size:12px;
  10315. color:#FFFFFF;
  10316. }
  10317. #u1992 .text {
  10318. position:absolute;
  10319. align-self:center;
  10320. padding:2px 2px 2px 0px;
  10321. box-sizing:border-box;
  10322. width:100%;
  10323. }
  10324. #u1992_text {
  10325. border-width:0px;
  10326. word-wrap:break-word;
  10327. text-transform:none;
  10328. visibility:hidden;
  10329. }
  10330. #u1993_img {
  10331. border-width:0px;
  10332. position:absolute;
  10333. left:0px;
  10334. top:0px;
  10335. width:118px;
  10336. height:35px;
  10337. }
  10338. #u1993 {
  10339. border-width:0px;
  10340. position:absolute;
  10341. left:708px;
  10342. top:191px;
  10343. width:118px;
  10344. height:35px;
  10345. display:flex;
  10346. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10347. font-weight:400;
  10348. font-style:normal;
  10349. font-size:12px;
  10350. color:#FFFFFF;
  10351. }
  10352. #u1993 .text {
  10353. position:absolute;
  10354. align-self:center;
  10355. padding:2px 2px 2px 0px;
  10356. box-sizing:border-box;
  10357. width:100%;
  10358. }
  10359. #u1993_text {
  10360. border-width:0px;
  10361. word-wrap:break-word;
  10362. text-transform:none;
  10363. visibility:hidden;
  10364. }
  10365. #u1994_img {
  10366. border-width:0px;
  10367. position:absolute;
  10368. left:0px;
  10369. top:0px;
  10370. width:118px;
  10371. height:35px;
  10372. }
  10373. #u1994 {
  10374. border-width:0px;
  10375. position:absolute;
  10376. left:826px;
  10377. top:191px;
  10378. width:118px;
  10379. height:35px;
  10380. display:flex;
  10381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10382. font-weight:400;
  10383. font-style:normal;
  10384. font-size:12px;
  10385. color:#FFFFFF;
  10386. }
  10387. #u1994 .text {
  10388. position:absolute;
  10389. align-self:center;
  10390. padding:2px 2px 2px 0px;
  10391. box-sizing:border-box;
  10392. width:100%;
  10393. }
  10394. #u1994_text {
  10395. border-width:0px;
  10396. word-wrap:break-word;
  10397. text-transform:none;
  10398. visibility:hidden;
  10399. }
  10400. #u1995_img {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:0px;
  10404. top:0px;
  10405. width:118px;
  10406. height:35px;
  10407. }
  10408. #u1995 {
  10409. border-width:0px;
  10410. position:absolute;
  10411. left:0px;
  10412. top:226px;
  10413. width:118px;
  10414. height:35px;
  10415. display:flex;
  10416. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10417. font-weight:400;
  10418. font-style:normal;
  10419. font-size:12px;
  10420. color:#FFFFFF;
  10421. }
  10422. #u1995 .text {
  10423. position:absolute;
  10424. align-self:center;
  10425. padding:2px 2px 2px 0px;
  10426. box-sizing:border-box;
  10427. width:100%;
  10428. }
  10429. #u1995_text {
  10430. border-width:0px;
  10431. word-wrap:break-word;
  10432. text-transform:none;
  10433. visibility:hidden;
  10434. }
  10435. #u1996_img {
  10436. border-width:0px;
  10437. position:absolute;
  10438. left:0px;
  10439. top:0px;
  10440. width:118px;
  10441. height:35px;
  10442. }
  10443. #u1996 {
  10444. border-width:0px;
  10445. position:absolute;
  10446. left:118px;
  10447. top:226px;
  10448. width:118px;
  10449. height:35px;
  10450. display:flex;
  10451. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10452. font-weight:400;
  10453. font-style:normal;
  10454. font-size:12px;
  10455. color:#FFFFFF;
  10456. }
  10457. #u1996 .text {
  10458. position:absolute;
  10459. align-self:center;
  10460. padding:2px 2px 2px 0px;
  10461. box-sizing:border-box;
  10462. width:100%;
  10463. }
  10464. #u1996_text {
  10465. border-width:0px;
  10466. word-wrap:break-word;
  10467. text-transform:none;
  10468. visibility:hidden;
  10469. }
  10470. #u1997_img {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:0px;
  10474. top:0px;
  10475. width:118px;
  10476. height:35px;
  10477. }
  10478. #u1997 {
  10479. border-width:0px;
  10480. position:absolute;
  10481. left:236px;
  10482. top:226px;
  10483. width:118px;
  10484. height:35px;
  10485. display:flex;
  10486. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10487. font-weight:400;
  10488. font-style:normal;
  10489. font-size:12px;
  10490. color:#FFFFFF;
  10491. }
  10492. #u1997 .text {
  10493. position:absolute;
  10494. align-self:center;
  10495. padding:2px 2px 2px 0px;
  10496. box-sizing:border-box;
  10497. width:100%;
  10498. }
  10499. #u1997_text {
  10500. border-width:0px;
  10501. word-wrap:break-word;
  10502. text-transform:none;
  10503. visibility:hidden;
  10504. }
  10505. #u1998_img {
  10506. border-width:0px;
  10507. position:absolute;
  10508. left:0px;
  10509. top:0px;
  10510. width:118px;
  10511. height:35px;
  10512. }
  10513. #u1998 {
  10514. border-width:0px;
  10515. position:absolute;
  10516. left:354px;
  10517. top:226px;
  10518. width:118px;
  10519. height:35px;
  10520. display:flex;
  10521. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10522. font-weight:400;
  10523. font-style:normal;
  10524. font-size:12px;
  10525. color:#FFFFFF;
  10526. }
  10527. #u1998 .text {
  10528. position:absolute;
  10529. align-self:center;
  10530. padding:2px 2px 2px 0px;
  10531. box-sizing:border-box;
  10532. width:100%;
  10533. }
  10534. #u1998_text {
  10535. border-width:0px;
  10536. word-wrap:break-word;
  10537. text-transform:none;
  10538. visibility:hidden;
  10539. }
  10540. #u1999_img {
  10541. border-width:0px;
  10542. position:absolute;
  10543. left:0px;
  10544. top:0px;
  10545. width:118px;
  10546. height:35px;
  10547. }
  10548. #u1999 {
  10549. border-width:0px;
  10550. position:absolute;
  10551. left:472px;
  10552. top:226px;
  10553. width:118px;
  10554. height:35px;
  10555. display:flex;
  10556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10557. font-weight:400;
  10558. font-style:normal;
  10559. font-size:12px;
  10560. color:#FFFFFF;
  10561. }
  10562. #u1999 .text {
  10563. position:absolute;
  10564. align-self:center;
  10565. padding:2px 2px 2px 0px;
  10566. box-sizing:border-box;
  10567. width:100%;
  10568. }
  10569. #u1999_text {
  10570. border-width:0px;
  10571. word-wrap:break-word;
  10572. text-transform:none;
  10573. visibility:hidden;
  10574. }
  10575. #u2000_img {
  10576. border-width:0px;
  10577. position:absolute;
  10578. left:0px;
  10579. top:0px;
  10580. width:118px;
  10581. height:35px;
  10582. }
  10583. #u2000 {
  10584. border-width:0px;
  10585. position:absolute;
  10586. left:590px;
  10587. top:226px;
  10588. width:118px;
  10589. height:35px;
  10590. display:flex;
  10591. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10592. font-weight:400;
  10593. font-style:normal;
  10594. font-size:12px;
  10595. color:#FFFFFF;
  10596. }
  10597. #u2000 .text {
  10598. position:absolute;
  10599. align-self:center;
  10600. padding:2px 2px 2px 0px;
  10601. box-sizing:border-box;
  10602. width:100%;
  10603. }
  10604. #u2000_text {
  10605. border-width:0px;
  10606. word-wrap:break-word;
  10607. text-transform:none;
  10608. visibility:hidden;
  10609. }
  10610. #u2001_img {
  10611. border-width:0px;
  10612. position:absolute;
  10613. left:0px;
  10614. top:0px;
  10615. width:118px;
  10616. height:35px;
  10617. }
  10618. #u2001 {
  10619. border-width:0px;
  10620. position:absolute;
  10621. left:708px;
  10622. top:226px;
  10623. width:118px;
  10624. height:35px;
  10625. display:flex;
  10626. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10627. font-weight:400;
  10628. font-style:normal;
  10629. font-size:12px;
  10630. color:#FFFFFF;
  10631. }
  10632. #u2001 .text {
  10633. position:absolute;
  10634. align-self:center;
  10635. padding:2px 2px 2px 0px;
  10636. box-sizing:border-box;
  10637. width:100%;
  10638. }
  10639. #u2001_text {
  10640. border-width:0px;
  10641. word-wrap:break-word;
  10642. text-transform:none;
  10643. visibility:hidden;
  10644. }
  10645. #u2002_img {
  10646. border-width:0px;
  10647. position:absolute;
  10648. left:0px;
  10649. top:0px;
  10650. width:118px;
  10651. height:35px;
  10652. }
  10653. #u2002 {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:826px;
  10657. top:226px;
  10658. width:118px;
  10659. height:35px;
  10660. display:flex;
  10661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10662. font-weight:400;
  10663. font-style:normal;
  10664. font-size:12px;
  10665. color:#FFFFFF;
  10666. }
  10667. #u2002 .text {
  10668. position:absolute;
  10669. align-self:center;
  10670. padding:2px 2px 2px 0px;
  10671. box-sizing:border-box;
  10672. width:100%;
  10673. }
  10674. #u2002_text {
  10675. border-width:0px;
  10676. word-wrap:break-word;
  10677. text-transform:none;
  10678. visibility:hidden;
  10679. }
  10680. #u2003_img {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:0px;
  10684. top:0px;
  10685. width:118px;
  10686. height:35px;
  10687. }
  10688. #u2003 {
  10689. border-width:0px;
  10690. position:absolute;
  10691. left:0px;
  10692. top:261px;
  10693. width:118px;
  10694. height:35px;
  10695. display:flex;
  10696. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10697. font-weight:400;
  10698. font-style:normal;
  10699. font-size:12px;
  10700. color:#FFFFFF;
  10701. }
  10702. #u2003 .text {
  10703. position:absolute;
  10704. align-self:center;
  10705. padding:2px 2px 2px 0px;
  10706. box-sizing:border-box;
  10707. width:100%;
  10708. }
  10709. #u2003_text {
  10710. border-width:0px;
  10711. word-wrap:break-word;
  10712. text-transform:none;
  10713. visibility:hidden;
  10714. }
  10715. #u2004_img {
  10716. border-width:0px;
  10717. position:absolute;
  10718. left:0px;
  10719. top:0px;
  10720. width:118px;
  10721. height:35px;
  10722. }
  10723. #u2004 {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:118px;
  10727. top:261px;
  10728. width:118px;
  10729. height:35px;
  10730. display:flex;
  10731. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:12px;
  10735. color:#FFFFFF;
  10736. }
  10737. #u2004 .text {
  10738. position:absolute;
  10739. align-self:center;
  10740. padding:2px 2px 2px 0px;
  10741. box-sizing:border-box;
  10742. width:100%;
  10743. }
  10744. #u2004_text {
  10745. border-width:0px;
  10746. word-wrap:break-word;
  10747. text-transform:none;
  10748. visibility:hidden;
  10749. }
  10750. #u2005_img {
  10751. border-width:0px;
  10752. position:absolute;
  10753. left:0px;
  10754. top:0px;
  10755. width:118px;
  10756. height:35px;
  10757. }
  10758. #u2005 {
  10759. border-width:0px;
  10760. position:absolute;
  10761. left:236px;
  10762. top:261px;
  10763. width:118px;
  10764. height:35px;
  10765. display:flex;
  10766. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10767. font-weight:400;
  10768. font-style:normal;
  10769. font-size:12px;
  10770. color:#FFFFFF;
  10771. }
  10772. #u2005 .text {
  10773. position:absolute;
  10774. align-self:center;
  10775. padding:2px 2px 2px 0px;
  10776. box-sizing:border-box;
  10777. width:100%;
  10778. }
  10779. #u2005_text {
  10780. border-width:0px;
  10781. word-wrap:break-word;
  10782. text-transform:none;
  10783. visibility:hidden;
  10784. }
  10785. #u2006_img {
  10786. border-width:0px;
  10787. position:absolute;
  10788. left:0px;
  10789. top:0px;
  10790. width:118px;
  10791. height:35px;
  10792. }
  10793. #u2006 {
  10794. border-width:0px;
  10795. position:absolute;
  10796. left:354px;
  10797. top:261px;
  10798. width:118px;
  10799. height:35px;
  10800. display:flex;
  10801. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10802. font-weight:400;
  10803. font-style:normal;
  10804. font-size:12px;
  10805. color:#FFFFFF;
  10806. }
  10807. #u2006 .text {
  10808. position:absolute;
  10809. align-self:center;
  10810. padding:2px 2px 2px 0px;
  10811. box-sizing:border-box;
  10812. width:100%;
  10813. }
  10814. #u2006_text {
  10815. border-width:0px;
  10816. word-wrap:break-word;
  10817. text-transform:none;
  10818. visibility:hidden;
  10819. }
  10820. #u2007_img {
  10821. border-width:0px;
  10822. position:absolute;
  10823. left:0px;
  10824. top:0px;
  10825. width:118px;
  10826. height:35px;
  10827. }
  10828. #u2007 {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:472px;
  10832. top:261px;
  10833. width:118px;
  10834. height:35px;
  10835. display:flex;
  10836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10837. font-weight:400;
  10838. font-style:normal;
  10839. font-size:12px;
  10840. color:#FFFFFF;
  10841. }
  10842. #u2007 .text {
  10843. position:absolute;
  10844. align-self:center;
  10845. padding:2px 2px 2px 0px;
  10846. box-sizing:border-box;
  10847. width:100%;
  10848. }
  10849. #u2007_text {
  10850. border-width:0px;
  10851. word-wrap:break-word;
  10852. text-transform:none;
  10853. visibility:hidden;
  10854. }
  10855. #u2008_img {
  10856. border-width:0px;
  10857. position:absolute;
  10858. left:0px;
  10859. top:0px;
  10860. width:118px;
  10861. height:35px;
  10862. }
  10863. #u2008 {
  10864. border-width:0px;
  10865. position:absolute;
  10866. left:590px;
  10867. top:261px;
  10868. width:118px;
  10869. height:35px;
  10870. display:flex;
  10871. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10872. font-weight:400;
  10873. font-style:normal;
  10874. font-size:12px;
  10875. color:#FFFFFF;
  10876. }
  10877. #u2008 .text {
  10878. position:absolute;
  10879. align-self:center;
  10880. padding:2px 2px 2px 0px;
  10881. box-sizing:border-box;
  10882. width:100%;
  10883. }
  10884. #u2008_text {
  10885. border-width:0px;
  10886. word-wrap:break-word;
  10887. text-transform:none;
  10888. visibility:hidden;
  10889. }
  10890. #u2009_img {
  10891. border-width:0px;
  10892. position:absolute;
  10893. left:0px;
  10894. top:0px;
  10895. width:118px;
  10896. height:35px;
  10897. }
  10898. #u2009 {
  10899. border-width:0px;
  10900. position:absolute;
  10901. left:708px;
  10902. top:261px;
  10903. width:118px;
  10904. height:35px;
  10905. display:flex;
  10906. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10907. font-weight:400;
  10908. font-style:normal;
  10909. font-size:12px;
  10910. color:#FFFFFF;
  10911. }
  10912. #u2009 .text {
  10913. position:absolute;
  10914. align-self:center;
  10915. padding:2px 2px 2px 0px;
  10916. box-sizing:border-box;
  10917. width:100%;
  10918. }
  10919. #u2009_text {
  10920. border-width:0px;
  10921. word-wrap:break-word;
  10922. text-transform:none;
  10923. visibility:hidden;
  10924. }
  10925. #u2010_img {
  10926. border-width:0px;
  10927. position:absolute;
  10928. left:0px;
  10929. top:0px;
  10930. width:118px;
  10931. height:35px;
  10932. }
  10933. #u2010 {
  10934. border-width:0px;
  10935. position:absolute;
  10936. left:826px;
  10937. top:261px;
  10938. width:118px;
  10939. height:35px;
  10940. display:flex;
  10941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10942. font-weight:400;
  10943. font-style:normal;
  10944. font-size:12px;
  10945. color:#FFFFFF;
  10946. }
  10947. #u2010 .text {
  10948. position:absolute;
  10949. align-self:center;
  10950. padding:2px 2px 2px 0px;
  10951. box-sizing:border-box;
  10952. width:100%;
  10953. }
  10954. #u2010_text {
  10955. border-width:0px;
  10956. word-wrap:break-word;
  10957. text-transform:none;
  10958. visibility:hidden;
  10959. }
  10960. #u2011_img {
  10961. border-width:0px;
  10962. position:absolute;
  10963. left:0px;
  10964. top:0px;
  10965. width:118px;
  10966. height:35px;
  10967. }
  10968. #u2011 {
  10969. border-width:0px;
  10970. position:absolute;
  10971. left:0px;
  10972. top:296px;
  10973. width:118px;
  10974. height:35px;
  10975. display:flex;
  10976. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10977. font-weight:400;
  10978. font-style:normal;
  10979. font-size:12px;
  10980. color:#FFFFFF;
  10981. }
  10982. #u2011 .text {
  10983. position:absolute;
  10984. align-self:center;
  10985. padding:2px 2px 2px 0px;
  10986. box-sizing:border-box;
  10987. width:100%;
  10988. }
  10989. #u2011_text {
  10990. border-width:0px;
  10991. word-wrap:break-word;
  10992. text-transform:none;
  10993. visibility:hidden;
  10994. }
  10995. #u2012_img {
  10996. border-width:0px;
  10997. position:absolute;
  10998. left:0px;
  10999. top:0px;
  11000. width:118px;
  11001. height:35px;
  11002. }
  11003. #u2012 {
  11004. border-width:0px;
  11005. position:absolute;
  11006. left:118px;
  11007. top:296px;
  11008. width:118px;
  11009. height:35px;
  11010. display:flex;
  11011. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11012. font-weight:400;
  11013. font-style:normal;
  11014. font-size:12px;
  11015. color:#FFFFFF;
  11016. }
  11017. #u2012 .text {
  11018. position:absolute;
  11019. align-self:center;
  11020. padding:2px 2px 2px 0px;
  11021. box-sizing:border-box;
  11022. width:100%;
  11023. }
  11024. #u2012_text {
  11025. border-width:0px;
  11026. word-wrap:break-word;
  11027. text-transform:none;
  11028. visibility:hidden;
  11029. }
  11030. #u2013_img {
  11031. border-width:0px;
  11032. position:absolute;
  11033. left:0px;
  11034. top:0px;
  11035. width:118px;
  11036. height:35px;
  11037. }
  11038. #u2013 {
  11039. border-width:0px;
  11040. position:absolute;
  11041. left:236px;
  11042. top:296px;
  11043. width:118px;
  11044. height:35px;
  11045. display:flex;
  11046. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11047. font-weight:400;
  11048. font-style:normal;
  11049. font-size:12px;
  11050. color:#FFFFFF;
  11051. }
  11052. #u2013 .text {
  11053. position:absolute;
  11054. align-self:center;
  11055. padding:2px 2px 2px 0px;
  11056. box-sizing:border-box;
  11057. width:100%;
  11058. }
  11059. #u2013_text {
  11060. border-width:0px;
  11061. word-wrap:break-word;
  11062. text-transform:none;
  11063. visibility:hidden;
  11064. }
  11065. #u2014_img {
  11066. border-width:0px;
  11067. position:absolute;
  11068. left:0px;
  11069. top:0px;
  11070. width:118px;
  11071. height:35px;
  11072. }
  11073. #u2014 {
  11074. border-width:0px;
  11075. position:absolute;
  11076. left:354px;
  11077. top:296px;
  11078. width:118px;
  11079. height:35px;
  11080. display:flex;
  11081. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11082. font-weight:400;
  11083. font-style:normal;
  11084. font-size:12px;
  11085. color:#FFFFFF;
  11086. }
  11087. #u2014 .text {
  11088. position:absolute;
  11089. align-self:center;
  11090. padding:2px 2px 2px 0px;
  11091. box-sizing:border-box;
  11092. width:100%;
  11093. }
  11094. #u2014_text {
  11095. border-width:0px;
  11096. word-wrap:break-word;
  11097. text-transform:none;
  11098. visibility:hidden;
  11099. }
  11100. #u2015_img {
  11101. border-width:0px;
  11102. position:absolute;
  11103. left:0px;
  11104. top:0px;
  11105. width:118px;
  11106. height:35px;
  11107. }
  11108. #u2015 {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:472px;
  11112. top:296px;
  11113. width:118px;
  11114. height:35px;
  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. }
  11122. #u2015 .text {
  11123. position:absolute;
  11124. align-self:center;
  11125. padding:2px 2px 2px 0px;
  11126. box-sizing:border-box;
  11127. width:100%;
  11128. }
  11129. #u2015_text {
  11130. border-width:0px;
  11131. word-wrap:break-word;
  11132. text-transform:none;
  11133. visibility:hidden;
  11134. }
  11135. #u2016_img {
  11136. border-width:0px;
  11137. position:absolute;
  11138. left:0px;
  11139. top:0px;
  11140. width:118px;
  11141. height:35px;
  11142. }
  11143. #u2016 {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:590px;
  11147. top:296px;
  11148. width:118px;
  11149. height:35px;
  11150. display:flex;
  11151. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11152. font-weight:400;
  11153. font-style:normal;
  11154. font-size:12px;
  11155. color:#FFFFFF;
  11156. }
  11157. #u2016 .text {
  11158. position:absolute;
  11159. align-self:center;
  11160. padding:2px 2px 2px 0px;
  11161. box-sizing:border-box;
  11162. width:100%;
  11163. }
  11164. #u2016_text {
  11165. border-width:0px;
  11166. word-wrap:break-word;
  11167. text-transform:none;
  11168. visibility:hidden;
  11169. }
  11170. #u2017_img {
  11171. border-width:0px;
  11172. position:absolute;
  11173. left:0px;
  11174. top:0px;
  11175. width:118px;
  11176. height:35px;
  11177. }
  11178. #u2017 {
  11179. border-width:0px;
  11180. position:absolute;
  11181. left:708px;
  11182. top:296px;
  11183. width:118px;
  11184. height:35px;
  11185. display:flex;
  11186. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11187. font-weight:400;
  11188. font-style:normal;
  11189. font-size:12px;
  11190. color:#FFFFFF;
  11191. }
  11192. #u2017 .text {
  11193. position:absolute;
  11194. align-self:center;
  11195. padding:2px 2px 2px 0px;
  11196. box-sizing:border-box;
  11197. width:100%;
  11198. }
  11199. #u2017_text {
  11200. border-width:0px;
  11201. word-wrap:break-word;
  11202. text-transform:none;
  11203. visibility:hidden;
  11204. }
  11205. #u2018_img {
  11206. border-width:0px;
  11207. position:absolute;
  11208. left:0px;
  11209. top:0px;
  11210. width:118px;
  11211. height:35px;
  11212. }
  11213. #u2018 {
  11214. border-width:0px;
  11215. position:absolute;
  11216. left:826px;
  11217. top:296px;
  11218. width:118px;
  11219. height:35px;
  11220. display:flex;
  11221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11222. font-weight:400;
  11223. font-style:normal;
  11224. font-size:12px;
  11225. color:#FFFFFF;
  11226. }
  11227. #u2018 .text {
  11228. position:absolute;
  11229. align-self:center;
  11230. padding:2px 2px 2px 0px;
  11231. box-sizing:border-box;
  11232. width:100%;
  11233. }
  11234. #u2018_text {
  11235. border-width:0px;
  11236. word-wrap:break-word;
  11237. text-transform:none;
  11238. visibility:hidden;
  11239. }
  11240. #u2019_img {
  11241. border-width:0px;
  11242. position:absolute;
  11243. left:0px;
  11244. top:0px;
  11245. width:118px;
  11246. height:35px;
  11247. }
  11248. #u2019 {
  11249. border-width:0px;
  11250. position:absolute;
  11251. left:0px;
  11252. top:331px;
  11253. width:118px;
  11254. height:35px;
  11255. display:flex;
  11256. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11257. font-weight:400;
  11258. font-style:normal;
  11259. font-size:12px;
  11260. color:#FFFFFF;
  11261. }
  11262. #u2019 .text {
  11263. position:absolute;
  11264. align-self:center;
  11265. padding:2px 2px 2px 0px;
  11266. box-sizing:border-box;
  11267. width:100%;
  11268. }
  11269. #u2019_text {
  11270. border-width:0px;
  11271. word-wrap:break-word;
  11272. text-transform:none;
  11273. visibility:hidden;
  11274. }
  11275. #u2020_img {
  11276. border-width:0px;
  11277. position:absolute;
  11278. left:0px;
  11279. top:0px;
  11280. width:118px;
  11281. height:35px;
  11282. }
  11283. #u2020 {
  11284. border-width:0px;
  11285. position:absolute;
  11286. left:118px;
  11287. top:331px;
  11288. width:118px;
  11289. height:35px;
  11290. display:flex;
  11291. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11292. font-weight:400;
  11293. font-style:normal;
  11294. font-size:12px;
  11295. color:#FFFFFF;
  11296. }
  11297. #u2020 .text {
  11298. position:absolute;
  11299. align-self:center;
  11300. padding:2px 2px 2px 0px;
  11301. box-sizing:border-box;
  11302. width:100%;
  11303. }
  11304. #u2020_text {
  11305. border-width:0px;
  11306. word-wrap:break-word;
  11307. text-transform:none;
  11308. visibility:hidden;
  11309. }
  11310. #u2021_img {
  11311. border-width:0px;
  11312. position:absolute;
  11313. left:0px;
  11314. top:0px;
  11315. width:118px;
  11316. height:35px;
  11317. }
  11318. #u2021 {
  11319. border-width:0px;
  11320. position:absolute;
  11321. left:236px;
  11322. top:331px;
  11323. width:118px;
  11324. height:35px;
  11325. display:flex;
  11326. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11327. font-weight:400;
  11328. font-style:normal;
  11329. font-size:12px;
  11330. color:#FFFFFF;
  11331. }
  11332. #u2021 .text {
  11333. position:absolute;
  11334. align-self:center;
  11335. padding:2px 2px 2px 0px;
  11336. box-sizing:border-box;
  11337. width:100%;
  11338. }
  11339. #u2021_text {
  11340. border-width:0px;
  11341. word-wrap:break-word;
  11342. text-transform:none;
  11343. visibility:hidden;
  11344. }
  11345. #u2022_img {
  11346. border-width:0px;
  11347. position:absolute;
  11348. left:0px;
  11349. top:0px;
  11350. width:118px;
  11351. height:35px;
  11352. }
  11353. #u2022 {
  11354. border-width:0px;
  11355. position:absolute;
  11356. left:354px;
  11357. top:331px;
  11358. width:118px;
  11359. height:35px;
  11360. display:flex;
  11361. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11362. font-weight:400;
  11363. font-style:normal;
  11364. font-size:12px;
  11365. color:#FFFFFF;
  11366. }
  11367. #u2022 .text {
  11368. position:absolute;
  11369. align-self:center;
  11370. padding:2px 2px 2px 0px;
  11371. box-sizing:border-box;
  11372. width:100%;
  11373. }
  11374. #u2022_text {
  11375. border-width:0px;
  11376. word-wrap:break-word;
  11377. text-transform:none;
  11378. visibility:hidden;
  11379. }
  11380. #u2023_img {
  11381. border-width:0px;
  11382. position:absolute;
  11383. left:0px;
  11384. top:0px;
  11385. width:118px;
  11386. height:35px;
  11387. }
  11388. #u2023 {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:472px;
  11392. top:331px;
  11393. width:118px;
  11394. height:35px;
  11395. display:flex;
  11396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11397. font-weight:400;
  11398. font-style:normal;
  11399. font-size:12px;
  11400. color:#FFFFFF;
  11401. }
  11402. #u2023 .text {
  11403. position:absolute;
  11404. align-self:center;
  11405. padding:2px 2px 2px 0px;
  11406. box-sizing:border-box;
  11407. width:100%;
  11408. }
  11409. #u2023_text {
  11410. border-width:0px;
  11411. word-wrap:break-word;
  11412. text-transform:none;
  11413. visibility:hidden;
  11414. }
  11415. #u2024_img {
  11416. border-width:0px;
  11417. position:absolute;
  11418. left:0px;
  11419. top:0px;
  11420. width:118px;
  11421. height:35px;
  11422. }
  11423. #u2024 {
  11424. border-width:0px;
  11425. position:absolute;
  11426. left:590px;
  11427. top:331px;
  11428. width:118px;
  11429. height:35px;
  11430. display:flex;
  11431. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11432. font-weight:400;
  11433. font-style:normal;
  11434. font-size:12px;
  11435. color:#FFFFFF;
  11436. }
  11437. #u2024 .text {
  11438. position:absolute;
  11439. align-self:center;
  11440. padding:2px 2px 2px 0px;
  11441. box-sizing:border-box;
  11442. width:100%;
  11443. }
  11444. #u2024_text {
  11445. border-width:0px;
  11446. word-wrap:break-word;
  11447. text-transform:none;
  11448. visibility:hidden;
  11449. }
  11450. #u2025_img {
  11451. border-width:0px;
  11452. position:absolute;
  11453. left:0px;
  11454. top:0px;
  11455. width:118px;
  11456. height:35px;
  11457. }
  11458. #u2025 {
  11459. border-width:0px;
  11460. position:absolute;
  11461. left:708px;
  11462. top:331px;
  11463. width:118px;
  11464. height:35px;
  11465. display:flex;
  11466. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11467. font-weight:400;
  11468. font-style:normal;
  11469. font-size:12px;
  11470. color:#FFFFFF;
  11471. }
  11472. #u2025 .text {
  11473. position:absolute;
  11474. align-self:center;
  11475. padding:2px 2px 2px 0px;
  11476. box-sizing:border-box;
  11477. width:100%;
  11478. }
  11479. #u2025_text {
  11480. border-width:0px;
  11481. word-wrap:break-word;
  11482. text-transform:none;
  11483. visibility:hidden;
  11484. }
  11485. #u2026_img {
  11486. border-width:0px;
  11487. position:absolute;
  11488. left:0px;
  11489. top:0px;
  11490. width:118px;
  11491. height:35px;
  11492. }
  11493. #u2026 {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:826px;
  11497. top:331px;
  11498. width:118px;
  11499. height:35px;
  11500. display:flex;
  11501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11502. font-weight:400;
  11503. font-style:normal;
  11504. font-size:12px;
  11505. color:#FFFFFF;
  11506. }
  11507. #u2026 .text {
  11508. position:absolute;
  11509. align-self:center;
  11510. padding:2px 2px 2px 0px;
  11511. box-sizing:border-box;
  11512. width:100%;
  11513. }
  11514. #u2026_text {
  11515. border-width:0px;
  11516. word-wrap:break-word;
  11517. text-transform:none;
  11518. visibility:hidden;
  11519. }
  11520. #u2027 {
  11521. border-width:0px;
  11522. position:absolute;
  11523. left:0px;
  11524. top:0px;
  11525. width:0px;
  11526. height:0px;
  11527. }
  11528. #u2028_img {
  11529. border-width:0px;
  11530. position:absolute;
  11531. left:0px;
  11532. top:0px;
  11533. width:10px;
  11534. height:10px;
  11535. }
  11536. #u2028 {
  11537. border-width:0px;
  11538. position:absolute;
  11539. left:1155px;
  11540. top:903px;
  11541. width:10px;
  11542. height:10px;
  11543. display:flex;
  11544. }
  11545. #u2028 .text {
  11546. position:absolute;
  11547. align-self:center;
  11548. padding:2px 2px 2px 2px;
  11549. box-sizing:border-box;
  11550. width:100%;
  11551. }
  11552. #u2028_text {
  11553. border-width:0px;
  11554. word-wrap:break-word;
  11555. text-transform:none;
  11556. visibility:hidden;
  11557. }
  11558. #u2029_div {
  11559. border-width:0px;
  11560. position:absolute;
  11561. left:0px;
  11562. top:0px;
  11563. width:33px;
  11564. height:40px;
  11565. background:inherit;
  11566. background-color:rgba(255, 255, 255, 0);
  11567. border:none;
  11568. border-left:0px;
  11569. border-top:0px;
  11570. border-right:0px;
  11571. border-radius:0px;
  11572. border-bottom-right-radius:0px;
  11573. border-bottom-left-radius:0px;
  11574. -moz-box-shadow:none;
  11575. -webkit-box-shadow:none;
  11576. box-shadow:none;
  11577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11578. font-weight:400;
  11579. font-style:normal;
  11580. font-size:14px;
  11581. color:#FFFFFF;
  11582. }
  11583. #u2029 {
  11584. border-width:0px;
  11585. position:absolute;
  11586. left:1173px;
  11587. top:888px;
  11588. width:33px;
  11589. height:40px;
  11590. display:flex;
  11591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11592. font-weight:400;
  11593. font-style:normal;
  11594. font-size:14px;
  11595. color:#FFFFFF;
  11596. }
  11597. #u2029 .text {
  11598. position:absolute;
  11599. align-self:center;
  11600. padding:2px 2px 2px 2px;
  11601. box-sizing:border-box;
  11602. width:100%;
  11603. }
  11604. #u2029_text {
  11605. border-width:0px;
  11606. white-space:nowrap;
  11607. text-transform:none;
  11608. }
  11609. #u2030 {
  11610. border-width:0px;
  11611. position:absolute;
  11612. left:0px;
  11613. top:0px;
  11614. width:0px;
  11615. height:0px;
  11616. }
  11617. #u2031 {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:0px;
  11621. top:0px;
  11622. width:0px;
  11623. height:0px;
  11624. }
  11625. #u2032_img {
  11626. border-width:0px;
  11627. position:absolute;
  11628. left:0px;
  11629. top:0px;
  11630. width:31px;
  11631. height:30px;
  11632. }
  11633. #u2032 {
  11634. border-width:0px;
  11635. position:absolute;
  11636. left:1069px;
  11637. top:1422px;
  11638. width:31px;
  11639. height:30px;
  11640. display:flex;
  11641. font-family:'Microsoft YaHei', sans-serif;
  11642. font-weight:400;
  11643. font-style:normal;
  11644. font-size:12px;
  11645. color:#FFFFFF;
  11646. }
  11647. #u2032 .text {
  11648. position:absolute;
  11649. align-self:center;
  11650. padding:2px 2px 2px 2px;
  11651. box-sizing:border-box;
  11652. width:100%;
  11653. }
  11654. #u2032_text {
  11655. border-width:0px;
  11656. word-wrap:break-word;
  11657. text-transform:none;
  11658. visibility:hidden;
  11659. }
  11660. #u2033_img {
  11661. border-width:0px;
  11662. position:absolute;
  11663. left:0px;
  11664. top:0px;
  11665. width:8px;
  11666. height:14px;
  11667. }
  11668. #u2033 {
  11669. border-width:0px;
  11670. position:absolute;
  11671. left:1081px;
  11672. top:1430px;
  11673. width:8px;
  11674. height:14px;
  11675. display:flex;
  11676. font-family:'Microsoft YaHei', sans-serif;
  11677. font-weight:400;
  11678. font-style:normal;
  11679. font-size:12px;
  11680. color:#FFFFFF;
  11681. }
  11682. #u2033 .text {
  11683. position:absolute;
  11684. align-self:center;
  11685. padding:2px 2px 2px 2px;
  11686. box-sizing:border-box;
  11687. width:100%;
  11688. }
  11689. #u2033_text {
  11690. border-width:0px;
  11691. word-wrap:break-word;
  11692. text-transform:none;
  11693. visibility:hidden;
  11694. }
  11695. #u2034 {
  11696. border-width:0px;
  11697. position:absolute;
  11698. left:0px;
  11699. top:0px;
  11700. width:0px;
  11701. height:0px;
  11702. }
  11703. #u2035_img {
  11704. border-width:0px;
  11705. position:absolute;
  11706. left:0px;
  11707. top:0px;
  11708. width:31px;
  11709. height:30px;
  11710. }
  11711. #u2035 {
  11712. border-width:0px;
  11713. position:absolute;
  11714. left:1154px;
  11715. top:1422px;
  11716. width:31px;
  11717. height:30px;
  11718. display:flex;
  11719. font-family:'Microsoft YaHei', sans-serif;
  11720. font-weight:400;
  11721. font-style:normal;
  11722. font-size:12px;
  11723. color:#FFFFFF;
  11724. }
  11725. #u2035 .text {
  11726. position:absolute;
  11727. align-self:center;
  11728. padding:2px 2px 2px 2px;
  11729. box-sizing:border-box;
  11730. width:100%;
  11731. }
  11732. #u2035_text {
  11733. border-width:0px;
  11734. word-wrap:break-word;
  11735. text-transform:none;
  11736. visibility:hidden;
  11737. }
  11738. #u2036_img {
  11739. border-width:0px;
  11740. position:absolute;
  11741. left:0px;
  11742. top:0px;
  11743. width:8px;
  11744. height:14px;
  11745. }
  11746. #u2036 {
  11747. border-width:0px;
  11748. position:absolute;
  11749. left:1167px;
  11750. top:1430px;
  11751. width:8px;
  11752. height:14px;
  11753. display:flex;
  11754. opacity:0.3;
  11755. font-family:'Microsoft YaHei', sans-serif;
  11756. font-weight:400;
  11757. font-style:normal;
  11758. font-size:12px;
  11759. color:rgba(245, 154, 35, 0.996078431372549);
  11760. }
  11761. #u2036 .text {
  11762. position:absolute;
  11763. align-self:center;
  11764. padding:2px 2px 2px 2px;
  11765. box-sizing:border-box;
  11766. width:100%;
  11767. }
  11768. #u2036_text {
  11769. border-width:0px;
  11770. word-wrap:break-word;
  11771. text-transform:none;
  11772. visibility:hidden;
  11773. }
  11774. #u2037_div {
  11775. border-width:0px;
  11776. position:absolute;
  11777. left:0px;
  11778. top:0px;
  11779. width:40px;
  11780. height:21px;
  11781. background:inherit;
  11782. background-color:rgba(255, 255, 255, 0);
  11783. border:none;
  11784. border-radius:15px;
  11785. -moz-box-shadow:none;
  11786. -webkit-box-shadow:none;
  11787. box-shadow:none;
  11788. font-family:'Helvetica', sans-serif;
  11789. font-weight:400;
  11790. font-style:normal;
  11791. font-size:14px;
  11792. }
  11793. #u2037 {
  11794. border-width:0px;
  11795. position:absolute;
  11796. left:1106px;
  11797. top:1427px;
  11798. width:40px;
  11799. height:21px;
  11800. display:flex;
  11801. font-family:'Helvetica', sans-serif;
  11802. font-weight:400;
  11803. font-style:normal;
  11804. font-size:14px;
  11805. }
  11806. #u2037 .text {
  11807. position:absolute;
  11808. align-self:center;
  11809. padding:2px 2px 2px 2px;
  11810. box-sizing:border-box;
  11811. width:100%;
  11812. }
  11813. #u2037_text {
  11814. border-width:0px;
  11815. white-space:nowrap;
  11816. text-transform:none;
  11817. }
  11818. #u2038 {
  11819. border-width:0px;
  11820. position:absolute;
  11821. left:0px;
  11822. top:0px;
  11823. width:0px;
  11824. height:0px;
  11825. }
  11826. #u2039_img {
  11827. border-width:0px;
  11828. position:absolute;
  11829. left:0px;
  11830. top:0px;
  11831. width:240px;
  11832. height:60px;
  11833. }
  11834. #u2039 {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:1236px;
  11838. top:682px;
  11839. width:240px;
  11840. height:60px;
  11841. display:flex;
  11842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11843. font-weight:400;
  11844. font-style:normal;
  11845. font-size:12px;
  11846. color:#FFFFFF;
  11847. text-align:left;
  11848. }
  11849. #u2039 .text {
  11850. position:absolute;
  11851. align-self:center;
  11852. padding:2px 2px 2px 10px;
  11853. box-sizing:border-box;
  11854. width:100%;
  11855. }
  11856. #u2039_text {
  11857. border-width:0px;
  11858. word-wrap:break-word;
  11859. text-transform:none;
  11860. visibility:hidden;
  11861. }
  11862. #u2040_img {
  11863. border-width:0px;
  11864. position:absolute;
  11865. left:0px;
  11866. top:0px;
  11867. width:62px;
  11868. height:60px;
  11869. }
  11870. #u2040 {
  11871. border-width:0px;
  11872. position:absolute;
  11873. left:1236px;
  11874. top:682px;
  11875. width:62px;
  11876. height:60px;
  11877. display:flex;
  11878. }
  11879. #u2040 .text {
  11880. position:absolute;
  11881. align-self:center;
  11882. padding:2px 2px 2px 2px;
  11883. box-sizing:border-box;
  11884. width:100%;
  11885. }
  11886. #u2040_text {
  11887. border-width:0px;
  11888. word-wrap:break-word;
  11889. text-transform:none;
  11890. visibility:hidden;
  11891. }
  11892. #u2041_div {
  11893. border-width:0px;
  11894. position:absolute;
  11895. left:0px;
  11896. top:0px;
  11897. width:53px;
  11898. height:21px;
  11899. background:inherit;
  11900. background-color:rgba(245, 154, 35, 0);
  11901. border:none;
  11902. border-left:0px;
  11903. border-top:0px;
  11904. border-right:0px;
  11905. border-radius:0px;
  11906. border-bottom-right-radius:0px;
  11907. border-bottom-left-radius:0px;
  11908. -moz-box-shadow:none;
  11909. -webkit-box-shadow:none;
  11910. box-shadow:none;
  11911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11912. font-weight:400;
  11913. font-style:normal;
  11914. font-size:12px;
  11915. color:#FFFFFF;
  11916. text-align:left;
  11917. }
  11918. #u2041 {
  11919. border-width:0px;
  11920. position:absolute;
  11921. left:1303px;
  11922. top:686px;
  11923. width:53px;
  11924. height:21px;
  11925. display:flex;
  11926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11927. font-weight:400;
  11928. font-style:normal;
  11929. font-size:12px;
  11930. color:#FFFFFF;
  11931. text-align:left;
  11932. }
  11933. #u2041 .text {
  11934. position:absolute;
  11935. align-self:center;
  11936. padding:2px 2px 2px 2px;
  11937. box-sizing:border-box;
  11938. width:100%;
  11939. }
  11940. #u2041_text {
  11941. border-width:0px;
  11942. white-space:nowrap;
  11943. text-transform:none;
  11944. }
  11945. #u2042_div {
  11946. border-width:0px;
  11947. position:absolute;
  11948. left:0px;
  11949. top:0px;
  11950. width:75px;
  11951. height:32px;
  11952. background:inherit;
  11953. background-color:rgba(245, 154, 35, 0);
  11954. border:none;
  11955. border-left:0px;
  11956. border-top:0px;
  11957. border-right:0px;
  11958. border-radius:0px;
  11959. border-bottom-right-radius:0px;
  11960. border-bottom-left-radius:0px;
  11961. -moz-box-shadow:none;
  11962. -webkit-box-shadow:none;
  11963. box-shadow:none;
  11964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11965. font-weight:400;
  11966. font-style:normal;
  11967. font-size:10px;
  11968. color:#FFFFFF;
  11969. text-align:left;
  11970. }
  11971. #u2042 {
  11972. border-width:0px;
  11973. position:absolute;
  11974. left:1303px;
  11975. top:707px;
  11976. width:75px;
  11977. height:32px;
  11978. display:flex;
  11979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11980. font-weight:400;
  11981. font-style:normal;
  11982. font-size:10px;
  11983. color:#FFFFFF;
  11984. text-align:left;
  11985. }
  11986. #u2042 .text {
  11987. position:absolute;
  11988. align-self:center;
  11989. padding:2px 2px 2px 2px;
  11990. box-sizing:border-box;
  11991. width:100%;
  11992. }
  11993. #u2042_text {
  11994. border-width:0px;
  11995. white-space:nowrap;
  11996. text-transform:none;
  11997. }
  11998. #u2043_div {
  11999. border-width:0px;
  12000. position:absolute;
  12001. left:0px;
  12002. top:0px;
  12003. width:35px;
  12004. height:13px;
  12005. background:inherit;
  12006. background-color:rgba(217, 0, 27, 1);
  12007. border:none;
  12008. border-radius:40px;
  12009. -moz-box-shadow:none;
  12010. -webkit-box-shadow:none;
  12011. box-shadow:none;
  12012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12013. font-weight:400;
  12014. font-style:normal;
  12015. font-size:8px;
  12016. color:rgba(255, 255, 255, 0.698039215686274);
  12017. }
  12018. #u2043 {
  12019. border-width:0px;
  12020. position:absolute;
  12021. left:1356px;
  12022. top:690px;
  12023. width:35px;
  12024. height:13px;
  12025. display:flex;
  12026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12027. font-weight:400;
  12028. font-style:normal;
  12029. font-size:8px;
  12030. color:rgba(255, 255, 255, 0.698039215686274);
  12031. }
  12032. #u2043 .text {
  12033. position:absolute;
  12034. align-self:center;
  12035. padding:0px 0px 2px 0px;
  12036. box-sizing:border-box;
  12037. width:100%;
  12038. }
  12039. #u2043_text {
  12040. border-width:0px;
  12041. word-wrap:break-word;
  12042. text-transform:none;
  12043. }
  12044. #u2044 {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:0px;
  12048. top:0px;
  12049. width:0px;
  12050. height:0px;
  12051. }
  12052. #u2045_div {
  12053. border-width:0px;
  12054. position:absolute;
  12055. left:0px;
  12056. top:0px;
  12057. width:254px;
  12058. height:82px;
  12059. background:inherit;
  12060. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12061. box-sizing:border-box;
  12062. border-width:1px;
  12063. border-style:solid;
  12064. border-color:rgba(121, 121, 121, 1);
  12065. border-radius:0px;
  12066. -moz-box-shadow:none;
  12067. -webkit-box-shadow:none;
  12068. box-shadow:none;
  12069. }
  12070. #u2045 {
  12071. border-width:0px;
  12072. position:absolute;
  12073. left:342px;
  12074. top:587px;
  12075. width:254px;
  12076. height:82px;
  12077. display:flex;
  12078. }
  12079. #u2045 .text {
  12080. position:absolute;
  12081. align-self:center;
  12082. padding:2px 2px 2px 2px;
  12083. box-sizing:border-box;
  12084. width:100%;
  12085. }
  12086. #u2045_text {
  12087. border-width:0px;
  12088. word-wrap:break-word;
  12089. text-transform:none;
  12090. visibility:hidden;
  12091. }
  12092. #u2046_div {
  12093. border-width:0px;
  12094. position:absolute;
  12095. left:0px;
  12096. top:0px;
  12097. width:31px;
  12098. height:24px;
  12099. background:inherit;
  12100. background-color:rgba(245, 154, 35, 0);
  12101. border:none;
  12102. border-left:0px;
  12103. border-top:0px;
  12104. border-right:0px;
  12105. border-radius:0px;
  12106. border-bottom-right-radius:0px;
  12107. border-bottom-left-radius:0px;
  12108. -moz-box-shadow:none;
  12109. -webkit-box-shadow:none;
  12110. box-shadow:none;
  12111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12112. font-weight:400;
  12113. font-style:normal;
  12114. font-size:14px;
  12115. color:#FFFFFF;
  12116. text-align:left;
  12117. }
  12118. #u2046 {
  12119. border-width:0px;
  12120. position:absolute;
  12121. left:409px;
  12122. top:594px;
  12123. width:31px;
  12124. height:24px;
  12125. display:flex;
  12126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12127. font-weight:400;
  12128. font-style:normal;
  12129. font-size:14px;
  12130. color:#FFFFFF;
  12131. text-align:left;
  12132. }
  12133. #u2046 .text {
  12134. position:absolute;
  12135. align-self:center;
  12136. padding:2px 2px 2px 0px;
  12137. box-sizing:border-box;
  12138. width:100%;
  12139. }
  12140. #u2046_text {
  12141. border-width:0px;
  12142. white-space:nowrap;
  12143. text-transform:none;
  12144. }
  12145. #u2047_div {
  12146. border-width:0px;
  12147. position:absolute;
  12148. left:0px;
  12149. top:0px;
  12150. width:35px;
  12151. height:21px;
  12152. background:inherit;
  12153. background-color:rgba(245, 154, 35, 1);
  12154. border:none;
  12155. border-radius:11px;
  12156. -moz-box-shadow:none;
  12157. -webkit-box-shadow:none;
  12158. box-shadow:none;
  12159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12160. font-weight:400;
  12161. font-style:normal;
  12162. font-size:12px;
  12163. color:#FFFFFF;
  12164. }
  12165. #u2047 {
  12166. border-width:0px;
  12167. position:absolute;
  12168. left:482px;
  12169. top:596px;
  12170. width:35px;
  12171. height:21px;
  12172. display:flex;
  12173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12174. font-weight:400;
  12175. font-style:normal;
  12176. font-size:12px;
  12177. color:#FFFFFF;
  12178. }
  12179. #u2047 .text {
  12180. position:absolute;
  12181. align-self:center;
  12182. padding:2px 2px 2px 2px;
  12183. box-sizing:border-box;
  12184. width:100%;
  12185. }
  12186. #u2047_text {
  12187. border-width:0px;
  12188. word-wrap:break-word;
  12189. text-transform:none;
  12190. }
  12191. #u2048_div {
  12192. border-width:0px;
  12193. position:absolute;
  12194. left:0px;
  12195. top:0px;
  12196. width:25px;
  12197. height:20px;
  12198. background:inherit;
  12199. background-color:rgba(245, 154, 35, 0);
  12200. border:none;
  12201. border-left:0px;
  12202. border-top:0px;
  12203. border-right:0px;
  12204. border-radius:0px;
  12205. border-bottom-right-radius:0px;
  12206. border-bottom-left-radius:0px;
  12207. -moz-box-shadow:none;
  12208. -webkit-box-shadow:none;
  12209. box-shadow:none;
  12210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12211. font-weight:400;
  12212. font-style:normal;
  12213. font-size:11px;
  12214. color:#FFFFFF;
  12215. text-align:left;
  12216. }
  12217. #u2048 {
  12218. border-width:0px;
  12219. position:absolute;
  12220. left:560px;
  12221. top:598px;
  12222. width:25px;
  12223. height:20px;
  12224. display:flex;
  12225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12226. font-weight:400;
  12227. font-style:normal;
  12228. font-size:11px;
  12229. color:#FFFFFF;
  12230. text-align:left;
  12231. }
  12232. #u2048 .text {
  12233. position:absolute;
  12234. align-self:center;
  12235. padding:2px 2px 2px 0px;
  12236. box-sizing:border-box;
  12237. width:100%;
  12238. }
  12239. #u2048_text {
  12240. border-width:0px;
  12241. white-space:nowrap;
  12242. text-transform:none;
  12243. }
  12244. #u2049_div {
  12245. border-width:0px;
  12246. position:absolute;
  12247. left:0px;
  12248. top:0px;
  12249. width:63px;
  12250. height:21px;
  12251. background:inherit;
  12252. background-color:rgba(245, 154, 35, 0);
  12253. border:none;
  12254. border-left:0px;
  12255. border-top:0px;
  12256. border-right:0px;
  12257. border-radius:0px;
  12258. border-bottom-right-radius:0px;
  12259. border-bottom-left-radius:0px;
  12260. -moz-box-shadow:none;
  12261. -webkit-box-shadow:none;
  12262. box-shadow:none;
  12263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12264. font-weight:400;
  12265. font-style:normal;
  12266. font-size:12px;
  12267. color:#FFFFFF;
  12268. text-align:left;
  12269. }
  12270. #u2049 {
  12271. border-width:0px;
  12272. position:absolute;
  12273. left:409px;
  12274. top:625px;
  12275. width:63px;
  12276. height:21px;
  12277. display:flex;
  12278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12279. font-weight:400;
  12280. font-style:normal;
  12281. font-size:12px;
  12282. color:#FFFFFF;
  12283. text-align:left;
  12284. }
  12285. #u2049 .text {
  12286. position:absolute;
  12287. align-self:center;
  12288. padding:2px 2px 2px 0px;
  12289. box-sizing:border-box;
  12290. width:100%;
  12291. }
  12292. #u2049_text {
  12293. border-width:0px;
  12294. white-space:nowrap;
  12295. text-transform:none;
  12296. }
  12297. #u2050_div {
  12298. border-width:0px;
  12299. position:absolute;
  12300. left:0px;
  12301. top:0px;
  12302. width:103px;
  12303. height:18px;
  12304. background:inherit;
  12305. background-color:rgba(245, 154, 35, 0);
  12306. border:none;
  12307. border-left:0px;
  12308. border-top:0px;
  12309. border-right:0px;
  12310. border-radius:0px;
  12311. border-bottom-right-radius:0px;
  12312. border-bottom-left-radius:0px;
  12313. -moz-box-shadow:none;
  12314. -webkit-box-shadow:none;
  12315. box-shadow:none;
  12316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12317. font-weight:400;
  12318. font-style:normal;
  12319. font-size:10px;
  12320. color:#FFFFFF;
  12321. text-align:left;
  12322. }
  12323. #u2050 {
  12324. border-width:0px;
  12325. position:absolute;
  12326. left:409px;
  12327. top:646px;
  12328. width:103px;
  12329. height:18px;
  12330. display:flex;
  12331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12332. font-weight:400;
  12333. font-style:normal;
  12334. font-size:10px;
  12335. color:#FFFFFF;
  12336. text-align:left;
  12337. }
  12338. #u2050 .text {
  12339. position:absolute;
  12340. align-self:center;
  12341. padding:2px 2px 2px 0px;
  12342. box-sizing:border-box;
  12343. width:100%;
  12344. }
  12345. #u2050_text {
  12346. border-width:0px;
  12347. white-space:nowrap;
  12348. text-transform:none;
  12349. }
  12350. #u2051_img {
  12351. border-width:0px;
  12352. position:absolute;
  12353. left:0px;
  12354. top:0px;
  12355. width:50px;
  12356. height:59px;
  12357. }
  12358. #u2051 {
  12359. border-width:0px;
  12360. position:absolute;
  12361. left:350px;
  12362. top:598px;
  12363. width:50px;
  12364. height:59px;
  12365. display:flex;
  12366. }
  12367. #u2051 .text {
  12368. position:absolute;
  12369. align-self:center;
  12370. padding:2px 2px 2px 2px;
  12371. box-sizing:border-box;
  12372. width:100%;
  12373. }
  12374. #u2051_text {
  12375. border-width:0px;
  12376. word-wrap:break-word;
  12377. text-transform:none;
  12378. visibility:hidden;
  12379. }
  12380. #u2052 {
  12381. border-width:0px;
  12382. position:absolute;
  12383. left:0px;
  12384. top:0px;
  12385. width:0px;
  12386. height:0px;
  12387. }
  12388. #u2053_div {
  12389. border-width:0px;
  12390. position:absolute;
  12391. left:0px;
  12392. top:0px;
  12393. width:254px;
  12394. height:82px;
  12395. background:inherit;
  12396. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12397. box-sizing:border-box;
  12398. border-width:1px;
  12399. border-style:solid;
  12400. border-color:rgba(121, 121, 121, 1);
  12401. border-radius:0px;
  12402. -moz-box-shadow:none;
  12403. -webkit-box-shadow:none;
  12404. box-shadow:none;
  12405. }
  12406. #u2053 {
  12407. border-width:0px;
  12408. position:absolute;
  12409. left:617px;
  12410. top:587px;
  12411. width:254px;
  12412. height:82px;
  12413. display:flex;
  12414. }
  12415. #u2053 .text {
  12416. position:absolute;
  12417. align-self:center;
  12418. padding:2px 2px 2px 2px;
  12419. box-sizing:border-box;
  12420. width:100%;
  12421. }
  12422. #u2053_text {
  12423. border-width:0px;
  12424. word-wrap:break-word;
  12425. text-transform:none;
  12426. visibility:hidden;
  12427. }
  12428. #u2054_div {
  12429. border-width:0px;
  12430. position:absolute;
  12431. left:0px;
  12432. top:0px;
  12433. width:31px;
  12434. height:24px;
  12435. background:inherit;
  12436. background-color:rgba(245, 154, 35, 0);
  12437. border:none;
  12438. border-left:0px;
  12439. border-top:0px;
  12440. border-right:0px;
  12441. border-radius:0px;
  12442. border-bottom-right-radius:0px;
  12443. border-bottom-left-radius:0px;
  12444. -moz-box-shadow:none;
  12445. -webkit-box-shadow:none;
  12446. box-shadow:none;
  12447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12448. font-weight:400;
  12449. font-style:normal;
  12450. font-size:14px;
  12451. color:#FFFFFF;
  12452. text-align:left;
  12453. }
  12454. #u2054 {
  12455. border-width:0px;
  12456. position:absolute;
  12457. left:684px;
  12458. top:594px;
  12459. width:31px;
  12460. height:24px;
  12461. display:flex;
  12462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12463. font-weight:400;
  12464. font-style:normal;
  12465. font-size:14px;
  12466. color:#FFFFFF;
  12467. text-align:left;
  12468. }
  12469. #u2054 .text {
  12470. position:absolute;
  12471. align-self:center;
  12472. padding:2px 2px 2px 0px;
  12473. box-sizing:border-box;
  12474. width:100%;
  12475. }
  12476. #u2054_text {
  12477. border-width:0px;
  12478. white-space:nowrap;
  12479. text-transform:none;
  12480. }
  12481. #u2055_div {
  12482. border-width:0px;
  12483. position:absolute;
  12484. left:0px;
  12485. top:0px;
  12486. width:35px;
  12487. height:21px;
  12488. background:inherit;
  12489. background-color:rgba(245, 154, 35, 1);
  12490. border:none;
  12491. border-radius:11px;
  12492. -moz-box-shadow:none;
  12493. -webkit-box-shadow:none;
  12494. box-shadow:none;
  12495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12496. font-weight:400;
  12497. font-style:normal;
  12498. font-size:12px;
  12499. color:#FFFFFF;
  12500. }
  12501. #u2055 {
  12502. border-width:0px;
  12503. position:absolute;
  12504. left:757px;
  12505. top:596px;
  12506. width:35px;
  12507. height:21px;
  12508. display:flex;
  12509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12510. font-weight:400;
  12511. font-style:normal;
  12512. font-size:12px;
  12513. color:#FFFFFF;
  12514. }
  12515. #u2055 .text {
  12516. position:absolute;
  12517. align-self:center;
  12518. padding:2px 2px 2px 2px;
  12519. box-sizing:border-box;
  12520. width:100%;
  12521. }
  12522. #u2055_text {
  12523. border-width:0px;
  12524. word-wrap:break-word;
  12525. text-transform:none;
  12526. }
  12527. #u2056_div {
  12528. border-width:0px;
  12529. position:absolute;
  12530. left:0px;
  12531. top:0px;
  12532. width:25px;
  12533. height:20px;
  12534. background:inherit;
  12535. background-color:rgba(245, 154, 35, 0);
  12536. border:none;
  12537. border-left:0px;
  12538. border-top:0px;
  12539. border-right:0px;
  12540. border-radius:0px;
  12541. border-bottom-right-radius:0px;
  12542. border-bottom-left-radius:0px;
  12543. -moz-box-shadow:none;
  12544. -webkit-box-shadow:none;
  12545. box-shadow:none;
  12546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12547. font-weight:400;
  12548. font-style:normal;
  12549. font-size:11px;
  12550. color:#FFFFFF;
  12551. text-align:left;
  12552. }
  12553. #u2056 {
  12554. border-width:0px;
  12555. position:absolute;
  12556. left:835px;
  12557. top:598px;
  12558. width:25px;
  12559. height:20px;
  12560. display:flex;
  12561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12562. font-weight:400;
  12563. font-style:normal;
  12564. font-size:11px;
  12565. color:#FFFFFF;
  12566. text-align:left;
  12567. }
  12568. #u2056 .text {
  12569. position:absolute;
  12570. align-self:center;
  12571. padding:2px 2px 2px 0px;
  12572. box-sizing:border-box;
  12573. width:100%;
  12574. }
  12575. #u2056_text {
  12576. border-width:0px;
  12577. white-space:nowrap;
  12578. text-transform:none;
  12579. }
  12580. #u2057_div {
  12581. border-width:0px;
  12582. position:absolute;
  12583. left:0px;
  12584. top:0px;
  12585. width:63px;
  12586. height:21px;
  12587. background:inherit;
  12588. background-color:rgba(245, 154, 35, 0);
  12589. border:none;
  12590. border-left:0px;
  12591. border-top:0px;
  12592. border-right:0px;
  12593. border-radius:0px;
  12594. border-bottom-right-radius:0px;
  12595. border-bottom-left-radius:0px;
  12596. -moz-box-shadow:none;
  12597. -webkit-box-shadow:none;
  12598. box-shadow:none;
  12599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12600. font-weight:400;
  12601. font-style:normal;
  12602. font-size:12px;
  12603. color:#FFFFFF;
  12604. text-align:left;
  12605. }
  12606. #u2057 {
  12607. border-width:0px;
  12608. position:absolute;
  12609. left:684px;
  12610. top:625px;
  12611. width:63px;
  12612. height:21px;
  12613. display:flex;
  12614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12615. font-weight:400;
  12616. font-style:normal;
  12617. font-size:12px;
  12618. color:#FFFFFF;
  12619. text-align:left;
  12620. }
  12621. #u2057 .text {
  12622. position:absolute;
  12623. align-self:center;
  12624. padding:2px 2px 2px 0px;
  12625. box-sizing:border-box;
  12626. width:100%;
  12627. }
  12628. #u2057_text {
  12629. border-width:0px;
  12630. white-space:nowrap;
  12631. text-transform:none;
  12632. }
  12633. #u2058_div {
  12634. border-width:0px;
  12635. position:absolute;
  12636. left:0px;
  12637. top:0px;
  12638. width:103px;
  12639. height:18px;
  12640. background:inherit;
  12641. background-color:rgba(245, 154, 35, 0);
  12642. border:none;
  12643. border-left:0px;
  12644. border-top:0px;
  12645. border-right:0px;
  12646. border-radius:0px;
  12647. border-bottom-right-radius:0px;
  12648. border-bottom-left-radius:0px;
  12649. -moz-box-shadow:none;
  12650. -webkit-box-shadow:none;
  12651. box-shadow:none;
  12652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12653. font-weight:400;
  12654. font-style:normal;
  12655. font-size:10px;
  12656. color:#FFFFFF;
  12657. text-align:left;
  12658. }
  12659. #u2058 {
  12660. border-width:0px;
  12661. position:absolute;
  12662. left:684px;
  12663. top:646px;
  12664. width:103px;
  12665. height:18px;
  12666. display:flex;
  12667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12668. font-weight:400;
  12669. font-style:normal;
  12670. font-size:10px;
  12671. color:#FFFFFF;
  12672. text-align:left;
  12673. }
  12674. #u2058 .text {
  12675. position:absolute;
  12676. align-self:center;
  12677. padding:2px 2px 2px 0px;
  12678. box-sizing:border-box;
  12679. width:100%;
  12680. }
  12681. #u2058_text {
  12682. border-width:0px;
  12683. white-space:nowrap;
  12684. text-transform:none;
  12685. }
  12686. #u2059_img {
  12687. border-width:0px;
  12688. position:absolute;
  12689. left:0px;
  12690. top:0px;
  12691. width:50px;
  12692. height:59px;
  12693. }
  12694. #u2059 {
  12695. border-width:0px;
  12696. position:absolute;
  12697. left:625px;
  12698. top:598px;
  12699. width:50px;
  12700. height:59px;
  12701. display:flex;
  12702. }
  12703. #u2059 .text {
  12704. position:absolute;
  12705. align-self:center;
  12706. padding:2px 2px 2px 2px;
  12707. box-sizing:border-box;
  12708. width:100%;
  12709. }
  12710. #u2059_text {
  12711. border-width:0px;
  12712. word-wrap:break-word;
  12713. text-transform:none;
  12714. visibility:hidden;
  12715. }
  12716. #u2060 {
  12717. border-width:0px;
  12718. position:absolute;
  12719. left:0px;
  12720. top:0px;
  12721. width:0px;
  12722. height:0px;
  12723. }
  12724. #u2061_div {
  12725. border-width:0px;
  12726. position:absolute;
  12727. left:0px;
  12728. top:0px;
  12729. width:254px;
  12730. height:82px;
  12731. background:inherit;
  12732. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12733. box-sizing:border-box;
  12734. border-width:1px;
  12735. border-style:solid;
  12736. border-color:rgba(121, 121, 121, 1);
  12737. border-radius:0px;
  12738. -moz-box-shadow:none;
  12739. -webkit-box-shadow:none;
  12740. box-shadow:none;
  12741. }
  12742. #u2061 {
  12743. border-width:0px;
  12744. position:absolute;
  12745. left:892px;
  12746. top:587px;
  12747. width:254px;
  12748. height:82px;
  12749. display:flex;
  12750. }
  12751. #u2061 .text {
  12752. position:absolute;
  12753. align-self:center;
  12754. padding:2px 2px 2px 2px;
  12755. box-sizing:border-box;
  12756. width:100%;
  12757. }
  12758. #u2061_text {
  12759. border-width:0px;
  12760. word-wrap:break-word;
  12761. text-transform:none;
  12762. visibility:hidden;
  12763. }
  12764. #u2062_div {
  12765. border-width:0px;
  12766. position:absolute;
  12767. left:0px;
  12768. top:0px;
  12769. width:31px;
  12770. height:24px;
  12771. background:inherit;
  12772. background-color:rgba(245, 154, 35, 0);
  12773. border:none;
  12774. border-left:0px;
  12775. border-top:0px;
  12776. border-right:0px;
  12777. border-radius:0px;
  12778. border-bottom-right-radius:0px;
  12779. border-bottom-left-radius:0px;
  12780. -moz-box-shadow:none;
  12781. -webkit-box-shadow:none;
  12782. box-shadow:none;
  12783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12784. font-weight:400;
  12785. font-style:normal;
  12786. font-size:14px;
  12787. color:#FFFFFF;
  12788. text-align:left;
  12789. }
  12790. #u2062 {
  12791. border-width:0px;
  12792. position:absolute;
  12793. left:959px;
  12794. top:594px;
  12795. width:31px;
  12796. height:24px;
  12797. display:flex;
  12798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12799. font-weight:400;
  12800. font-style:normal;
  12801. font-size:14px;
  12802. color:#FFFFFF;
  12803. text-align:left;
  12804. }
  12805. #u2062 .text {
  12806. position:absolute;
  12807. align-self:center;
  12808. padding:2px 2px 2px 0px;
  12809. box-sizing:border-box;
  12810. width:100%;
  12811. }
  12812. #u2062_text {
  12813. border-width:0px;
  12814. white-space:nowrap;
  12815. text-transform:none;
  12816. }
  12817. #u2063_div {
  12818. border-width:0px;
  12819. position:absolute;
  12820. left:0px;
  12821. top:0px;
  12822. width:35px;
  12823. height:21px;
  12824. background:inherit;
  12825. background-color:rgba(245, 154, 35, 1);
  12826. border:none;
  12827. border-radius:11px;
  12828. -moz-box-shadow:none;
  12829. -webkit-box-shadow:none;
  12830. box-shadow:none;
  12831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12832. font-weight:400;
  12833. font-style:normal;
  12834. font-size:12px;
  12835. color:#FFFFFF;
  12836. }
  12837. #u2063 {
  12838. border-width:0px;
  12839. position:absolute;
  12840. left:1032px;
  12841. top:596px;
  12842. width:35px;
  12843. height:21px;
  12844. display:flex;
  12845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12846. font-weight:400;
  12847. font-style:normal;
  12848. font-size:12px;
  12849. color:#FFFFFF;
  12850. }
  12851. #u2063 .text {
  12852. position:absolute;
  12853. align-self:center;
  12854. padding:2px 2px 2px 2px;
  12855. box-sizing:border-box;
  12856. width:100%;
  12857. }
  12858. #u2063_text {
  12859. border-width:0px;
  12860. word-wrap:break-word;
  12861. text-transform:none;
  12862. }
  12863. #u2064_div {
  12864. border-width:0px;
  12865. position:absolute;
  12866. left:0px;
  12867. top:0px;
  12868. width:25px;
  12869. height:20px;
  12870. background:inherit;
  12871. background-color:rgba(245, 154, 35, 0);
  12872. border:none;
  12873. border-left:0px;
  12874. border-top:0px;
  12875. border-right:0px;
  12876. border-radius:0px;
  12877. border-bottom-right-radius:0px;
  12878. border-bottom-left-radius:0px;
  12879. -moz-box-shadow:none;
  12880. -webkit-box-shadow:none;
  12881. box-shadow:none;
  12882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12883. font-weight:400;
  12884. font-style:normal;
  12885. font-size:11px;
  12886. color:#FFFFFF;
  12887. text-align:left;
  12888. }
  12889. #u2064 {
  12890. border-width:0px;
  12891. position:absolute;
  12892. left:1110px;
  12893. top:598px;
  12894. width:25px;
  12895. height:20px;
  12896. display:flex;
  12897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12898. font-weight:400;
  12899. font-style:normal;
  12900. font-size:11px;
  12901. color:#FFFFFF;
  12902. text-align:left;
  12903. }
  12904. #u2064 .text {
  12905. position:absolute;
  12906. align-self:center;
  12907. padding:2px 2px 2px 0px;
  12908. box-sizing:border-box;
  12909. width:100%;
  12910. }
  12911. #u2064_text {
  12912. border-width:0px;
  12913. white-space:nowrap;
  12914. text-transform:none;
  12915. }
  12916. #u2065_div {
  12917. border-width:0px;
  12918. position:absolute;
  12919. left:0px;
  12920. top:0px;
  12921. width:63px;
  12922. height:21px;
  12923. background:inherit;
  12924. background-color:rgba(245, 154, 35, 0);
  12925. border:none;
  12926. border-left:0px;
  12927. border-top:0px;
  12928. border-right:0px;
  12929. border-radius:0px;
  12930. border-bottom-right-radius:0px;
  12931. border-bottom-left-radius:0px;
  12932. -moz-box-shadow:none;
  12933. -webkit-box-shadow:none;
  12934. box-shadow:none;
  12935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12936. font-weight:400;
  12937. font-style:normal;
  12938. font-size:12px;
  12939. color:#FFFFFF;
  12940. text-align:left;
  12941. }
  12942. #u2065 {
  12943. border-width:0px;
  12944. position:absolute;
  12945. left:959px;
  12946. top:625px;
  12947. width:63px;
  12948. height:21px;
  12949. display:flex;
  12950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12951. font-weight:400;
  12952. font-style:normal;
  12953. font-size:12px;
  12954. color:#FFFFFF;
  12955. text-align:left;
  12956. }
  12957. #u2065 .text {
  12958. position:absolute;
  12959. align-self:center;
  12960. padding:2px 2px 2px 0px;
  12961. box-sizing:border-box;
  12962. width:100%;
  12963. }
  12964. #u2065_text {
  12965. border-width:0px;
  12966. white-space:nowrap;
  12967. text-transform:none;
  12968. }
  12969. #u2066_div {
  12970. border-width:0px;
  12971. position:absolute;
  12972. left:0px;
  12973. top:0px;
  12974. width:103px;
  12975. height:18px;
  12976. background:inherit;
  12977. background-color:rgba(245, 154, 35, 0);
  12978. border:none;
  12979. border-left:0px;
  12980. border-top:0px;
  12981. border-right:0px;
  12982. border-radius:0px;
  12983. border-bottom-right-radius:0px;
  12984. border-bottom-left-radius:0px;
  12985. -moz-box-shadow:none;
  12986. -webkit-box-shadow:none;
  12987. box-shadow:none;
  12988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12989. font-weight:400;
  12990. font-style:normal;
  12991. font-size:10px;
  12992. color:#FFFFFF;
  12993. text-align:left;
  12994. }
  12995. #u2066 {
  12996. border-width:0px;
  12997. position:absolute;
  12998. left:959px;
  12999. top:646px;
  13000. width:103px;
  13001. height:18px;
  13002. display:flex;
  13003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13004. font-weight:400;
  13005. font-style:normal;
  13006. font-size:10px;
  13007. color:#FFFFFF;
  13008. text-align:left;
  13009. }
  13010. #u2066 .text {
  13011. position:absolute;
  13012. align-self:center;
  13013. padding:2px 2px 2px 0px;
  13014. box-sizing:border-box;
  13015. width:100%;
  13016. }
  13017. #u2066_text {
  13018. border-width:0px;
  13019. white-space:nowrap;
  13020. text-transform:none;
  13021. }
  13022. #u2067_img {
  13023. border-width:0px;
  13024. position:absolute;
  13025. left:0px;
  13026. top:0px;
  13027. width:50px;
  13028. height:59px;
  13029. }
  13030. #u2067 {
  13031. border-width:0px;
  13032. position:absolute;
  13033. left:900px;
  13034. top:598px;
  13035. width:50px;
  13036. height:59px;
  13037. display:flex;
  13038. }
  13039. #u2067 .text {
  13040. position:absolute;
  13041. align-self:center;
  13042. padding:2px 2px 2px 2px;
  13043. box-sizing:border-box;
  13044. width:100%;
  13045. }
  13046. #u2067_text {
  13047. border-width:0px;
  13048. word-wrap:break-word;
  13049. text-transform:none;
  13050. visibility:hidden;
  13051. }
  13052. #u2068 {
  13053. border-width:0px;
  13054. position:absolute;
  13055. left:0px;
  13056. top:0px;
  13057. width:0px;
  13058. height:0px;
  13059. }
  13060. #u2069_img {
  13061. border-width:0px;
  13062. position:absolute;
  13063. left:0px;
  13064. top:0px;
  13065. width:240px;
  13066. height:60px;
  13067. }
  13068. #u2069 {
  13069. border-width:0px;
  13070. position:absolute;
  13071. left:1242px;
  13072. top:272px;
  13073. width:240px;
  13074. height:60px;
  13075. display:flex;
  13076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13077. font-weight:400;
  13078. font-style:normal;
  13079. font-size:12px;
  13080. color:#FFFFFF;
  13081. text-align:left;
  13082. }
  13083. #u2069 .text {
  13084. position:absolute;
  13085. align-self:center;
  13086. padding:2px 2px 2px 10px;
  13087. box-sizing:border-box;
  13088. width:100%;
  13089. }
  13090. #u2069_text {
  13091. border-width:0px;
  13092. word-wrap:break-word;
  13093. text-transform:none;
  13094. visibility:hidden;
  13095. }
  13096. #u2070_img {
  13097. border-width:0px;
  13098. position:absolute;
  13099. left:0px;
  13100. top:0px;
  13101. width:62px;
  13102. height:60px;
  13103. }
  13104. #u2070 {
  13105. border-width:0px;
  13106. position:absolute;
  13107. left:1242px;
  13108. top:272px;
  13109. width:62px;
  13110. height:60px;
  13111. display:flex;
  13112. }
  13113. #u2070 .text {
  13114. position:absolute;
  13115. align-self:center;
  13116. padding:2px 2px 2px 2px;
  13117. box-sizing:border-box;
  13118. width:100%;
  13119. }
  13120. #u2070_text {
  13121. border-width:0px;
  13122. word-wrap:break-word;
  13123. text-transform:none;
  13124. visibility:hidden;
  13125. }
  13126. #u2071_div {
  13127. border-width:0px;
  13128. position:absolute;
  13129. left:0px;
  13130. top:0px;
  13131. width:41px;
  13132. height:21px;
  13133. background:inherit;
  13134. background-color:rgba(245, 154, 35, 0);
  13135. border:none;
  13136. border-left:0px;
  13137. border-top:0px;
  13138. border-right:0px;
  13139. border-radius:0px;
  13140. border-bottom-right-radius:0px;
  13141. border-bottom-left-radius:0px;
  13142. -moz-box-shadow:none;
  13143. -webkit-box-shadow:none;
  13144. box-shadow:none;
  13145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13146. font-weight:400;
  13147. font-style:normal;
  13148. font-size:12px;
  13149. color:#FFFFFF;
  13150. text-align:left;
  13151. }
  13152. #u2071 {
  13153. border-width:0px;
  13154. position:absolute;
  13155. left:1309px;
  13156. top:276px;
  13157. width:41px;
  13158. height:21px;
  13159. display:flex;
  13160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13161. font-weight:400;
  13162. font-style:normal;
  13163. font-size:12px;
  13164. color:#FFFFFF;
  13165. text-align:left;
  13166. }
  13167. #u2071 .text {
  13168. position:absolute;
  13169. align-self:center;
  13170. padding:2px 2px 2px 2px;
  13171. box-sizing:border-box;
  13172. width:100%;
  13173. }
  13174. #u2071_text {
  13175. border-width:0px;
  13176. white-space:nowrap;
  13177. text-transform:none;
  13178. }
  13179. #u2072_div {
  13180. border-width:0px;
  13181. position:absolute;
  13182. left:0px;
  13183. top:0px;
  13184. width:75px;
  13185. height:32px;
  13186. background:inherit;
  13187. background-color:rgba(245, 154, 35, 0);
  13188. border:none;
  13189. border-left:0px;
  13190. border-top:0px;
  13191. border-right:0px;
  13192. border-radius:0px;
  13193. border-bottom-right-radius:0px;
  13194. border-bottom-left-radius:0px;
  13195. -moz-box-shadow:none;
  13196. -webkit-box-shadow:none;
  13197. box-shadow:none;
  13198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13199. font-weight:400;
  13200. font-style:normal;
  13201. font-size:10px;
  13202. color:#FFFFFF;
  13203. text-align:left;
  13204. }
  13205. #u2072 {
  13206. border-width:0px;
  13207. position:absolute;
  13208. left:1309px;
  13209. top:297px;
  13210. width:75px;
  13211. height:32px;
  13212. display:flex;
  13213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13214. font-weight:400;
  13215. font-style:normal;
  13216. font-size:10px;
  13217. color:#FFFFFF;
  13218. text-align:left;
  13219. }
  13220. #u2072 .text {
  13221. position:absolute;
  13222. align-self:center;
  13223. padding:2px 2px 2px 2px;
  13224. box-sizing:border-box;
  13225. width:100%;
  13226. }
  13227. #u2072_text {
  13228. border-width:0px;
  13229. white-space:nowrap;
  13230. text-transform:none;
  13231. }
  13232. #u2073_div {
  13233. border-width:0px;
  13234. position:absolute;
  13235. left:0px;
  13236. top:0px;
  13237. width:24px;
  13238. height:13px;
  13239. background:inherit;
  13240. background-color:rgba(245, 154, 35, 1);
  13241. border:none;
  13242. border-radius:40px;
  13243. -moz-box-shadow:none;
  13244. -webkit-box-shadow:none;
  13245. box-shadow:none;
  13246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13247. font-weight:400;
  13248. font-style:normal;
  13249. font-size:8px;
  13250. color:rgba(255, 255, 255, 0.698039215686274);
  13251. }
  13252. #u2073 {
  13253. border-width:0px;
  13254. position:absolute;
  13255. left:1362px;
  13256. top:280px;
  13257. width:24px;
  13258. height:13px;
  13259. display:flex;
  13260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13261. font-weight:400;
  13262. font-style:normal;
  13263. font-size:8px;
  13264. color:rgba(255, 255, 255, 0.698039215686274);
  13265. }
  13266. #u2073 .text {
  13267. position:absolute;
  13268. align-self:center;
  13269. padding:0px 0px 2px 0px;
  13270. box-sizing:border-box;
  13271. width:100%;
  13272. }
  13273. #u2073_text {
  13274. border-width:0px;
  13275. word-wrap:break-word;
  13276. text-transform:none;
  13277. }
  13278. #u2074_div {
  13279. border-width:0px;
  13280. position:absolute;
  13281. left:0px;
  13282. top:0px;
  13283. width:17px;
  13284. height:21px;
  13285. background:inherit;
  13286. background-color:rgba(245, 154, 35, 0);
  13287. border:none;
  13288. border-left:0px;
  13289. border-top:0px;
  13290. border-right:0px;
  13291. border-radius:0px;
  13292. border-bottom-right-radius:0px;
  13293. border-bottom-left-radius:0px;
  13294. -moz-box-shadow:none;
  13295. -webkit-box-shadow:none;
  13296. box-shadow:none;
  13297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13298. font-weight:400;
  13299. font-style:normal;
  13300. font-size:12px;
  13301. color:#00BFBF;
  13302. text-align:left;
  13303. }
  13304. #u2074 {
  13305. border-width:0px;
  13306. position:absolute;
  13307. left:1455px;
  13308. top:272px;
  13309. width:17px;
  13310. height:21px;
  13311. display:flex;
  13312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13313. font-weight:400;
  13314. font-style:normal;
  13315. font-size:12px;
  13316. color:#00BFBF;
  13317. text-align:left;
  13318. }
  13319. #u2074 .text {
  13320. position:absolute;
  13321. align-self:center;
  13322. padding:2px 2px 2px 2px;
  13323. box-sizing:border-box;
  13324. width:100%;
  13325. }
  13326. #u2074_text {
  13327. border-width:0px;
  13328. white-space:nowrap;
  13329. text-transform:none;
  13330. }
  13331. #u2075 {
  13332. border-width:0px;
  13333. position:absolute;
  13334. left:0px;
  13335. top:0px;
  13336. width:0px;
  13337. height:0px;
  13338. }
  13339. #u2076_img {
  13340. border-width:0px;
  13341. position:absolute;
  13342. left:0px;
  13343. top:0px;
  13344. width:240px;
  13345. height:60px;
  13346. }
  13347. #u2076 {
  13348. border-width:0px;
  13349. position:absolute;
  13350. left:1242px;
  13351. top:342px;
  13352. width:240px;
  13353. height:60px;
  13354. display:flex;
  13355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13356. font-weight:400;
  13357. font-style:normal;
  13358. font-size:12px;
  13359. color:#FFFFFF;
  13360. text-align:left;
  13361. }
  13362. #u2076 .text {
  13363. position:absolute;
  13364. align-self:center;
  13365. padding:2px 2px 2px 10px;
  13366. box-sizing:border-box;
  13367. width:100%;
  13368. }
  13369. #u2076_text {
  13370. border-width:0px;
  13371. word-wrap:break-word;
  13372. text-transform:none;
  13373. visibility:hidden;
  13374. }
  13375. #u2077_img {
  13376. border-width:0px;
  13377. position:absolute;
  13378. left:0px;
  13379. top:0px;
  13380. width:62px;
  13381. height:60px;
  13382. }
  13383. #u2077 {
  13384. border-width:0px;
  13385. position:absolute;
  13386. left:1242px;
  13387. top:342px;
  13388. width:62px;
  13389. height:60px;
  13390. display:flex;
  13391. }
  13392. #u2077 .text {
  13393. position:absolute;
  13394. align-self:center;
  13395. padding:2px 2px 2px 2px;
  13396. box-sizing:border-box;
  13397. width:100%;
  13398. }
  13399. #u2077_text {
  13400. border-width:0px;
  13401. word-wrap:break-word;
  13402. text-transform:none;
  13403. visibility:hidden;
  13404. }
  13405. #u2078_div {
  13406. border-width:0px;
  13407. position:absolute;
  13408. left:0px;
  13409. top:0px;
  13410. width:41px;
  13411. height:21px;
  13412. background:inherit;
  13413. background-color:rgba(245, 154, 35, 0);
  13414. border:none;
  13415. border-left:0px;
  13416. border-top:0px;
  13417. border-right:0px;
  13418. border-radius:0px;
  13419. border-bottom-right-radius:0px;
  13420. border-bottom-left-radius:0px;
  13421. -moz-box-shadow:none;
  13422. -webkit-box-shadow:none;
  13423. box-shadow:none;
  13424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13425. font-weight:400;
  13426. font-style:normal;
  13427. font-size:12px;
  13428. color:#FFFFFF;
  13429. text-align:left;
  13430. }
  13431. #u2078 {
  13432. border-width:0px;
  13433. position:absolute;
  13434. left:1309px;
  13435. top:346px;
  13436. width:41px;
  13437. height:21px;
  13438. display:flex;
  13439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13440. font-weight:400;
  13441. font-style:normal;
  13442. font-size:12px;
  13443. color:#FFFFFF;
  13444. text-align:left;
  13445. }
  13446. #u2078 .text {
  13447. position:absolute;
  13448. align-self:center;
  13449. padding:2px 2px 2px 2px;
  13450. box-sizing:border-box;
  13451. width:100%;
  13452. }
  13453. #u2078_text {
  13454. border-width:0px;
  13455. white-space:nowrap;
  13456. text-transform:none;
  13457. }
  13458. #u2079_div {
  13459. border-width:0px;
  13460. position:absolute;
  13461. left:0px;
  13462. top:0px;
  13463. width:75px;
  13464. height:32px;
  13465. background:inherit;
  13466. background-color:rgba(245, 154, 35, 0);
  13467. border:none;
  13468. border-left:0px;
  13469. border-top:0px;
  13470. border-right:0px;
  13471. border-radius:0px;
  13472. border-bottom-right-radius:0px;
  13473. border-bottom-left-radius:0px;
  13474. -moz-box-shadow:none;
  13475. -webkit-box-shadow:none;
  13476. box-shadow:none;
  13477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13478. font-weight:400;
  13479. font-style:normal;
  13480. font-size:10px;
  13481. color:#FFFFFF;
  13482. text-align:left;
  13483. }
  13484. #u2079 {
  13485. border-width:0px;
  13486. position:absolute;
  13487. left:1309px;
  13488. top:367px;
  13489. width:75px;
  13490. height:32px;
  13491. display:flex;
  13492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13493. font-weight:400;
  13494. font-style:normal;
  13495. font-size:10px;
  13496. color:#FFFFFF;
  13497. text-align:left;
  13498. }
  13499. #u2079 .text {
  13500. position:absolute;
  13501. align-self:center;
  13502. padding:2px 2px 2px 2px;
  13503. box-sizing:border-box;
  13504. width:100%;
  13505. }
  13506. #u2079_text {
  13507. border-width:0px;
  13508. white-space:nowrap;
  13509. text-transform:none;
  13510. }
  13511. #u2080_div {
  13512. border-width:0px;
  13513. position:absolute;
  13514. left:0px;
  13515. top:0px;
  13516. width:24px;
  13517. height:13px;
  13518. background:inherit;
  13519. background-color:rgba(245, 154, 35, 1);
  13520. border:none;
  13521. border-radius:40px;
  13522. -moz-box-shadow:none;
  13523. -webkit-box-shadow:none;
  13524. box-shadow:none;
  13525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13526. font-weight:400;
  13527. font-style:normal;
  13528. font-size:8px;
  13529. color:rgba(255, 255, 255, 0.698039215686274);
  13530. }
  13531. #u2080 {
  13532. border-width:0px;
  13533. position:absolute;
  13534. left:1362px;
  13535. top:350px;
  13536. width:24px;
  13537. height:13px;
  13538. display:flex;
  13539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13540. font-weight:400;
  13541. font-style:normal;
  13542. font-size:8px;
  13543. color:rgba(255, 255, 255, 0.698039215686274);
  13544. }
  13545. #u2080 .text {
  13546. position:absolute;
  13547. align-self:center;
  13548. padding:0px 0px 2px 0px;
  13549. box-sizing:border-box;
  13550. width:100%;
  13551. }
  13552. #u2080_text {
  13553. border-width:0px;
  13554. word-wrap:break-word;
  13555. text-transform:none;
  13556. }
  13557. #u2081_div {
  13558. border-width:0px;
  13559. position:absolute;
  13560. left:0px;
  13561. top:0px;
  13562. width:17px;
  13563. height:21px;
  13564. background:inherit;
  13565. background-color:rgba(245, 154, 35, 0);
  13566. border:none;
  13567. border-left:0px;
  13568. border-top:0px;
  13569. border-right:0px;
  13570. border-radius:0px;
  13571. border-bottom-right-radius:0px;
  13572. border-bottom-left-radius:0px;
  13573. -moz-box-shadow:none;
  13574. -webkit-box-shadow:none;
  13575. box-shadow:none;
  13576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13577. font-weight:400;
  13578. font-style:normal;
  13579. font-size:12px;
  13580. color:#00BFBF;
  13581. text-align:left;
  13582. }
  13583. #u2081 {
  13584. border-width:0px;
  13585. position:absolute;
  13586. left:1455px;
  13587. top:342px;
  13588. width:17px;
  13589. height:21px;
  13590. display:flex;
  13591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13592. font-weight:400;
  13593. font-style:normal;
  13594. font-size:12px;
  13595. color:#00BFBF;
  13596. text-align:left;
  13597. }
  13598. #u2081 .text {
  13599. position:absolute;
  13600. align-self:center;
  13601. padding:2px 2px 2px 2px;
  13602. box-sizing:border-box;
  13603. width:100%;
  13604. }
  13605. #u2081_text {
  13606. border-width:0px;
  13607. white-space:nowrap;
  13608. text-transform:none;
  13609. }
  13610. #u2082 {
  13611. border-width:0px;
  13612. position:absolute;
  13613. left:0px;
  13614. top:0px;
  13615. width:0px;
  13616. height:0px;
  13617. }
  13618. #u2083_img {
  13619. border-width:0px;
  13620. position:absolute;
  13621. left:0px;
  13622. top:0px;
  13623. width:240px;
  13624. height:60px;
  13625. }
  13626. #u2083 {
  13627. border-width:0px;
  13628. position:absolute;
  13629. left:1242px;
  13630. top:412px;
  13631. width:240px;
  13632. height:60px;
  13633. display:flex;
  13634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13635. font-weight:400;
  13636. font-style:normal;
  13637. font-size:12px;
  13638. color:#FFFFFF;
  13639. text-align:left;
  13640. }
  13641. #u2083 .text {
  13642. position:absolute;
  13643. align-self:center;
  13644. padding:2px 2px 2px 10px;
  13645. box-sizing:border-box;
  13646. width:100%;
  13647. }
  13648. #u2083_text {
  13649. border-width:0px;
  13650. word-wrap:break-word;
  13651. text-transform:none;
  13652. visibility:hidden;
  13653. }
  13654. #u2084_img {
  13655. border-width:0px;
  13656. position:absolute;
  13657. left:0px;
  13658. top:0px;
  13659. width:62px;
  13660. height:60px;
  13661. }
  13662. #u2084 {
  13663. border-width:0px;
  13664. position:absolute;
  13665. left:1242px;
  13666. top:412px;
  13667. width:62px;
  13668. height:60px;
  13669. display:flex;
  13670. }
  13671. #u2084 .text {
  13672. position:absolute;
  13673. align-self:center;
  13674. padding:2px 2px 2px 2px;
  13675. box-sizing:border-box;
  13676. width:100%;
  13677. }
  13678. #u2084_text {
  13679. border-width:0px;
  13680. word-wrap:break-word;
  13681. text-transform:none;
  13682. visibility:hidden;
  13683. }
  13684. #u2085_div {
  13685. border-width:0px;
  13686. position:absolute;
  13687. left:0px;
  13688. top:0px;
  13689. width:41px;
  13690. height:21px;
  13691. background:inherit;
  13692. background-color:rgba(245, 154, 35, 0);
  13693. border:none;
  13694. border-left:0px;
  13695. border-top:0px;
  13696. border-right:0px;
  13697. border-radius:0px;
  13698. border-bottom-right-radius:0px;
  13699. border-bottom-left-radius:0px;
  13700. -moz-box-shadow:none;
  13701. -webkit-box-shadow:none;
  13702. box-shadow:none;
  13703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13704. font-weight:400;
  13705. font-style:normal;
  13706. font-size:12px;
  13707. color:#FFFFFF;
  13708. text-align:left;
  13709. }
  13710. #u2085 {
  13711. border-width:0px;
  13712. position:absolute;
  13713. left:1309px;
  13714. top:416px;
  13715. width:41px;
  13716. height:21px;
  13717. display:flex;
  13718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13719. font-weight:400;
  13720. font-style:normal;
  13721. font-size:12px;
  13722. color:#FFFFFF;
  13723. text-align:left;
  13724. }
  13725. #u2085 .text {
  13726. position:absolute;
  13727. align-self:center;
  13728. padding:2px 2px 2px 2px;
  13729. box-sizing:border-box;
  13730. width:100%;
  13731. }
  13732. #u2085_text {
  13733. border-width:0px;
  13734. white-space:nowrap;
  13735. text-transform:none;
  13736. }
  13737. #u2086_div {
  13738. border-width:0px;
  13739. position:absolute;
  13740. left:0px;
  13741. top:0px;
  13742. width:75px;
  13743. height:32px;
  13744. background:inherit;
  13745. background-color:rgba(245, 154, 35, 0);
  13746. border:none;
  13747. border-left:0px;
  13748. border-top:0px;
  13749. border-right:0px;
  13750. border-radius:0px;
  13751. border-bottom-right-radius:0px;
  13752. border-bottom-left-radius:0px;
  13753. -moz-box-shadow:none;
  13754. -webkit-box-shadow:none;
  13755. box-shadow:none;
  13756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13757. font-weight:400;
  13758. font-style:normal;
  13759. font-size:10px;
  13760. color:#FFFFFF;
  13761. text-align:left;
  13762. }
  13763. #u2086 {
  13764. border-width:0px;
  13765. position:absolute;
  13766. left:1309px;
  13767. top:437px;
  13768. width:75px;
  13769. height:32px;
  13770. display:flex;
  13771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13772. font-weight:400;
  13773. font-style:normal;
  13774. font-size:10px;
  13775. color:#FFFFFF;
  13776. text-align:left;
  13777. }
  13778. #u2086 .text {
  13779. position:absolute;
  13780. align-self:center;
  13781. padding:2px 2px 2px 2px;
  13782. box-sizing:border-box;
  13783. width:100%;
  13784. }
  13785. #u2086_text {
  13786. border-width:0px;
  13787. white-space:nowrap;
  13788. text-transform:none;
  13789. }
  13790. #u2087_div {
  13791. border-width:0px;
  13792. position:absolute;
  13793. left:0px;
  13794. top:0px;
  13795. width:24px;
  13796. height:13px;
  13797. background:inherit;
  13798. background-color:rgba(245, 154, 35, 1);
  13799. border:none;
  13800. border-radius:40px;
  13801. -moz-box-shadow:none;
  13802. -webkit-box-shadow:none;
  13803. box-shadow:none;
  13804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13805. font-weight:400;
  13806. font-style:normal;
  13807. font-size:8px;
  13808. color:rgba(255, 255, 255, 0.698039215686274);
  13809. }
  13810. #u2087 {
  13811. border-width:0px;
  13812. position:absolute;
  13813. left:1362px;
  13814. top:420px;
  13815. width:24px;
  13816. height:13px;
  13817. display:flex;
  13818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13819. font-weight:400;
  13820. font-style:normal;
  13821. font-size:8px;
  13822. color:rgba(255, 255, 255, 0.698039215686274);
  13823. }
  13824. #u2087 .text {
  13825. position:absolute;
  13826. align-self:center;
  13827. padding:0px 0px 2px 0px;
  13828. box-sizing:border-box;
  13829. width:100%;
  13830. }
  13831. #u2087_text {
  13832. border-width:0px;
  13833. word-wrap:break-word;
  13834. text-transform:none;
  13835. }
  13836. #u2088_div {
  13837. border-width:0px;
  13838. position:absolute;
  13839. left:0px;
  13840. top:0px;
  13841. width:17px;
  13842. height:21px;
  13843. background:inherit;
  13844. background-color:rgba(245, 154, 35, 0);
  13845. border:none;
  13846. border-left:0px;
  13847. border-top:0px;
  13848. border-right:0px;
  13849. border-radius:0px;
  13850. border-bottom-right-radius:0px;
  13851. border-bottom-left-radius:0px;
  13852. -moz-box-shadow:none;
  13853. -webkit-box-shadow:none;
  13854. box-shadow:none;
  13855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13856. font-weight:400;
  13857. font-style:normal;
  13858. font-size:12px;
  13859. color:#00BFBF;
  13860. text-align:left;
  13861. }
  13862. #u2088 {
  13863. border-width:0px;
  13864. position:absolute;
  13865. left:1455px;
  13866. top:412px;
  13867. width:17px;
  13868. height:21px;
  13869. display:flex;
  13870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13871. font-weight:400;
  13872. font-style:normal;
  13873. font-size:12px;
  13874. color:#00BFBF;
  13875. text-align:left;
  13876. }
  13877. #u2088 .text {
  13878. position:absolute;
  13879. align-self:center;
  13880. padding:2px 2px 2px 2px;
  13881. box-sizing:border-box;
  13882. width:100%;
  13883. }
  13884. #u2088_text {
  13885. border-width:0px;
  13886. white-space:nowrap;
  13887. text-transform:none;
  13888. }