styles.css 130 KB

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