styles.css 165 KB

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