styles.css 230 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:4093px;
  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. #u32288 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u32289 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u32290_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:1510px;
  41. height:785px;
  42. background:inherit;
  43. background-color:rgba(84, 100, 125, 1);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. }
  50. #u32290 {
  51. border-width:0px;
  52. position:absolute;
  53. left:0px;
  54. top:73px;
  55. width:1510px;
  56. height:785px;
  57. display:flex;
  58. }
  59. #u32290 .text {
  60. position:absolute;
  61. align-self:center;
  62. padding:2px 2px 2px 2px;
  63. box-sizing:border-box;
  64. width:100%;
  65. }
  66. #u32290_text {
  67. border-width:0px;
  68. word-wrap:break-word;
  69. text-transform:none;
  70. visibility:hidden;
  71. }
  72. #u32291_img {
  73. border-width:0px;
  74. position:absolute;
  75. left:0px;
  76. top:0px;
  77. width:976px;
  78. height:722px;
  79. }
  80. #u32291 {
  81. border-width:0px;
  82. position:absolute;
  83. left:269px;
  84. top:88px;
  85. width:976px;
  86. height:722px;
  87. display:flex;
  88. }
  89. #u32291 .text {
  90. position:absolute;
  91. align-self:center;
  92. padding:2px 2px 2px 2px;
  93. box-sizing:border-box;
  94. width:100%;
  95. }
  96. #u32291_text {
  97. border-width:0px;
  98. word-wrap:break-word;
  99. text-transform:none;
  100. visibility:hidden;
  101. }
  102. #u32292_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:1510px;
  108. height:858px;
  109. }
  110. #u32292 {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:1510px;
  116. height:858px;
  117. display:flex;
  118. }
  119. #u32292 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u32292_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u32293 {
  133. border-width:0px;
  134. position:absolute;
  135. left:458px;
  136. top:32px;
  137. width:558px;
  138. height:30px;
  139. }
  140. #u32293_state0 {
  141. border-width:0px;
  142. position:absolute;
  143. left:0px;
  144. top:0px;
  145. width:558px;
  146. height:30px;
  147. -ms-overflow-x:hidden;
  148. overflow-x:hidden;
  149. -ms-overflow-y:hidden;
  150. overflow-y:hidden;
  151. background-image:none;
  152. border:none;
  153. border-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. }
  158. #u32293_state0_content {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:1px;
  164. height:1px;
  165. }
  166. #u32294_div {
  167. border-width:0px;
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:660px;
  172. height:30px;
  173. background:inherit;
  174. background-color:rgba(255, 255, 255, 0);
  175. border:none;
  176. border-left:0px;
  177. border-top:0px;
  178. border-right:0px;
  179. border-radius:0px;
  180. border-bottom-right-radius:0px;
  181. border-bottom-left-radius:0px;
  182. -moz-box-shadow:none;
  183. -webkit-box-shadow:none;
  184. box-shadow:none;
  185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  186. font-style:normal;
  187. font-size:12px;
  188. line-height:30px;
  189. }
  190. #u32294 {
  191. border-width:0px;
  192. position:absolute;
  193. left:0px;
  194. top:0px;
  195. width:660px;
  196. height:30px;
  197. display:flex;
  198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  199. font-style:normal;
  200. font-size:12px;
  201. line-height:30px;
  202. }
  203. #u32294 .text {
  204. position:absolute;
  205. align-self:flex-start;
  206. padding:0px 0px 0px 0px;
  207. box-sizing:border-box;
  208. width:100%;
  209. }
  210. #u32294_text {
  211. border-width:0px;
  212. white-space:nowrap;
  213. text-transform:none;
  214. }
  215. #u32295_div {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:240px;
  221. height:40px;
  222. background:inherit;
  223. background-color:rgba(245, 154, 35, 0.2);
  224. box-sizing:border-box;
  225. border-width:2px;
  226. border-style:solid;
  227. border-color:rgba(245, 154, 35, 1);
  228. border-left:0px;
  229. border-top:0px;
  230. border-right:0px;
  231. border-radius:0px;
  232. border-bottom-right-radius:0px;
  233. border-bottom-left-radius:0px;
  234. -moz-box-shadow:none;
  235. -webkit-box-shadow:none;
  236. box-shadow:none;
  237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  238. font-weight:400;
  239. font-style:normal;
  240. font-size:18px;
  241. color:#FFFFFF;
  242. text-align:left;
  243. }
  244. #u32295 {
  245. border-width:0px;
  246. position:absolute;
  247. left:31px;
  248. top:137px;
  249. width:240px;
  250. height:40px;
  251. display:flex;
  252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  253. font-weight:400;
  254. font-style:normal;
  255. font-size:18px;
  256. color:#FFFFFF;
  257. text-align:left;
  258. }
  259. #u32295 .text {
  260. position:absolute;
  261. align-self:center;
  262. padding:2px 2px 2px 10px;
  263. box-sizing:border-box;
  264. width:100%;
  265. }
  266. #u32295_text {
  267. border-width:0px;
  268. word-wrap:break-word;
  269. text-transform:none;
  270. }
  271. #u32296 {
  272. border-width:0px;
  273. position:absolute;
  274. left:0px;
  275. top:0px;
  276. width:0px;
  277. height:0px;
  278. }
  279. #u32297_div {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:100px;
  285. height:40px;
  286. background:inherit;
  287. background-color:rgba(245, 154, 35, 1);
  288. box-sizing:border-box;
  289. border-width:1px;
  290. border-style:solid;
  291. border-color:rgba(245, 154, 35, 1);
  292. border-radius:4px;
  293. -moz-box-shadow:none;
  294. -webkit-box-shadow:none;
  295. box-shadow:none;
  296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  297. font-weight:400;
  298. font-style:normal;
  299. font-size:14px;
  300. color:#FFFFFF;
  301. }
  302. #u32297 {
  303. border-width:0px;
  304. position:absolute;
  305. left:1200px;
  306. top:87px;
  307. width:100px;
  308. height:40px;
  309. display:flex;
  310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  311. font-weight:400;
  312. font-style:normal;
  313. font-size:14px;
  314. color:#FFFFFF;
  315. }
  316. #u32297 .text {
  317. position:absolute;
  318. align-self:center;
  319. padding:2px 2px 2px 20px;
  320. box-sizing:border-box;
  321. width:100%;
  322. }
  323. #u32297_text {
  324. border-width:0px;
  325. word-wrap:break-word;
  326. text-transform:none;
  327. }
  328. #u32298_img {
  329. border-width:0px;
  330. position:absolute;
  331. left:0px;
  332. top:0px;
  333. width:16px;
  334. height:15px;
  335. }
  336. #u32298 {
  337. border-width:0px;
  338. position:absolute;
  339. left:1209px;
  340. top:99px;
  341. width:16px;
  342. height:15px;
  343. display:flex;
  344. }
  345. #u32298 .text {
  346. position:absolute;
  347. align-self:center;
  348. padding:2px 2px 2px 2px;
  349. box-sizing:border-box;
  350. width:100%;
  351. }
  352. #u32298_text {
  353. border-width:0px;
  354. word-wrap:break-word;
  355. text-transform:none;
  356. visibility:hidden;
  357. }
  358. #u32299 {
  359. border-width:0px;
  360. position:absolute;
  361. left:0px;
  362. top:0px;
  363. width:0px;
  364. height:0px;
  365. }
  366. #u32300_div {
  367. border-width:0px;
  368. position:absolute;
  369. left:0px;
  370. top:0px;
  371. width:80px;
  372. height:40px;
  373. background:inherit;
  374. background-color:rgba(245, 154, 35, 0.0980392156862745);
  375. box-sizing:border-box;
  376. border-width:1px;
  377. border-style:solid;
  378. border-color:rgba(245, 154, 35, 1);
  379. border-radius:4px;
  380. -moz-box-shadow:none;
  381. -webkit-box-shadow:none;
  382. box-shadow:none;
  383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  384. font-weight:400;
  385. font-style:normal;
  386. font-size:14px;
  387. color:#F59A23;
  388. }
  389. #u32300 {
  390. border-width:0px;
  391. position:absolute;
  392. left:1400px;
  393. top:87px;
  394. width:80px;
  395. height:40px;
  396. display:flex;
  397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  398. font-weight:400;
  399. font-style:normal;
  400. font-size:14px;
  401. color:#F59A23;
  402. }
  403. #u32300 .text {
  404. position:absolute;
  405. align-self:center;
  406. padding:2px 10px 2px 2px;
  407. box-sizing:border-box;
  408. width:100%;
  409. }
  410. #u32300_text {
  411. border-width:0px;
  412. word-wrap:break-word;
  413. text-transform:none;
  414. }
  415. #u32301_img {
  416. border-width:0px;
  417. position:absolute;
  418. left:0px;
  419. top:0px;
  420. width:7px;
  421. height:4px;
  422. }
  423. #u32301 {
  424. border-width:0px;
  425. position:absolute;
  426. left:1467px;
  427. top:105px;
  428. width:7px;
  429. height:4px;
  430. display:flex;
  431. }
  432. #u32301 .text {
  433. position:absolute;
  434. align-self:center;
  435. padding:2px 2px 2px 2px;
  436. box-sizing:border-box;
  437. width:100%;
  438. }
  439. #u32301_text {
  440. border-width:0px;
  441. word-wrap:break-word;
  442. text-transform:none;
  443. visibility:hidden;
  444. }
  445. #u32302_div {
  446. border-width:0px;
  447. position:absolute;
  448. left:0px;
  449. top:0px;
  450. width:240px;
  451. height:40px;
  452. background:inherit;
  453. background-color:rgba(245, 154, 35, 0.2);
  454. box-sizing:border-box;
  455. border-width:2px;
  456. border-style:solid;
  457. border-color:rgba(245, 154, 35, 1);
  458. border-left:0px;
  459. border-top:0px;
  460. border-right:0px;
  461. border-radius:0px;
  462. border-bottom-right-radius:0px;
  463. border-bottom-left-radius:0px;
  464. -moz-box-shadow:none;
  465. -webkit-box-shadow:none;
  466. box-shadow:none;
  467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  468. font-weight:400;
  469. font-style:normal;
  470. font-size:18px;
  471. color:#FFFFFF;
  472. text-align:left;
  473. }
  474. #u32302 {
  475. border-width:0px;
  476. position:absolute;
  477. left:1240px;
  478. top:137px;
  479. width:240px;
  480. height:40px;
  481. display:flex;
  482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  483. font-weight:400;
  484. font-style:normal;
  485. font-size:18px;
  486. color:#FFFFFF;
  487. text-align:left;
  488. }
  489. #u32302 .text {
  490. position:absolute;
  491. align-self:center;
  492. padding:2px 2px 2px 10px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u32302_text {
  497. border-width:0px;
  498. word-wrap:break-word;
  499. text-transform:none;
  500. }
  501. #u32303_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:96px;
  507. height:96px;
  508. }
  509. #u32303 {
  510. border-width:0px;
  511. position:absolute;
  512. left:45px;
  513. top:187px;
  514. width:96px;
  515. height:96px;
  516. display:flex;
  517. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  518. font-style:normal;
  519. color:#FFFFFF;
  520. }
  521. #u32303 .text {
  522. position:absolute;
  523. align-self:center;
  524. padding:2px 2px 2px 2px;
  525. box-sizing:border-box;
  526. width:100%;
  527. }
  528. #u32303_text {
  529. border-width:0px;
  530. word-wrap:break-word;
  531. text-transform:none;
  532. }
  533. #u32304_div {
  534. border-width:0px;
  535. position:absolute;
  536. left:0px;
  537. top:0px;
  538. width:94px;
  539. height:94px;
  540. background:inherit;
  541. background-color:rgba(255, 255, 255, 0);
  542. border:none;
  543. border-radius:0px;
  544. -moz-box-shadow:none;
  545. -webkit-box-shadow:none;
  546. box-shadow:none;
  547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  548. font-weight:400;
  549. font-style:normal;
  550. font-size:12px;
  551. color:rgba(255, 255, 255, 0.698039215686274);
  552. text-align:left;
  553. line-height:30px;
  554. }
  555. #u32304 {
  556. border-width:0px;
  557. position:absolute;
  558. left:161px;
  559. top:187px;
  560. width:94px;
  561. height:94px;
  562. display:flex;
  563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  564. font-weight:400;
  565. font-style:normal;
  566. font-size:12px;
  567. color:rgba(255, 255, 255, 0.698039215686274);
  568. text-align:left;
  569. line-height:30px;
  570. }
  571. #u32304 .text {
  572. position:absolute;
  573. align-self:center;
  574. padding:2px 2px 2px 2px;
  575. box-sizing:border-box;
  576. width:100%;
  577. }
  578. #u32304_text {
  579. border-width:0px;
  580. white-space:nowrap;
  581. text-transform:none;
  582. }
  583. #u32305_div {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:115px;
  589. height:34px;
  590. background:inherit;
  591. background-color:rgba(255, 255, 255, 0);
  592. border:none;
  593. border-radius:0px;
  594. -moz-box-shadow:none;
  595. -webkit-box-shadow:none;
  596. box-shadow:none;
  597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  598. font-weight:400;
  599. font-style:normal;
  600. font-size:12px;
  601. color:rgba(255, 255, 255, 0.698039215686274);
  602. text-align:left;
  603. line-height:30px;
  604. }
  605. #u32305 {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:292px;
  610. width:115px;
  611. height:34px;
  612. display:flex;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:12px;
  617. color:rgba(255, 255, 255, 0.698039215686274);
  618. text-align:left;
  619. line-height:30px;
  620. }
  621. #u32305 .text {
  622. position:absolute;
  623. align-self:center;
  624. padding:2px 2px 2px 2px;
  625. box-sizing:border-box;
  626. width:100%;
  627. }
  628. #u32305_text {
  629. border-width:0px;
  630. white-space:nowrap;
  631. text-transform:none;
  632. }
  633. #u32306_div {
  634. border-width:0px;
  635. position:absolute;
  636. left:0px;
  637. top:0px;
  638. width:103px;
  639. height:34px;
  640. background:inherit;
  641. background-color:rgba(255, 255, 255, 0);
  642. border:none;
  643. border-radius:0px;
  644. -moz-box-shadow:none;
  645. -webkit-box-shadow:none;
  646. box-shadow:none;
  647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:12px;
  651. color:rgba(255, 255, 255, 0.698039215686274);
  652. text-align:left;
  653. line-height:30px;
  654. }
  655. #u32306 {
  656. border-width:0px;
  657. position:absolute;
  658. left:95px;
  659. top:292px;
  660. width:103px;
  661. height:34px;
  662. display:flex;
  663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  664. font-weight:400;
  665. font-style:normal;
  666. font-size:12px;
  667. color:rgba(255, 255, 255, 0.698039215686274);
  668. text-align:left;
  669. line-height:30px;
  670. }
  671. #u32306 .text {
  672. position:absolute;
  673. align-self:center;
  674. padding:2px 2px 2px 2px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u32306_text {
  679. border-width:0px;
  680. white-space:nowrap;
  681. text-transform:none;
  682. }
  683. #u32307_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:95px;
  689. height:34px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border:none;
  693. border-radius:0px;
  694. -moz-box-shadow:none;
  695. -webkit-box-shadow:none;
  696. box-shadow:none;
  697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  698. font-weight:400;
  699. font-style:normal;
  700. font-size:12px;
  701. color:rgba(255, 255, 255, 0.698039215686274);
  702. text-align:left;
  703. line-height:30px;
  704. }
  705. #u32307 {
  706. border-width:0px;
  707. position:absolute;
  708. left:178px;
  709. top:292px;
  710. width:95px;
  711. height:34px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:12px;
  717. color:rgba(255, 255, 255, 0.698039215686274);
  718. text-align:left;
  719. line-height:30px;
  720. }
  721. #u32307 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u32307_text {
  729. border-width:0px;
  730. white-space:nowrap;
  731. text-transform:none;
  732. }
  733. #u32308 {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:0px;
  739. height:0px;
  740. }
  741. #u32309_img {
  742. border-width:0px;
  743. position:absolute;
  744. left:0px;
  745. top:0px;
  746. width:240px;
  747. height:30px;
  748. }
  749. #u32309 {
  750. border-width:0px;
  751. position:absolute;
  752. left:33px;
  753. top:336px;
  754. width:240px;
  755. height:30px;
  756. display:flex;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:12px;
  761. color:#FFFFFF;
  762. text-align:left;
  763. }
  764. #u32309 .text {
  765. position:absolute;
  766. align-self:center;
  767. padding:2px 2px 2px 10px;
  768. box-sizing:border-box;
  769. width:100%;
  770. }
  771. #u32309_text {
  772. border-width:0px;
  773. word-wrap:break-word;
  774. text-transform:none;
  775. visibility:hidden;
  776. }
  777. #u32310_div {
  778. border-width:0px;
  779. position:absolute;
  780. left:0px;
  781. top:0px;
  782. width:49px;
  783. height:17px;
  784. background:inherit;
  785. background-color:rgba(255, 255, 255, 0);
  786. border:none;
  787. border-radius:0px;
  788. -moz-box-shadow:none;
  789. -webkit-box-shadow:none;
  790. box-shadow:none;
  791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  792. font-weight:500;
  793. font-style:normal;
  794. font-size:12px;
  795. color:#FFFFFF;
  796. }
  797. #u32310 {
  798. border-width:0px;
  799. position:absolute;
  800. left:47px;
  801. top:343px;
  802. width:49px;
  803. height:17px;
  804. display:flex;
  805. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  806. font-weight:500;
  807. font-style:normal;
  808. font-size:12px;
  809. color:#FFFFFF;
  810. }
  811. #u32310 .text {
  812. position:absolute;
  813. align-self:flex-start;
  814. padding:0px 0px 0px 0px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u32310_text {
  819. border-width:0px;
  820. white-space:nowrap;
  821. text-transform:none;
  822. }
  823. #u32311_img {
  824. border-width:0px;
  825. position:absolute;
  826. left:0px;
  827. top:0px;
  828. width:15px;
  829. height:15px;
  830. }
  831. #u32311 {
  832. border-width:0px;
  833. position:absolute;
  834. left:249px;
  835. top:345px;
  836. width:15px;
  837. height:15px;
  838. display:flex;
  839. }
  840. #u32311 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u32311_text {
  848. border-width:0px;
  849. word-wrap:break-word;
  850. text-transform:none;
  851. visibility:hidden;
  852. }
  853. #u32312_img {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:132px;
  859. height:20px;
  860. }
  861. #u32312 {
  862. border-width:0px;
  863. position:absolute;
  864. left:113px;
  865. top:341px;
  866. width:132px;
  867. height:20px;
  868. display:flex;
  869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  870. font-weight:400;
  871. font-style:normal;
  872. font-size:10px;
  873. color:rgba(250, 205, 145, 0.498039215686275);
  874. text-align:left;
  875. }
  876. #u32312 .text {
  877. position:absolute;
  878. align-self:center;
  879. padding:2px 2px 2px 10px;
  880. box-sizing:border-box;
  881. width:100%;
  882. }
  883. #u32312_text {
  884. border-width:0px;
  885. word-wrap:break-word;
  886. text-transform:none;
  887. }
  888. #u32313 {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:0px;
  894. height:0px;
  895. }
  896. #u32314_img {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:240px;
  902. height:190px;
  903. }
  904. #u32314 {
  905. border-width:0px;
  906. position:absolute;
  907. left:33px;
  908. top:366px;
  909. width:240px;
  910. height:190px;
  911. display:flex;
  912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  913. font-weight:400;
  914. font-style:normal;
  915. font-size:12px;
  916. color:#FFFFFF;
  917. text-align:left;
  918. }
  919. #u32314 .text {
  920. position:absolute;
  921. align-self:center;
  922. padding:2px 2px 2px 10px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u32314_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u32315_div {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:49px;
  938. height:17px;
  939. background:inherit;
  940. background-color:rgba(255, 255, 255, 0);
  941. border:none;
  942. border-radius:0px;
  943. -moz-box-shadow:none;
  944. -webkit-box-shadow:none;
  945. box-shadow:none;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:12px;
  950. color:#FFFFFF;
  951. }
  952. #u32315 {
  953. border-width:0px;
  954. position:absolute;
  955. left:57px;
  956. top:373px;
  957. width:49px;
  958. height:17px;
  959. display:flex;
  960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  961. font-weight:400;
  962. font-style:normal;
  963. font-size:12px;
  964. color:#FFFFFF;
  965. }
  966. #u32315 .text {
  967. position:absolute;
  968. align-self:flex-start;
  969. padding:0px 0px 0px 0px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u32315_text {
  974. border-width:0px;
  975. white-space:nowrap;
  976. text-transform:none;
  977. }
  978. #u32316_div {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:54px;
  984. height:17px;
  985. background:inherit;
  986. background-color:rgba(255, 255, 255, 0);
  987. border:none;
  988. border-radius:0px;
  989. -moz-box-shadow:none;
  990. -webkit-box-shadow:none;
  991. box-shadow:none;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:12px;
  996. color:#FFFFFF;
  997. }
  998. #u32316 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:68px;
  1002. top:400px;
  1003. width:54px;
  1004. height:17px;
  1005. display:flex;
  1006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1007. font-weight:400;
  1008. font-style:normal;
  1009. font-size:12px;
  1010. color:#FFFFFF;
  1011. }
  1012. #u32316 .text {
  1013. position:absolute;
  1014. align-self:flex-start;
  1015. padding:0px 0px 0px 0px;
  1016. box-sizing:border-box;
  1017. width:100%;
  1018. }
  1019. #u32316_text {
  1020. border-width:0px;
  1021. white-space:nowrap;
  1022. text-transform:none;
  1023. }
  1024. #u32317 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:0px;
  1030. height:0px;
  1031. }
  1032. #u32318_div {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:49px;
  1038. height:17px;
  1039. background:inherit;
  1040. background-color:rgba(255, 255, 255, 0);
  1041. border:none;
  1042. border-radius:0px;
  1043. -moz-box-shadow:none;
  1044. -webkit-box-shadow:none;
  1045. box-shadow:none;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. font-size:12px;
  1050. color:#FFFFFF;
  1051. }
  1052. #u32318 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:57px;
  1056. top:502px;
  1057. width:49px;
  1058. height:17px;
  1059. display:flex;
  1060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1061. font-weight:400;
  1062. font-style:normal;
  1063. font-size:12px;
  1064. color:#FFFFFF;
  1065. }
  1066. #u32318 .text {
  1067. position:absolute;
  1068. align-self:flex-start;
  1069. padding:0px 0px 0px 0px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u32318_text {
  1074. border-width:0px;
  1075. white-space:nowrap;
  1076. text-transform:none;
  1077. }
  1078. #u32319_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:4px;
  1085. }
  1086. #u32319 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:47px;
  1090. top:509px;
  1091. width:7px;
  1092. height:4px;
  1093. display:flex;
  1094. -webkit-transform:rotate(270deg);
  1095. -moz-transform:rotate(270deg);
  1096. -ms-transform:rotate(270deg);
  1097. transform:rotate(270deg);
  1098. }
  1099. #u32319 .text {
  1100. position:absolute;
  1101. align-self:center;
  1102. padding:2px 2px 2px 2px;
  1103. box-sizing:border-box;
  1104. width:100%;
  1105. }
  1106. #u32319_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u32320 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u32321_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:49px;
  1126. height:17px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border:none;
  1130. border-radius:0px;
  1131. -moz-box-shadow:none;
  1132. -webkit-box-shadow:none;
  1133. box-shadow:none;
  1134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1135. font-weight:400;
  1136. font-style:normal;
  1137. font-size:12px;
  1138. color:#FFFFFF;
  1139. }
  1140. #u32321 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:57px;
  1144. top:529px;
  1145. width:49px;
  1146. height:17px;
  1147. display:flex;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:12px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u32321 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u32321_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u32322_img {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:7px;
  1172. height:4px;
  1173. }
  1174. #u32322 {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:47px;
  1178. top:536px;
  1179. width:7px;
  1180. height:4px;
  1181. display:flex;
  1182. -webkit-transform:rotate(270deg);
  1183. -moz-transform:rotate(270deg);
  1184. -ms-transform:rotate(270deg);
  1185. transform:rotate(270deg);
  1186. }
  1187. #u32322 .text {
  1188. position:absolute;
  1189. align-self:center;
  1190. padding:2px 2px 2px 2px;
  1191. box-sizing:border-box;
  1192. width:100%;
  1193. }
  1194. #u32322_text {
  1195. border-width:0px;
  1196. word-wrap:break-word;
  1197. text-transform:none;
  1198. visibility:hidden;
  1199. }
  1200. #u32323_img {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:7px;
  1206. height:4px;
  1207. }
  1208. #u32323 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:47px;
  1212. top:380px;
  1213. width:7px;
  1214. height:4px;
  1215. display:flex;
  1216. }
  1217. #u32323 .text {
  1218. position:absolute;
  1219. align-self:center;
  1220. padding:2px 2px 2px 2px;
  1221. box-sizing:border-box;
  1222. width:100%;
  1223. }
  1224. #u32323_text {
  1225. border-width:0px;
  1226. word-wrap:break-word;
  1227. text-transform:none;
  1228. visibility:hidden;
  1229. }
  1230. #u32324_img {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:7px;
  1236. height:4px;
  1237. }
  1238. #u32324 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:59px;
  1242. top:407px;
  1243. width:7px;
  1244. height:4px;
  1245. display:flex;
  1246. -webkit-transform:rotate(270deg);
  1247. -moz-transform:rotate(270deg);
  1248. -ms-transform:rotate(270deg);
  1249. transform:rotate(270deg);
  1250. }
  1251. #u32324 .text {
  1252. position:absolute;
  1253. align-self:center;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u32324_text {
  1259. border-width:0px;
  1260. word-wrap:break-word;
  1261. text-transform:none;
  1262. visibility:hidden;
  1263. }
  1264. #u32325_div {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:61px;
  1270. height:51px;
  1271. background:inherit;
  1272. background-color:rgba(255, 255, 255, 0);
  1273. border:none;
  1274. border-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1279. font-weight:400;
  1280. font-style:normal;
  1281. font-size:12px;
  1282. }
  1283. #u32325 {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:82px;
  1287. top:417px;
  1288. width:61px;
  1289. height:51px;
  1290. display:flex;
  1291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1292. font-weight:400;
  1293. font-style:normal;
  1294. font-size:12px;
  1295. }
  1296. #u32325 .text {
  1297. position:absolute;
  1298. align-self:flex-start;
  1299. padding:0px 0px 0px 0px;
  1300. box-sizing:border-box;
  1301. width:100%;
  1302. }
  1303. #u32325_text {
  1304. border-width:0px;
  1305. white-space:nowrap;
  1306. text-transform:none;
  1307. }
  1308. #u32326 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:0px;
  1312. top:0px;
  1313. width:0px;
  1314. height:0px;
  1315. }
  1316. #u32327_img {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:0px;
  1320. top:0px;
  1321. width:7px;
  1322. height:4px;
  1323. }
  1324. #u32327 {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:59px;
  1328. top:482px;
  1329. width:7px;
  1330. height:4px;
  1331. display:flex;
  1332. -webkit-transform:rotate(270deg);
  1333. -moz-transform:rotate(270deg);
  1334. -ms-transform:rotate(270deg);
  1335. transform:rotate(270deg);
  1336. }
  1337. #u32327 .text {
  1338. position:absolute;
  1339. align-self:center;
  1340. padding:2px 2px 2px 2px;
  1341. box-sizing:border-box;
  1342. width:100%;
  1343. }
  1344. #u32327_text {
  1345. border-width:0px;
  1346. word-wrap:break-word;
  1347. text-transform:none;
  1348. visibility:hidden;
  1349. }
  1350. #u32328_div {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:0px;
  1354. top:0px;
  1355. width:54px;
  1356. height:17px;
  1357. background:inherit;
  1358. background-color:rgba(255, 255, 255, 0);
  1359. border:none;
  1360. border-radius:0px;
  1361. -moz-box-shadow:none;
  1362. -webkit-box-shadow:none;
  1363. box-shadow:none;
  1364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1365. font-weight:400;
  1366. font-style:normal;
  1367. font-size:12px;
  1368. color:#FFFFFF;
  1369. }
  1370. #u32328 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:68px;
  1374. top:475px;
  1375. width:54px;
  1376. height:17px;
  1377. display:flex;
  1378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1379. font-weight:400;
  1380. font-style:normal;
  1381. font-size:12px;
  1382. color:#FFFFFF;
  1383. }
  1384. #u32328 .text {
  1385. position:absolute;
  1386. align-self:flex-start;
  1387. padding:0px 0px 0px 0px;
  1388. box-sizing:border-box;
  1389. width:100%;
  1390. }
  1391. #u32328_text {
  1392. border-width:0px;
  1393. white-space:nowrap;
  1394. text-transform:none;
  1395. }
  1396. #u32329_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:240px;
  1402. height:40px;
  1403. background:inherit;
  1404. background-color:rgba(245, 154, 35, 0.2);
  1405. box-sizing:border-box;
  1406. border-width:2px;
  1407. border-style:solid;
  1408. border-color:rgba(245, 154, 35, 1);
  1409. border-left:0px;
  1410. border-top:0px;
  1411. border-right:0px;
  1412. border-radius:0px;
  1413. border-bottom-right-radius:0px;
  1414. border-bottom-left-radius:0px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1419. font-weight:400;
  1420. font-style:normal;
  1421. font-size:18px;
  1422. color:#FFFFFF;
  1423. text-align:left;
  1424. }
  1425. #u32329 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:31px;
  1429. top:576px;
  1430. width:240px;
  1431. height:40px;
  1432. display:flex;
  1433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1434. font-weight:400;
  1435. font-style:normal;
  1436. font-size:18px;
  1437. color:#FFFFFF;
  1438. text-align:left;
  1439. }
  1440. #u32329 .text {
  1441. position:absolute;
  1442. align-self:center;
  1443. padding:2px 2px 2px 10px;
  1444. box-sizing:border-box;
  1445. width:100%;
  1446. }
  1447. #u32329_text {
  1448. border-width:0px;
  1449. word-wrap:break-word;
  1450. text-transform:none;
  1451. }
  1452. #u32330 {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:0px;
  1458. height:0px;
  1459. }
  1460. #u32331_img {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:240px;
  1466. height:30px;
  1467. }
  1468. #u32331 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:33px;
  1472. top:732px;
  1473. width:240px;
  1474. height:30px;
  1475. display:flex;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. font-size:12px;
  1480. color:#FFFFFF;
  1481. text-align:left;
  1482. }
  1483. #u32331 .text {
  1484. position:absolute;
  1485. align-self:center;
  1486. padding:2px 2px 2px 10px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u32331_text {
  1491. border-width:0px;
  1492. word-wrap:break-word;
  1493. text-transform:none;
  1494. visibility:hidden;
  1495. }
  1496. #u32332_div {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:98px;
  1502. height:20px;
  1503. background:inherit;
  1504. background-color:rgba(255, 255, 255, 0);
  1505. border:none;
  1506. border-radius:0px;
  1507. -moz-box-shadow:none;
  1508. -webkit-box-shadow:none;
  1509. box-shadow:none;
  1510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1511. font-style:normal;
  1512. color:#FFFFFF;
  1513. }
  1514. #u32332 {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:165px;
  1518. top:737px;
  1519. width:98px;
  1520. height:20px;
  1521. display:flex;
  1522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1523. font-style:normal;
  1524. color:#FFFFFF;
  1525. }
  1526. #u32332 .text {
  1527. position:absolute;
  1528. align-self:flex-start;
  1529. padding:0px 0px 0px 0px;
  1530. box-sizing:border-box;
  1531. width:100%;
  1532. }
  1533. #u32332_text {
  1534. border-width:0px;
  1535. white-space:nowrap;
  1536. text-transform:none;
  1537. }
  1538. #u32333_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:102px;
  1544. height:20px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 0);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-style:normal;
  1554. color:#FFFFFF;
  1555. }
  1556. #u32333 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:43px;
  1560. top:737px;
  1561. width:102px;
  1562. height:20px;
  1563. display:flex;
  1564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1565. font-style:normal;
  1566. color:#FFFFFF;
  1567. }
  1568. #u32333 .text {
  1569. position:absolute;
  1570. align-self:flex-start;
  1571. padding:0px 0px 0px 0px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u32333_text {
  1576. border-width:0px;
  1577. white-space:nowrap;
  1578. text-transform:none;
  1579. }
  1580. #u32334_img {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:96px;
  1586. height:96px;
  1587. }
  1588. #u32334 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:45px;
  1592. top:626px;
  1593. width:96px;
  1594. height:96px;
  1595. display:flex;
  1596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1597. font-style:normal;
  1598. color:#FFFFFF;
  1599. }
  1600. #u32334 .text {
  1601. position:absolute;
  1602. align-self:center;
  1603. padding:2px 2px 2px 2px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u32334_text {
  1608. border-width:0px;
  1609. word-wrap:break-word;
  1610. text-transform:none;
  1611. }
  1612. #u32335_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:65px;
  1618. height:94px;
  1619. background:inherit;
  1620. background-color:rgba(255, 255, 255, 0);
  1621. border:none;
  1622. border-radius:0px;
  1623. -moz-box-shadow:none;
  1624. -webkit-box-shadow:none;
  1625. box-shadow:none;
  1626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1627. font-weight:400;
  1628. font-style:normal;
  1629. font-size:12px;
  1630. color:rgba(255, 255, 255, 0.698039215686274);
  1631. text-align:left;
  1632. line-height:30px;
  1633. }
  1634. #u32335 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:161px;
  1638. top:626px;
  1639. width:65px;
  1640. height:94px;
  1641. display:flex;
  1642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1643. font-weight:400;
  1644. font-style:normal;
  1645. font-size:12px;
  1646. color:rgba(255, 255, 255, 0.698039215686274);
  1647. text-align:left;
  1648. line-height:30px;
  1649. }
  1650. #u32335 .text {
  1651. position:absolute;
  1652. align-self:center;
  1653. padding:2px 2px 2px 2px;
  1654. box-sizing:border-box;
  1655. width:100%;
  1656. }
  1657. #u32335_text {
  1658. border-width:0px;
  1659. white-space:nowrap;
  1660. text-transform:none;
  1661. }
  1662. #u32336_div {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:0px;
  1666. top:0px;
  1667. width:60px;
  1668. height:20px;
  1669. background:inherit;
  1670. background-color:rgba(245, 154, 35, 0.0980392156862745);
  1671. box-sizing:border-box;
  1672. border-width:1px;
  1673. border-style:solid;
  1674. border-color:rgba(245, 154, 35, 1);
  1675. border-left:0px;
  1676. border-radius:4px;
  1677. border-top-left-radius:0px;
  1678. border-bottom-left-radius:0px;
  1679. -moz-box-shadow:none;
  1680. -webkit-box-shadow:none;
  1681. box-shadow:none;
  1682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1683. font-weight:400;
  1684. font-style:normal;
  1685. font-size:11px;
  1686. color:#FFFFFF;
  1687. }
  1688. #u32336 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:1420px;
  1692. top:187px;
  1693. width:60px;
  1694. height:20px;
  1695. display:flex;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:11px;
  1700. color:#FFFFFF;
  1701. }
  1702. #u32336 .text {
  1703. position:absolute;
  1704. align-self:center;
  1705. padding:2px 2px 2px 2px;
  1706. box-sizing:border-box;
  1707. width:100%;
  1708. }
  1709. #u32336_text {
  1710. border-width:0px;
  1711. word-wrap:break-word;
  1712. text-transform:none;
  1713. }
  1714. #u32337_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:60px;
  1720. height:20px;
  1721. background:inherit;
  1722. background-color:rgba(245, 154, 35, 1);
  1723. box-sizing:border-box;
  1724. border-width:1px;
  1725. border-style:solid;
  1726. border-color:rgba(245, 154, 35, 1);
  1727. border-radius:4px;
  1728. border-top-right-radius:0px;
  1729. border-bottom-right-radius:0px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:11px;
  1737. color:#FFFFFF;
  1738. }
  1739. #u32337 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:1240px;
  1743. top:187px;
  1744. width:60px;
  1745. height:20px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:11px;
  1751. color:#FFFFFF;
  1752. }
  1753. #u32337 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 2px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u32337_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. }
  1765. #u32338_img {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:114px;
  1771. height:80px;
  1772. }
  1773. #u32338 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:1243px;
  1777. top:217px;
  1778. width:114px;
  1779. height:80px;
  1780. display:flex;
  1781. }
  1782. #u32338 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:2px 2px 2px 2px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u32338_text {
  1790. border-width:0px;
  1791. word-wrap:break-word;
  1792. text-transform:none;
  1793. visibility:hidden;
  1794. }
  1795. #u32339_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:60px;
  1801. height:20px;
  1802. background:inherit;
  1803. background-color:rgba(245, 154, 35, 0.0980392156862745);
  1804. box-sizing:border-box;
  1805. border-width:1px;
  1806. border-style:solid;
  1807. border-color:rgba(245, 154, 35, 1);
  1808. border-radius:0px;
  1809. border-top-right-radius:0px;
  1810. border-bottom-right-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:11px;
  1818. color:#FFFFFF;
  1819. }
  1820. #u32339 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:1300px;
  1824. top:187px;
  1825. width:60px;
  1826. height:20px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:11px;
  1832. color:#FFFFFF;
  1833. }
  1834. #u32339 .text {
  1835. position:absolute;
  1836. align-self:center;
  1837. padding:2px 2px 2px 2px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u32339_text {
  1842. border-width:0px;
  1843. word-wrap:break-word;
  1844. text-transform:none;
  1845. }
  1846. #u32340_div {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:60px;
  1852. height:20px;
  1853. background:inherit;
  1854. background-color:rgba(245, 154, 35, 0.0980392156862745);
  1855. box-sizing:border-box;
  1856. border-width:1px;
  1857. border-style:solid;
  1858. border-color:rgba(245, 154, 35, 1);
  1859. border-radius:0px;
  1860. border-top-right-radius:0px;
  1861. border-bottom-right-radius:0px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:11px;
  1869. color:#FFFFFF;
  1870. }
  1871. #u32340 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:1360px;
  1875. top:187px;
  1876. width:60px;
  1877. height:20px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:11px;
  1883. color:#FFFFFF;
  1884. }
  1885. #u32340 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u32340_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. }
  1897. #u32341_img {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:114px;
  1903. height:80px;
  1904. }
  1905. #u32341 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:1363px;
  1909. top:217px;
  1910. width:114px;
  1911. height:80px;
  1912. display:flex;
  1913. }
  1914. #u32341 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 2px 2px 2px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u32341_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u32342_img {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:114px;
  1933. height:80px;
  1934. }
  1935. #u32342 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:1243px;
  1939. top:302px;
  1940. width:114px;
  1941. height:80px;
  1942. display:flex;
  1943. }
  1944. #u32342 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u32342_text {
  1952. border-width:0px;
  1953. word-wrap:break-word;
  1954. text-transform:none;
  1955. visibility:hidden;
  1956. }
  1957. #u32343_img {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:114px;
  1963. height:80px;
  1964. }
  1965. #u32343 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:1363px;
  1969. top:302px;
  1970. width:114px;
  1971. height:80px;
  1972. display:flex;
  1973. }
  1974. #u32343 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 2px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u32343_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. visibility:hidden;
  1986. }
  1987. #u32344_img {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:114px;
  1993. height:80px;
  1994. }
  1995. #u32344 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1243px;
  1999. top:387px;
  2000. width:114px;
  2001. height:80px;
  2002. display:flex;
  2003. }
  2004. #u32344 .text {
  2005. position:absolute;
  2006. align-self:center;
  2007. padding:2px 2px 2px 2px;
  2008. box-sizing:border-box;
  2009. width:100%;
  2010. }
  2011. #u32344_text {
  2012. border-width:0px;
  2013. word-wrap:break-word;
  2014. text-transform:none;
  2015. visibility:hidden;
  2016. }
  2017. #u32345_img {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:114px;
  2023. height:80px;
  2024. }
  2025. #u32345 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:1363px;
  2029. top:387px;
  2030. width:114px;
  2031. height:80px;
  2032. display:flex;
  2033. }
  2034. #u32345 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 2px 2px 2px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u32345_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. visibility:hidden;
  2046. }
  2047. #u32346_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:240px;
  2053. height:40px;
  2054. background:inherit;
  2055. background-color:rgba(245, 154, 35, 0.2);
  2056. box-sizing:border-box;
  2057. border-width:2px;
  2058. border-style:solid;
  2059. border-color:rgba(245, 154, 35, 1);
  2060. border-left:0px;
  2061. border-top:0px;
  2062. border-right:0px;
  2063. border-radius:0px;
  2064. border-bottom-right-radius:0px;
  2065. border-bottom-left-radius:0px;
  2066. -moz-box-shadow:none;
  2067. -webkit-box-shadow:none;
  2068. box-shadow:none;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:18px;
  2073. color:#FFFFFF;
  2074. text-align:left;
  2075. }
  2076. #u32346 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:1240px;
  2080. top:487px;
  2081. width:240px;
  2082. height:40px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:18px;
  2088. color:#FFFFFF;
  2089. text-align:left;
  2090. }
  2091. #u32346 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 10px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u32346_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. }
  2103. #u32347_img {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:80px;
  2109. height:80px;
  2110. }
  2111. #u32347 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:1250px;
  2115. top:547px;
  2116. width:80px;
  2117. height:80px;
  2118. display:flex;
  2119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2120. font-style:normal;
  2121. color:#FFFFFF;
  2122. }
  2123. #u32347 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 2px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u32347_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. }
  2135. #u32348_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:82px;
  2141. height:64px;
  2142. background:inherit;
  2143. background-color:rgba(255, 255, 255, 0);
  2144. border:none;
  2145. border-radius:0px;
  2146. -moz-box-shadow:none;
  2147. -webkit-box-shadow:none;
  2148. box-shadow:none;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:12px;
  2153. color:rgba(255, 255, 255, 0.698039215686274);
  2154. text-align:left;
  2155. line-height:30px;
  2156. }
  2157. #u32348 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:1390px;
  2161. top:563px;
  2162. width:82px;
  2163. height:64px;
  2164. display:flex;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:12px;
  2169. color:rgba(255, 255, 255, 0.698039215686274);
  2170. text-align:left;
  2171. line-height:30px;
  2172. }
  2173. #u32348 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 2px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u32348_text {
  2181. border-width:0px;
  2182. white-space:nowrap;
  2183. text-transform:none;
  2184. }
  2185. #u32349_div {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:90px;
  2191. height:21px;
  2192. background:inherit;
  2193. background-color:rgba(245, 154, 35, 1);
  2194. border:none;
  2195. border-radius:40px;
  2196. -moz-box-shadow:none;
  2197. -webkit-box-shadow:none;
  2198. box-shadow:none;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:12px;
  2203. color:rgba(255, 255, 255, 0.698039215686274);
  2204. }
  2205. #u32349 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:1300px;
  2209. top:537px;
  2210. width:90px;
  2211. height:21px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:rgba(255, 255, 255, 0.698039215686274);
  2218. }
  2219. #u32349 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u32349_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u32350_div {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:233px;
  2237. height:94px;
  2238. background:inherit;
  2239. background-color:rgba(255, 255, 255, 0);
  2240. border:none;
  2241. border-radius:0px;
  2242. -moz-box-shadow:none;
  2243. -webkit-box-shadow:none;
  2244. box-shadow:none;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:12px;
  2249. color:rgba(255, 255, 255, 0.698039215686274);
  2250. text-align:left;
  2251. line-height:30px;
  2252. }
  2253. #u32350 {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:1260px;
  2257. top:636px;
  2258. width:233px;
  2259. height:94px;
  2260. display:flex;
  2261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2262. font-weight:400;
  2263. font-style:normal;
  2264. font-size:12px;
  2265. color:rgba(255, 255, 255, 0.698039215686274);
  2266. text-align:left;
  2267. line-height:30px;
  2268. }
  2269. #u32350 .text {
  2270. position:absolute;
  2271. align-self:center;
  2272. padding:2px 2px 2px 2px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u32350_text {
  2277. border-width:0px;
  2278. white-space:nowrap;
  2279. text-transform:none;
  2280. }
  2281. #u32351_img {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:9px;
  2287. height:9px;
  2288. }
  2289. #u32351 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:1248px;
  2293. top:649px;
  2294. width:9px;
  2295. height:9px;
  2296. display:flex;
  2297. }
  2298. #u32351 .text {
  2299. position:absolute;
  2300. align-self:center;
  2301. padding:2px 2px 2px 2px;
  2302. box-sizing:border-box;
  2303. width:100%;
  2304. }
  2305. #u32351_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. visibility:hidden;
  2310. }
  2311. #u32352_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:9px;
  2317. height:9px;
  2318. }
  2319. #u32352 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:1248px;
  2323. top:679px;
  2324. width:9px;
  2325. height:9px;
  2326. display:flex;
  2327. }
  2328. #u32352 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 2px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u32352_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u32353_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:9px;
  2347. height:9px;
  2348. }
  2349. #u32353 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:1248px;
  2353. top:710px;
  2354. width:9px;
  2355. height:9px;
  2356. display:flex;
  2357. }
  2358. #u32353 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 2px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u32353_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. visibility:hidden;
  2370. }
  2371. #u32354_div {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:29px;
  2377. height:34px;
  2378. background:inherit;
  2379. background-color:rgba(255, 255, 255, 0);
  2380. border:none;
  2381. border-radius:0px;
  2382. -moz-box-shadow:none;
  2383. -webkit-box-shadow:none;
  2384. box-shadow:none;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:12px;
  2389. color:rgba(255, 255, 255, 0.698039215686274);
  2390. text-align:left;
  2391. line-height:30px;
  2392. }
  2393. #u32354 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:1441px;
  2397. top:490px;
  2398. width:29px;
  2399. height:34px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:12px;
  2405. color:rgba(255, 255, 255, 0.698039215686274);
  2406. text-align:left;
  2407. line-height:30px;
  2408. }
  2409. #u32354 .text {
  2410. position:absolute;
  2411. align-self:center;
  2412. padding:2px 2px 2px 2px;
  2413. box-sizing:border-box;
  2414. width:100%;
  2415. }
  2416. #u32354_text {
  2417. border-width:0px;
  2418. white-space:nowrap;
  2419. text-transform:none;
  2420. }
  2421. #u32355_div {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:29px;
  2427. height:34px;
  2428. background:inherit;
  2429. background-color:rgba(255, 255, 255, 0);
  2430. border:none;
  2431. border-radius:0px;
  2432. -moz-box-shadow:none;
  2433. -webkit-box-shadow:none;
  2434. box-shadow:none;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. color:rgba(255, 255, 255, 0.698039215686274);
  2440. text-align:left;
  2441. line-height:30px;
  2442. }
  2443. #u32355 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:1441px;
  2447. top:140px;
  2448. width:29px;
  2449. height:34px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. color:rgba(255, 255, 255, 0.698039215686274);
  2456. text-align:left;
  2457. line-height:30px;
  2458. }
  2459. #u32355 .text {
  2460. position:absolute;
  2461. align-self:center;
  2462. padding:2px 2px 2px 2px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u32355_text {
  2467. border-width:0px;
  2468. white-space:nowrap;
  2469. text-transform:none;
  2470. }
  2471. #u32356 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:0px;
  2477. height:0px;
  2478. }
  2479. #u32357_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:80px;
  2485. height:40px;
  2486. background:inherit;
  2487. background-color:rgba(245, 154, 35, 0.0980392156862745);
  2488. box-sizing:border-box;
  2489. border-width:1px;
  2490. border-style:solid;
  2491. border-color:rgba(245, 154, 35, 1);
  2492. border-radius:4px;
  2493. -moz-box-shadow:none;
  2494. -webkit-box-shadow:none;
  2495. box-shadow:none;
  2496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:14px;
  2500. color:#F59A23;
  2501. }
  2502. #u32357 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:1310px;
  2506. top:87px;
  2507. width:80px;
  2508. height:40px;
  2509. display:flex;
  2510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2511. font-weight:400;
  2512. font-style:normal;
  2513. font-size:14px;
  2514. color:#F59A23;
  2515. }
  2516. #u32357 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 10px 2px 2px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u32357_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. }
  2528. #u32358_img {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:7px;
  2534. height:4px;
  2535. }
  2536. #u32358 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:1377px;
  2540. top:105px;
  2541. width:7px;
  2542. height:4px;
  2543. display:flex;
  2544. }
  2545. #u32358 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 2px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u32358_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. visibility:hidden;
  2557. }
  2558. #u32359 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:0px;
  2564. height:0px;
  2565. }
  2566. #u32360 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:0px;
  2572. height:0px;
  2573. }
  2574. #u32361_div {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:57px;
  2580. height:20px;
  2581. background:inherit;
  2582. background-color:rgba(28, 33, 30, 1);
  2583. border:none;
  2584. border-radius:0px;
  2585. -moz-box-shadow:none;
  2586. -webkit-box-shadow:none;
  2587. box-shadow:none;
  2588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2589. font-weight:500;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#FFFFFF;
  2593. }
  2594. #u32361 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:429px;
  2598. top:831px;
  2599. width:57px;
  2600. height:20px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2603. font-weight:500;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. color:#FFFFFF;
  2607. }
  2608. #u32361 .text {
  2609. position:absolute;
  2610. align-self:flex-start;
  2611. padding:0px 0px 0px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u32361_text {
  2616. border-width:0px;
  2617. white-space:nowrap;
  2618. text-transform:none;
  2619. }
  2620. #u32362_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:33px;
  2626. height:39px;
  2627. }
  2628. #u32362 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:441px;
  2632. top:790px;
  2633. width:33px;
  2634. height:39px;
  2635. display:flex;
  2636. color:#FFFFFF;
  2637. }
  2638. #u32362 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u32362_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. }
  2650. #u32363 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:0px;
  2656. height:0px;
  2657. }
  2658. #u32364_div {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:57px;
  2664. height:20px;
  2665. background:inherit;
  2666. background-color:rgba(28, 33, 30, 1);
  2667. border:none;
  2668. border-radius:0px;
  2669. -moz-box-shadow:none;
  2670. -webkit-box-shadow:none;
  2671. box-shadow:none;
  2672. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2673. font-weight:500;
  2674. font-style:normal;
  2675. font-size:14px;
  2676. color:#FFFFFF;
  2677. }
  2678. #u32364 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:503px;
  2682. top:831px;
  2683. width:57px;
  2684. height:20px;
  2685. display:flex;
  2686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2687. font-weight:500;
  2688. font-style:normal;
  2689. font-size:14px;
  2690. color:#FFFFFF;
  2691. }
  2692. #u32364 .text {
  2693. position:absolute;
  2694. align-self:flex-start;
  2695. padding:0px 0px 0px 0px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u32364_text {
  2700. border-width:0px;
  2701. white-space:nowrap;
  2702. text-transform:none;
  2703. }
  2704. #u32365_img {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:33px;
  2710. height:39px;
  2711. }
  2712. #u32365 {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:515px;
  2716. top:790px;
  2717. width:33px;
  2718. height:39px;
  2719. display:flex;
  2720. color:#FFFFFF;
  2721. }
  2722. #u32365 .text {
  2723. position:absolute;
  2724. align-self:center;
  2725. padding:2px 2px 2px 2px;
  2726. box-sizing:border-box;
  2727. width:100%;
  2728. }
  2729. #u32365_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. }
  2734. #u32366 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:0px;
  2740. height:0px;
  2741. }
  2742. #u32367_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:57px;
  2748. height:20px;
  2749. background:inherit;
  2750. background-color:rgba(28, 33, 30, 1);
  2751. border:none;
  2752. border-radius:0px;
  2753. -moz-box-shadow:none;
  2754. -webkit-box-shadow:none;
  2755. box-shadow:none;
  2756. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2757. font-weight:500;
  2758. font-style:normal;
  2759. font-size:14px;
  2760. color:#FFFFFF;
  2761. }
  2762. #u32367 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:355px;
  2766. top:831px;
  2767. width:57px;
  2768. height:20px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2771. font-weight:500;
  2772. font-style:normal;
  2773. font-size:14px;
  2774. color:#FFFFFF;
  2775. }
  2776. #u32367 .text {
  2777. position:absolute;
  2778. align-self:flex-start;
  2779. padding:0px 0px 0px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u32367_text {
  2784. border-width:0px;
  2785. white-space:nowrap;
  2786. text-transform:none;
  2787. }
  2788. #u32368_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:33px;
  2794. height:39px;
  2795. }
  2796. #u32368 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:367px;
  2800. top:790px;
  2801. width:33px;
  2802. height:39px;
  2803. display:flex;
  2804. color:#FFFFFF;
  2805. }
  2806. #u32368 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 2px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u32368_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. }
  2818. #u32369 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:0px;
  2824. height:0px;
  2825. }
  2826. #u32370_div {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:57px;
  2832. height:20px;
  2833. background:inherit;
  2834. background-color:rgba(28, 33, 30, 1);
  2835. border:none;
  2836. border-radius:0px;
  2837. -moz-box-shadow:none;
  2838. -webkit-box-shadow:none;
  2839. box-shadow:none;
  2840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2841. font-weight:500;
  2842. font-style:normal;
  2843. font-size:14px;
  2844. color:#FFFFFF;
  2845. }
  2846. #u32370 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:578px;
  2850. top:831px;
  2851. width:57px;
  2852. height:20px;
  2853. display:flex;
  2854. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2855. font-weight:500;
  2856. font-style:normal;
  2857. font-size:14px;
  2858. color:#FFFFFF;
  2859. }
  2860. #u32370 .text {
  2861. position:absolute;
  2862. align-self:flex-start;
  2863. padding:0px 0px 0px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u32370_text {
  2868. border-width:0px;
  2869. white-space:nowrap;
  2870. text-transform:none;
  2871. }
  2872. #u32371_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:33px;
  2878. height:39px;
  2879. }
  2880. #u32371 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:590px;
  2884. top:790px;
  2885. width:33px;
  2886. height:39px;
  2887. display:flex;
  2888. color:#FFFFFF;
  2889. }
  2890. #u32371 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u32371_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. }
  2902. #u32372_div {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:59px;
  2908. height:20px;
  2909. background:inherit;
  2910. background-color:rgba(28, 33, 30, 1);
  2911. border:none;
  2912. border-radius:0px;
  2913. -moz-box-shadow:none;
  2914. -webkit-box-shadow:none;
  2915. box-shadow:none;
  2916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2917. font-weight:500;
  2918. font-style:normal;
  2919. font-size:14px;
  2920. color:#F59A23;
  2921. }
  2922. #u32372 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:576px;
  2926. top:831px;
  2927. width:59px;
  2928. height:20px;
  2929. display:flex;
  2930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2931. font-weight:500;
  2932. font-style:normal;
  2933. font-size:14px;
  2934. color:#F59A23;
  2935. }
  2936. #u32372 .text {
  2937. position:absolute;
  2938. align-self:flex-start;
  2939. padding:0px 0px 0px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u32372_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. }
  2948. #u32373 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:0px;
  2954. height:0px;
  2955. }
  2956. #u32374_div {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:57px;
  2962. height:20px;
  2963. background:inherit;
  2964. background-color:rgba(28, 33, 30, 1);
  2965. border:none;
  2966. border-radius:0px;
  2967. -moz-box-shadow:none;
  2968. -webkit-box-shadow:none;
  2969. box-shadow:none;
  2970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2971. font-weight:500;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. color:#FFFFFF;
  2975. }
  2976. #u32374 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:726px;
  2980. top:831px;
  2981. width:57px;
  2982. height:20px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2985. font-weight:500;
  2986. font-style:normal;
  2987. font-size:14px;
  2988. color:#FFFFFF;
  2989. }
  2990. #u32374 .text {
  2991. position:absolute;
  2992. align-self:flex-start;
  2993. padding:0px 0px 0px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u32374_text {
  2998. border-width:0px;
  2999. white-space:nowrap;
  3000. text-transform:none;
  3001. }
  3002. #u32375_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:33px;
  3008. height:39px;
  3009. }
  3010. #u32375 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:738px;
  3014. top:790px;
  3015. width:33px;
  3016. height:39px;
  3017. display:flex;
  3018. color:#FFFFFF;
  3019. }
  3020. #u32375 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 2px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u32375_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. }
  3032. #u32376 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:0px;
  3038. height:0px;
  3039. }
  3040. #u32377_div {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:57px;
  3046. height:20px;
  3047. background:inherit;
  3048. background-color:rgba(28, 33, 30, 1);
  3049. border:none;
  3050. border-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3055. font-weight:500;
  3056. font-style:normal;
  3057. font-size:14px;
  3058. color:#FFFFFF;
  3059. }
  3060. #u32377 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:801px;
  3064. top:831px;
  3065. width:57px;
  3066. height:20px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3069. font-weight:500;
  3070. font-style:normal;
  3071. font-size:14px;
  3072. color:#FFFFFF;
  3073. }
  3074. #u32377 .text {
  3075. position:absolute;
  3076. align-self:flex-start;
  3077. padding:0px 0px 0px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u32377_text {
  3082. border-width:0px;
  3083. white-space:nowrap;
  3084. text-transform:none;
  3085. }
  3086. #u32378_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:33px;
  3092. height:39px;
  3093. }
  3094. #u32378 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:813px;
  3098. top:790px;
  3099. width:33px;
  3100. height:39px;
  3101. display:flex;
  3102. color:#FFFFFF;
  3103. }
  3104. #u32378 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 2px 2px 2px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u32378_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. }
  3116. #u32379 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:0px;
  3122. height:0px;
  3123. }
  3124. #u32380_div {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:59px;
  3130. height:20px;
  3131. background:inherit;
  3132. background-color:rgba(28, 33, 30, 1);
  3133. border:none;
  3134. border-radius:0px;
  3135. -moz-box-shadow:none;
  3136. -webkit-box-shadow:none;
  3137. box-shadow:none;
  3138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3139. font-weight:500;
  3140. font-style:normal;
  3141. font-size:14px;
  3142. color:#FFFFFF;
  3143. }
  3144. #u32380 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:653px;
  3148. top:831px;
  3149. width:59px;
  3150. height:20px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3153. font-weight:500;
  3154. font-style:normal;
  3155. font-size:14px;
  3156. color:#FFFFFF;
  3157. }
  3158. #u32380 .text {
  3159. position:absolute;
  3160. align-self:flex-start;
  3161. padding:0px 0px 0px 0px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u32380_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. }
  3170. #u32381_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:33px;
  3176. height:39px;
  3177. }
  3178. #u32381 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:664px;
  3182. top:790px;
  3183. width:33px;
  3184. height:39px;
  3185. display:flex;
  3186. color:#FFFFFF;
  3187. }
  3188. #u32381 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 2px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u32381_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. }
  3200. #u32382 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:0px;
  3206. height:0px;
  3207. }
  3208. #u32383_div {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:71px;
  3214. height:20px;
  3215. background:inherit;
  3216. background-color:rgba(28, 33, 30, 1);
  3217. border:none;
  3218. border-radius:0px;
  3219. -moz-box-shadow:none;
  3220. -webkit-box-shadow:none;
  3221. box-shadow:none;
  3222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3223. font-weight:500;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. color:#FFFFFF;
  3227. }
  3228. #u32383 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:868px;
  3232. top:831px;
  3233. width:71px;
  3234. height:20px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3237. font-weight:500;
  3238. font-style:normal;
  3239. font-size:14px;
  3240. color:#FFFFFF;
  3241. }
  3242. #u32383 .text {
  3243. position:absolute;
  3244. align-self:flex-start;
  3245. padding:0px 0px 0px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u32383_text {
  3250. border-width:0px;
  3251. white-space:nowrap;
  3252. text-transform:none;
  3253. }
  3254. #u32384_img {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:33px;
  3260. height:39px;
  3261. }
  3262. #u32384 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:886px;
  3266. top:790px;
  3267. width:33px;
  3268. height:39px;
  3269. display:flex;
  3270. color:#FFFFFF;
  3271. }
  3272. #u32384 .text {
  3273. position:absolute;
  3274. align-self:center;
  3275. padding:2px 2px 2px 2px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u32384_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. }
  3284. #u32385 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:0px;
  3290. height:0px;
  3291. }
  3292. #u32386_div {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:68px;
  3298. height:20px;
  3299. background:inherit;
  3300. background-color:rgba(28, 33, 30, 1);
  3301. border:none;
  3302. border-radius:0px;
  3303. -moz-box-shadow:none;
  3304. -webkit-box-shadow:none;
  3305. box-shadow:none;
  3306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3307. font-weight:500;
  3308. font-style:normal;
  3309. font-size:14px;
  3310. color:#FFFFFF;
  3311. text-align:center;
  3312. }
  3313. #u32386 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:946px;
  3317. top:831px;
  3318. width:68px;
  3319. height:20px;
  3320. display:flex;
  3321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3322. font-weight:500;
  3323. font-style:normal;
  3324. font-size:14px;
  3325. color:#FFFFFF;
  3326. text-align:center;
  3327. }
  3328. #u32386 .text {
  3329. position:absolute;
  3330. align-self:flex-start;
  3331. padding:0px 0px 0px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u32386_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. }
  3340. #u32387_img {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:33px;
  3346. height:39px;
  3347. }
  3348. #u32387 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:960px;
  3352. top:790px;
  3353. width:33px;
  3354. height:39px;
  3355. display:flex;
  3356. color:#FFFFFF;
  3357. }
  3358. #u32387 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 2px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u32387_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. }
  3370. #u32388 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:0px;
  3376. height:0px;
  3377. }
  3378. #u32389_div {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:60px;
  3384. height:20px;
  3385. background:inherit;
  3386. background-color:rgba(28, 33, 30, 1);
  3387. border:none;
  3388. border-radius:0px;
  3389. -moz-box-shadow:none;
  3390. -webkit-box-shadow:none;
  3391. box-shadow:none;
  3392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3393. font-weight:500;
  3394. font-style:normal;
  3395. font-size:14px;
  3396. color:#FFFFFF;
  3397. }
  3398. #u32389 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:1022px;
  3402. top:831px;
  3403. width:60px;
  3404. height:20px;
  3405. display:flex;
  3406. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3407. font-weight:500;
  3408. font-style:normal;
  3409. font-size:14px;
  3410. color:#FFFFFF;
  3411. }
  3412. #u32389 .text {
  3413. position:absolute;
  3414. align-self:flex-start;
  3415. padding:0px 0px 0px 0px;
  3416. box-sizing:border-box;
  3417. width:100%;
  3418. }
  3419. #u32389_text {
  3420. border-width:0px;
  3421. word-wrap:break-word;
  3422. text-transform:none;
  3423. }
  3424. #u32390_img {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:33px;
  3430. height:39px;
  3431. }
  3432. #u32390 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:1034px;
  3436. top:790px;
  3437. width:33px;
  3438. height:39px;
  3439. display:flex;
  3440. color:#FFFFFF;
  3441. }
  3442. #u32390 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 2px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u32390_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. }
  3454. #u32391 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:0px;
  3460. height:0px;
  3461. }
  3462. #u32392_div {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:60px;
  3468. height:20px;
  3469. background:inherit;
  3470. background-color:rgba(28, 33, 30, 1);
  3471. border:none;
  3472. border-radius:0px;
  3473. -moz-box-shadow:none;
  3474. -webkit-box-shadow:none;
  3475. box-shadow:none;
  3476. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3477. font-weight:500;
  3478. font-style:normal;
  3479. font-size:14px;
  3480. color:#FFFFFF;
  3481. }
  3482. #u32392 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:1095px;
  3486. top:831px;
  3487. width:60px;
  3488. height:20px;
  3489. display:flex;
  3490. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3491. font-weight:500;
  3492. font-style:normal;
  3493. font-size:14px;
  3494. color:#FFFFFF;
  3495. }
  3496. #u32392 .text {
  3497. position:absolute;
  3498. align-self:flex-start;
  3499. padding:0px 0px 0px 0px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u32392_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. }
  3508. #u32393_img {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:33px;
  3514. height:39px;
  3515. }
  3516. #u32393 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:1108px;
  3520. top:790px;
  3521. width:33px;
  3522. height:39px;
  3523. display:flex;
  3524. color:#FFFFFF;
  3525. }
  3526. #u32393 .text {
  3527. position:absolute;
  3528. align-self:center;
  3529. padding:2px 2px 2px 2px;
  3530. box-sizing:border-box;
  3531. width:100%;
  3532. }
  3533. #u32393_text {
  3534. border-width:0px;
  3535. word-wrap:break-word;
  3536. text-transform:none;
  3537. }
  3538. #u32394 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:0px;
  3544. height:0px;
  3545. }
  3546. #u32395_img {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:-5px;
  3550. top:-5px;
  3551. width:30px;
  3552. height:40px;
  3553. }
  3554. #u32395 {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:522px;
  3558. top:360px;
  3559. width:20px;
  3560. height:30px;
  3561. display:flex;
  3562. }
  3563. #u32395 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 2px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u32395_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. visibility:hidden;
  3575. }
  3576. #u32396_img {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:-5px;
  3580. top:-5px;
  3581. width:30px;
  3582. height:40px;
  3583. }
  3584. #u32396 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:587px;
  3588. top:443px;
  3589. width:20px;
  3590. height:30px;
  3591. display:flex;
  3592. }
  3593. #u32396 .text {
  3594. position:absolute;
  3595. align-self:center;
  3596. padding:2px 2px 2px 2px;
  3597. box-sizing:border-box;
  3598. width:100%;
  3599. }
  3600. #u32396_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u32397_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:-5px;
  3610. top:-5px;
  3611. width:30px;
  3612. height:40px;
  3613. }
  3614. #u32397 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:512px;
  3618. top:446px;
  3619. width:20px;
  3620. height:30px;
  3621. display:flex;
  3622. }
  3623. #u32397 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 2px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u32397_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. visibility:hidden;
  3635. }
  3636. #u32398_img {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:-5px;
  3640. top:-5px;
  3641. width:30px;
  3642. height:40px;
  3643. }
  3644. #u32398 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:415px;
  3648. top:454px;
  3649. width:20px;
  3650. height:30px;
  3651. display:flex;
  3652. }
  3653. #u32398 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u32398_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u32399_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:-5px;
  3670. top:-5px;
  3671. width:30px;
  3672. height:40px;
  3673. }
  3674. #u32399 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:358px;
  3678. top:446px;
  3679. width:20px;
  3680. height:30px;
  3681. display:flex;
  3682. }
  3683. #u32399 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 2px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u32399_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u32400_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:-5px;
  3700. top:-5px;
  3701. width:30px;
  3702. height:40px;
  3703. }
  3704. #u32400 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:358px;
  3708. top:377px;
  3709. width:20px;
  3710. height:30px;
  3711. display:flex;
  3712. }
  3713. #u32400 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 2px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u32400_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u32401_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:-5px;
  3730. top:-5px;
  3731. width:30px;
  3732. height:40px;
  3733. }
  3734. #u32401 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:782px;
  3738. top:341px;
  3739. width:20px;
  3740. height:30px;
  3741. display:flex;
  3742. }
  3743. #u32401 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 2px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u32401_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u32402_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:-5px;
  3760. top:-5px;
  3761. width:30px;
  3762. height:40px;
  3763. }
  3764. #u32402 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:701px;
  3768. top:409px;
  3769. width:20px;
  3770. height:30px;
  3771. display:flex;
  3772. }
  3773. #u32402 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 2px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u32402_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u32403_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:-5px;
  3790. top:-5px;
  3791. width:30px;
  3792. height:40px;
  3793. }
  3794. #u32403 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:698px;
  3798. top:496px;
  3799. width:20px;
  3800. height:30px;
  3801. display:flex;
  3802. }
  3803. #u32403 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 2px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u32403_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u32404_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:-5px;
  3820. top:-5px;
  3821. width:30px;
  3822. height:40px;
  3823. }
  3824. #u32404 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:820px;
  3828. top:487px;
  3829. width:20px;
  3830. height:30px;
  3831. display:flex;
  3832. }
  3833. #u32404 .text {
  3834. position:absolute;
  3835. align-self:center;
  3836. padding:2px 2px 2px 2px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u32404_text {
  3841. border-width:0px;
  3842. word-wrap:break-word;
  3843. text-transform:none;
  3844. visibility:hidden;
  3845. }
  3846. #u32405_img {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:-5px;
  3850. top:-5px;
  3851. width:30px;
  3852. height:40px;
  3853. }
  3854. #u32405 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:918px;
  3858. top:336px;
  3859. width:20px;
  3860. height:30px;
  3861. display:flex;
  3862. }
  3863. #u32405 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 2px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u32405_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. visibility:hidden;
  3875. }
  3876. #u32406_img {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:-5px;
  3880. top:-5px;
  3881. width:30px;
  3882. height:40px;
  3883. }
  3884. #u32406 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:870px;
  3888. top:316px;
  3889. width:20px;
  3890. height:30px;
  3891. display:flex;
  3892. }
  3893. #u32406 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 2px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u32406_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u32407_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:-5px;
  3910. top:-5px;
  3911. width:30px;
  3912. height:40px;
  3913. }
  3914. #u32407 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:865px;
  3918. top:351px;
  3919. width:20px;
  3920. height:30px;
  3921. display:flex;
  3922. }
  3923. #u32407 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 2px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u32407_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u32408_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:-5px;
  3940. top:-5px;
  3941. width:30px;
  3942. height:40px;
  3943. }
  3944. #u32408 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:820px;
  3948. top:351px;
  3949. width:20px;
  3950. height:30px;
  3951. display:flex;
  3952. }
  3953. #u32408 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 2px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u32408_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u32409_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:-5px;
  3970. top:-5px;
  3971. width:30px;
  3972. height:40px;
  3973. }
  3974. #u32409 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:776px;
  3978. top:336px;
  3979. width:20px;
  3980. height:30px;
  3981. display:flex;
  3982. }
  3983. #u32409 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u32409_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u32410_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:-5px;
  4000. top:-5px;
  4001. width:30px;
  4002. height:40px;
  4003. }
  4004. #u32410 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:951px;
  4008. top:409px;
  4009. width:20px;
  4010. height:30px;
  4011. display:flex;
  4012. }
  4013. #u32410 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 2px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u32410_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u32411_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:-5px;
  4030. top:-5px;
  4031. width:30px;
  4032. height:40px;
  4033. }
  4034. #u32411 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:936px;
  4038. top:576px;
  4039. width:20px;
  4040. height:30px;
  4041. display:flex;
  4042. }
  4043. #u32411 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 2px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u32411_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u32412_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:-5px;
  4060. top:-5px;
  4061. width:30px;
  4062. height:40px;
  4063. }
  4064. #u32412 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:708px;
  4068. top:481px;
  4069. width:20px;
  4070. height:30px;
  4071. display:flex;
  4072. }
  4073. #u32412 .text {
  4074. position:absolute;
  4075. align-self:center;
  4076. padding:2px 2px 2px 2px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u32412_text {
  4081. border-width:0px;
  4082. word-wrap:break-word;
  4083. text-transform:none;
  4084. visibility:hidden;
  4085. }
  4086. #u32413_img {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:-5px;
  4090. top:-5px;
  4091. width:30px;
  4092. height:40px;
  4093. }
  4094. #u32413 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:830px;
  4098. top:591px;
  4099. width:20px;
  4100. height:30px;
  4101. display:flex;
  4102. }
  4103. #u32413 .text {
  4104. position:absolute;
  4105. align-self:center;
  4106. padding:2px 2px 2px 2px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u32413_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u32414_img {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:-5px;
  4120. top:-5px;
  4121. width:30px;
  4122. height:40px;
  4123. }
  4124. #u32414 {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:903px;
  4128. top:686px;
  4129. width:20px;
  4130. height:30px;
  4131. display:flex;
  4132. }
  4133. #u32414 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 2px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u32414_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u32415_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:-5px;
  4150. top:-5px;
  4151. width:30px;
  4152. height:40px;
  4153. }
  4154. #u32415 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:1095px;
  4158. top:394px;
  4159. width:20px;
  4160. height:30px;
  4161. display:flex;
  4162. }
  4163. #u32415 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u32415_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u32416_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:197px;
  4182. height:30px;
  4183. background:inherit;
  4184. background-color:rgba(245, 154, 35, 1);
  4185. box-sizing:border-box;
  4186. border-width:1px;
  4187. border-style:solid;
  4188. border-color:rgba(245, 154, 35, 1);
  4189. border-radius:53px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:15px;
  4197. color:#FFFFFF;
  4198. }
  4199. #u32416 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:540px;
  4203. top:336px;
  4204. width:197px;
  4205. height:30px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:15px;
  4211. color:#FFFFFF;
  4212. }
  4213. #u32416 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u32416_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. }
  4225. #u32417 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:0px;
  4231. height:0px;
  4232. }
  4233. #u32418_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:80px;
  4239. height:30px;
  4240. background:inherit;
  4241. background-color:rgba(245, 154, 35, 1);
  4242. box-sizing:border-box;
  4243. border-width:1px;
  4244. border-style:solid;
  4245. border-color:rgba(245, 154, 35, 1);
  4246. border-radius:4px;
  4247. border-top-right-radius:0px;
  4248. border-bottom-right-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:15px;
  4256. color:#FFFFFF;
  4257. }
  4258. #u32418 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:617px;
  4262. top:82px;
  4263. width:80px;
  4264. height:30px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:15px;
  4270. color:#FFFFFF;
  4271. }
  4272. #u32418 .text {
  4273. position:absolute;
  4274. align-self:center;
  4275. padding:2px 2px 2px 2px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u32418_text {
  4280. border-width:0px;
  4281. word-wrap:break-word;
  4282. text-transform:none;
  4283. }
  4284. #u32419_div {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:80px;
  4290. height:30px;
  4291. background:inherit;
  4292. background-color:rgba(245, 154, 35, 0.0980392156862745);
  4293. box-sizing:border-box;
  4294. border-width:1px;
  4295. border-style:solid;
  4296. border-color:rgba(245, 154, 35, 1);
  4297. border-radius:0px;
  4298. border-top-right-radius:0px;
  4299. border-bottom-right-radius:0px;
  4300. -moz-box-shadow:none;
  4301. -webkit-box-shadow:none;
  4302. box-shadow:none;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:15px;
  4307. color:#FFFFFF;
  4308. }
  4309. #u32419 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:697px;
  4313. top:82px;
  4314. width:80px;
  4315. height:30px;
  4316. display:flex;
  4317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4318. font-weight:400;
  4319. font-style:normal;
  4320. font-size:15px;
  4321. color:#FFFFFF;
  4322. }
  4323. #u32419 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 2px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u32419_text {
  4331. border-width:0px;
  4332. word-wrap:break-word;
  4333. text-transform:none;
  4334. }
  4335. #u32420_div {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:80px;
  4341. height:30px;
  4342. background:inherit;
  4343. background-color:rgba(245, 154, 35, 0.0980392156862745);
  4344. box-sizing:border-box;
  4345. border-width:1px;
  4346. border-style:solid;
  4347. border-color:rgba(245, 154, 35, 1);
  4348. border-radius:0px;
  4349. border-top-right-radius:0px;
  4350. border-bottom-right-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:15px;
  4358. color:#FFFFFF;
  4359. }
  4360. #u32420 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:777px;
  4364. top:82px;
  4365. width:80px;
  4366. height:30px;
  4367. display:flex;
  4368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4369. font-weight:400;
  4370. font-style:normal;
  4371. font-size:15px;
  4372. color:#FFFFFF;
  4373. }
  4374. #u32420 .text {
  4375. position:absolute;
  4376. align-self:center;
  4377. padding:2px 2px 2px 2px;
  4378. box-sizing:border-box;
  4379. width:100%;
  4380. }
  4381. #u32420_text {
  4382. border-width:0px;
  4383. word-wrap:break-word;
  4384. text-transform:none;
  4385. }
  4386. #u32421 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:0px;
  4392. height:0px;
  4393. }
  4394. #u32422_div {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:440px;
  4400. height:300px;
  4401. background:inherit;
  4402. background-color:rgba(95, 72, 47, 1);
  4403. box-sizing:border-box;
  4404. border-width:2px;
  4405. border-style:solid;
  4406. border-color:rgba(245, 154, 35, 1);
  4407. border-radius:10px;
  4408. -moz-box-shadow:none;
  4409. -webkit-box-shadow:none;
  4410. box-shadow:none;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:12px;
  4415. color:#FFFFFF;
  4416. text-align:left;
  4417. }
  4418. #u32422 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:757px;
  4422. top:140px;
  4423. width:440px;
  4424. height:300px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. color:#FFFFFF;
  4431. text-align:left;
  4432. }
  4433. #u32422 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 10px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u32422_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u32423 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:0px;
  4452. height:0px;
  4453. }
  4454. #u32424_div {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:440px;
  4460. height:40px;
  4461. background:inherit;
  4462. background-color:rgba(221, 142, 35, 1);
  4463. box-sizing:border-box;
  4464. border-width:2px;
  4465. border-style:solid;
  4466. border-color:rgba(245, 154, 35, 1);
  4467. border-radius:10px;
  4468. border-bottom-right-radius:0px;
  4469. border-bottom-left-radius:0px;
  4470. -moz-box-shadow:none;
  4471. -webkit-box-shadow:none;
  4472. box-shadow:none;
  4473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4474. font-weight:400;
  4475. font-style:normal;
  4476. font-size:12px;
  4477. color:#FFFFFF;
  4478. text-align:left;
  4479. }
  4480. #u32424 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:757px;
  4484. top:140px;
  4485. width:440px;
  4486. height:40px;
  4487. display:flex;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:12px;
  4492. color:#FFFFFF;
  4493. text-align:left;
  4494. }
  4495. #u32424 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 10px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u32424_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u32425_div {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:160px;
  4514. height:29px;
  4515. background:inherit;
  4516. background-color:rgba(245, 154, 35, 0);
  4517. border:none;
  4518. border-left:0px;
  4519. border-top:0px;
  4520. border-right:0px;
  4521. border-radius:0px;
  4522. border-bottom-right-radius:0px;
  4523. border-bottom-left-radius:0px;
  4524. -moz-box-shadow:none;
  4525. -webkit-box-shadow:none;
  4526. box-shadow:none;
  4527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. font-size:18px;
  4531. color:#FFFFFF;
  4532. text-align:left;
  4533. }
  4534. #u32425 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:777px;
  4538. top:145px;
  4539. width:160px;
  4540. height:29px;
  4541. display:flex;
  4542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4543. font-weight:400;
  4544. font-style:normal;
  4545. font-size:18px;
  4546. color:#FFFFFF;
  4547. text-align:left;
  4548. }
  4549. #u32425 .text {
  4550. position:absolute;
  4551. align-self:center;
  4552. padding:2px 2px 2px 2px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u32425_text {
  4557. border-width:0px;
  4558. white-space:nowrap;
  4559. text-transform:none;
  4560. }
  4561. #u32426_div {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:41px;
  4567. height:29px;
  4568. background:inherit;
  4569. background-color:rgba(245, 154, 35, 0);
  4570. border:none;
  4571. border-left:0px;
  4572. border-top:0px;
  4573. border-right:0px;
  4574. border-radius:0px;
  4575. border-bottom-right-radius:0px;
  4576. border-bottom-left-radius:0px;
  4577. -moz-box-shadow:none;
  4578. -webkit-box-shadow:none;
  4579. box-shadow:none;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:18px;
  4584. color:#FFFFFF;
  4585. text-align:left;
  4586. }
  4587. #u32426 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:1134px;
  4591. top:145px;
  4592. width:41px;
  4593. height:29px;
  4594. display:flex;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:18px;
  4599. color:#FFFFFF;
  4600. text-align:left;
  4601. }
  4602. #u32426 .text {
  4603. position:absolute;
  4604. align-self:center;
  4605. padding:2px 2px 2px 2px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u32426_text {
  4610. border-width:0px;
  4611. white-space:nowrap;
  4612. text-transform:none;
  4613. }
  4614. #u32427_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:180px;
  4620. height:180px;
  4621. }
  4622. #u32427 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:777px;
  4626. top:200px;
  4627. width:180px;
  4628. height:180px;
  4629. display:flex;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. }
  4634. #u32427 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u32427_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. }
  4646. #u32428_div {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:149px;
  4652. height:34px;
  4653. background:inherit;
  4654. background-color:rgba(245, 154, 35, 0);
  4655. border:none;
  4656. border-left:0px;
  4657. border-top:0px;
  4658. border-right:0px;
  4659. border-radius:0px;
  4660. border-bottom-right-radius:0px;
  4661. border-bottom-left-radius:0px;
  4662. -moz-box-shadow:none;
  4663. -webkit-box-shadow:none;
  4664. box-shadow:none;
  4665. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4666. font-weight:500;
  4667. font-style:normal;
  4668. font-size:18px;
  4669. color:#FFFFFF;
  4670. text-align:left;
  4671. line-height:30px;
  4672. }
  4673. #u32428 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:977px;
  4677. top:200px;
  4678. width:149px;
  4679. height:34px;
  4680. display:flex;
  4681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4682. font-weight:500;
  4683. font-style:normal;
  4684. font-size:18px;
  4685. color:#FFFFFF;
  4686. text-align:left;
  4687. line-height:30px;
  4688. }
  4689. #u32428 .text {
  4690. position:absolute;
  4691. align-self:flex-start;
  4692. padding:2px 2px 2px 2px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u32428_text {
  4697. border-width:0px;
  4698. white-space:nowrap;
  4699. text-transform:none;
  4700. }
  4701. #u32429_div {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:60px;
  4707. height:30px;
  4708. background:inherit;
  4709. background-color:rgba(245, 154, 35, 1);
  4710. box-sizing:border-box;
  4711. border-width:1px;
  4712. border-style:solid;
  4713. border-color:rgba(245, 154, 35, 1);
  4714. border-radius:4px;
  4715. -moz-box-shadow:none;
  4716. -webkit-box-shadow:none;
  4717. box-shadow:none;
  4718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4719. font-weight:400;
  4720. font-style:normal;
  4721. font-size:14px;
  4722. color:#FFFFFF;
  4723. }
  4724. #u32429 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:1114px;
  4728. top:387px;
  4729. width:60px;
  4730. height:30px;
  4731. display:flex;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:14px;
  4736. color:#FFFFFF;
  4737. }
  4738. #u32429 .text {
  4739. position:absolute;
  4740. align-self:center;
  4741. padding:2px 2px 2px 2px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u32429_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. }
  4750. #u32430_div {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:321px;
  4756. height:36px;
  4757. background:inherit;
  4758. background-color:rgba(245, 154, 35, 0);
  4759. border:none;
  4760. border-left:0px;
  4761. border-top:0px;
  4762. border-right:0px;
  4763. border-radius:0px;
  4764. border-bottom-right-radius:0px;
  4765. border-bottom-left-radius:0px;
  4766. -moz-box-shadow:none;
  4767. -webkit-box-shadow:none;
  4768. box-shadow:none;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:11px;
  4773. color:#D9001B;
  4774. text-align:left;
  4775. }
  4776. #u32430 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:764px;
  4780. top:401px;
  4781. width:321px;
  4782. height:36px;
  4783. display:flex;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:11px;
  4788. color:#D9001B;
  4789. text-align:left;
  4790. }
  4791. #u32430 .text {
  4792. position:absolute;
  4793. align-self:flex-start;
  4794. padding:2px 2px 2px 2px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u32430_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. }
  4803. #u32431_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:75px;
  4809. height:20px;
  4810. background:inherit;
  4811. background-color:rgba(245, 154, 35, 0);
  4812. border:none;
  4813. border-left:0px;
  4814. border-top:0px;
  4815. border-right:0px;
  4816. border-radius:0px;
  4817. border-bottom-right-radius:0px;
  4818. border-bottom-left-radius:0px;
  4819. -moz-box-shadow:none;
  4820. -webkit-box-shadow:none;
  4821. box-shadow:none;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:11px;
  4826. text-align:left;
  4827. }
  4828. #u32431 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:838px;
  4832. top:391px;
  4833. width:75px;
  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. text-align:left;
  4841. }
  4842. #u32431 .text {
  4843. position:absolute;
  4844. align-self:flex-start;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u32431_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u32432_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:174px;
  4860. height:20px;
  4861. background:inherit;
  4862. background-color:rgba(245, 154, 35, 0);
  4863. border:none;
  4864. border-left:0px;
  4865. border-top:0px;
  4866. border-right:0px;
  4867. border-radius:0px;
  4868. border-bottom-right-radius:0px;
  4869. border-bottom-left-radius:0px;
  4870. -moz-box-shadow:none;
  4871. -webkit-box-shadow:none;
  4872. box-shadow:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:11px;
  4877. color:#FFFFFF;
  4878. text-align:left;
  4879. }
  4880. #u32432 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:977px;
  4884. top:343px;
  4885. width:174px;
  4886. height:20px;
  4887. display:flex;
  4888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:11px;
  4892. color:#FFFFFF;
  4893. text-align:left;
  4894. }
  4895. #u32432 .text {
  4896. position:absolute;
  4897. align-self:flex-start;
  4898. padding:2px 2px 2px 2px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u32432_text {
  4903. border-width:0px;
  4904. white-space:nowrap;
  4905. text-transform:none;
  4906. }
  4907. #u32433 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:0px;
  4913. height:0px;
  4914. }
  4915. #u32434_div {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:202px;
  4921. height:30px;
  4922. background:inherit;
  4923. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4924. border:none;
  4925. border-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:12px;
  4933. color:rgba(255, 255, 255, 0.698039215686274);
  4934. }
  4935. #u32434 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:977px;
  4939. top:244px;
  4940. width:202px;
  4941. height:30px;
  4942. display:flex;
  4943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. color:rgba(255, 255, 255, 0.698039215686274);
  4948. }
  4949. #u32434 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 2px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u32434_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u32435_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:61px;
  4968. height:24px;
  4969. background:inherit;
  4970. background-color:rgba(245, 154, 35, 0);
  4971. border:none;
  4972. border-left:0px;
  4973. border-top:0px;
  4974. border-right:0px;
  4975. border-radius:0px;
  4976. border-bottom-right-radius:0px;
  4977. border-bottom-left-radius:0px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:14px;
  4985. color:#FFFFFF;
  4986. text-align:left;
  4987. }
  4988. #u32435 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:987px;
  4992. top:247px;
  4993. width:61px;
  4994. height:24px;
  4995. display:flex;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:14px;
  5000. color:#FFFFFF;
  5001. text-align:left;
  5002. }
  5003. #u32435 .text {
  5004. position:absolute;
  5005. align-self:flex-start;
  5006. padding:2px 2px 2px 2px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u32435_text {
  5011. border-width:0px;
  5012. white-space:nowrap;
  5013. text-transform:none;
  5014. }
  5015. #u32436_div {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:61px;
  5021. height:24px;
  5022. background:inherit;
  5023. background-color:rgba(245, 154, 35, 0);
  5024. border:none;
  5025. border-left:0px;
  5026. border-top:0px;
  5027. border-right:0px;
  5028. border-radius:0px;
  5029. border-bottom-right-radius:0px;
  5030. border-bottom-left-radius:0px;
  5031. -moz-box-shadow:none;
  5032. -webkit-box-shadow:none;
  5033. box-shadow:none;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:14px;
  5038. color:#FFFFFF;
  5039. text-align:left;
  5040. }
  5041. #u32436 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:1057px;
  5045. top:247px;
  5046. width:61px;
  5047. height:24px;
  5048. display:flex;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:14px;
  5053. color:#FFFFFF;
  5054. text-align:left;
  5055. }
  5056. #u32436 .text {
  5057. position:absolute;
  5058. align-self:flex-start;
  5059. padding:2px 2px 2px 2px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u32436_text {
  5064. border-width:0px;
  5065. white-space:nowrap;
  5066. text-transform:none;
  5067. }
  5068. #u32437 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:0px;
  5074. height:0px;
  5075. }
  5076. #u32438_div {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:202px;
  5082. height:30px;
  5083. background:inherit;
  5084. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5085. border:none;
  5086. border-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:12px;
  5094. color:rgba(255, 255, 255, 0.698039215686274);
  5095. }
  5096. #u32438 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:977px;
  5100. top:275px;
  5101. width:202px;
  5102. height:30px;
  5103. display:flex;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:12px;
  5108. color:rgba(255, 255, 255, 0.698039215686274);
  5109. }
  5110. #u32438 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 2px 2px 2px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u32438_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. visibility:hidden;
  5122. }
  5123. #u32439_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:61px;
  5129. height:24px;
  5130. background:inherit;
  5131. background-color:rgba(245, 154, 35, 0);
  5132. border:none;
  5133. border-left:0px;
  5134. border-top:0px;
  5135. border-right:0px;
  5136. border-radius:0px;
  5137. border-bottom-right-radius:0px;
  5138. border-bottom-left-radius:0px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:14px;
  5146. color:#FFFFFF;
  5147. text-align:left;
  5148. }
  5149. #u32439 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:987px;
  5153. top:278px;
  5154. width:61px;
  5155. height:24px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:14px;
  5161. color:#FFFFFF;
  5162. text-align:left;
  5163. }
  5164. #u32439 .text {
  5165. position:absolute;
  5166. align-self:flex-start;
  5167. padding:2px 2px 2px 2px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u32439_text {
  5172. border-width:0px;
  5173. white-space:nowrap;
  5174. text-transform:none;
  5175. }
  5176. #u32440_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:103px;
  5182. height:24px;
  5183. background:inherit;
  5184. background-color:rgba(245, 154, 35, 0);
  5185. border:none;
  5186. border-left:0px;
  5187. border-top:0px;
  5188. border-right:0px;
  5189. border-radius:0px;
  5190. border-bottom-right-radius:0px;
  5191. border-bottom-left-radius:0px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:14px;
  5199. color:#FFFFFF;
  5200. text-align:left;
  5201. }
  5202. #u32440 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:1060px;
  5206. top:278px;
  5207. width:103px;
  5208. height:24px;
  5209. display:flex;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:14px;
  5214. color:#FFFFFF;
  5215. text-align:left;
  5216. }
  5217. #u32440 .text {
  5218. position:absolute;
  5219. align-self:flex-start;
  5220. padding:2px 2px 2px 2px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u32440_text {
  5225. border-width:0px;
  5226. white-space:nowrap;
  5227. text-transform:none;
  5228. }
  5229. #u32441 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:0px;
  5235. height:0px;
  5236. }
  5237. #u32442_div {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:202px;
  5243. height:30px;
  5244. background:inherit;
  5245. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5246. border:none;
  5247. border-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:12px;
  5255. color:rgba(255, 255, 255, 0.698039215686274);
  5256. }
  5257. #u32442 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:977px;
  5261. top:306px;
  5262. width:202px;
  5263. height:30px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:rgba(255, 255, 255, 0.698039215686274);
  5270. }
  5271. #u32442 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 2px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u32442_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. visibility:hidden;
  5283. }
  5284. #u32443_div {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:61px;
  5290. height:24px;
  5291. background:inherit;
  5292. background-color:rgba(245, 154, 35, 0);
  5293. border:none;
  5294. border-left:0px;
  5295. border-top:0px;
  5296. border-right:0px;
  5297. border-radius:0px;
  5298. border-bottom-right-radius:0px;
  5299. border-bottom-left-radius:0px;
  5300. -moz-box-shadow:none;
  5301. -webkit-box-shadow:none;
  5302. box-shadow:none;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:14px;
  5307. color:#FFFFFF;
  5308. text-align:left;
  5309. }
  5310. #u32443 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:987px;
  5314. top:309px;
  5315. width:61px;
  5316. height:24px;
  5317. display:flex;
  5318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:14px;
  5322. color:#FFFFFF;
  5323. text-align:left;
  5324. }
  5325. #u32443 .text {
  5326. position:absolute;
  5327. align-self:flex-start;
  5328. padding:2px 2px 2px 2px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u32443_text {
  5333. border-width:0px;
  5334. white-space:nowrap;
  5335. text-transform:none;
  5336. }
  5337. #u32444_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:95px;
  5343. height:24px;
  5344. background:inherit;
  5345. background-color:rgba(245, 154, 35, 0);
  5346. border:none;
  5347. border-left:0px;
  5348. border-top:0px;
  5349. border-right:0px;
  5350. border-radius:0px;
  5351. border-bottom-right-radius:0px;
  5352. border-bottom-left-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:14px;
  5360. color:#FFFFFF;
  5361. text-align:left;
  5362. }
  5363. #u32444 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1058px;
  5367. top:309px;
  5368. width:95px;
  5369. height:24px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:14px;
  5375. color:#FFFFFF;
  5376. text-align:left;
  5377. }
  5378. #u32444 .text {
  5379. position:absolute;
  5380. align-self:flex-start;
  5381. padding:2px 2px 2px 2px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u32444_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u32445 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:0px;
  5396. height:0px;
  5397. }
  5398. #u32446_div {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:440px;
  5404. height:300px;
  5405. background:inherit;
  5406. background-color:rgba(95, 72, 47, 1);
  5407. box-sizing:border-box;
  5408. border-width:2px;
  5409. border-style:solid;
  5410. border-color:rgba(245, 154, 35, 1);
  5411. border-radius:10px;
  5412. -moz-box-shadow:none;
  5413. -webkit-box-shadow:none;
  5414. box-shadow:none;
  5415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:12px;
  5419. color:#FFFFFF;
  5420. text-align:left;
  5421. }
  5422. #u32446 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:757px;
  5426. top:474px;
  5427. width:440px;
  5428. height:300px;
  5429. display:flex;
  5430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5431. font-weight:400;
  5432. font-style:normal;
  5433. font-size:12px;
  5434. color:#FFFFFF;
  5435. text-align:left;
  5436. }
  5437. #u32446 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:2px 2px 2px 10px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u32446_text {
  5445. border-width:0px;
  5446. word-wrap:break-word;
  5447. text-transform:none;
  5448. visibility:hidden;
  5449. }
  5450. #u32447 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:0px;
  5456. height:0px;
  5457. }
  5458. #u32448_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:440px;
  5464. height:40px;
  5465. background:inherit;
  5466. background-color:rgba(221, 142, 35, 1);
  5467. box-sizing:border-box;
  5468. border-width:2px;
  5469. border-style:solid;
  5470. border-color:rgba(245, 154, 35, 1);
  5471. border-radius:10px;
  5472. border-bottom-right-radius:0px;
  5473. border-bottom-left-radius:0px;
  5474. -moz-box-shadow:none;
  5475. -webkit-box-shadow:none;
  5476. box-shadow:none;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:12px;
  5481. color:#FFFFFF;
  5482. text-align:left;
  5483. }
  5484. #u32448 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:757px;
  5488. top:474px;
  5489. width:440px;
  5490. height:40px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:12px;
  5496. color:#FFFFFF;
  5497. text-align:left;
  5498. }
  5499. #u32448 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:2px 2px 2px 10px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u32448_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. visibility:hidden;
  5511. }
  5512. #u32449_div {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:160px;
  5518. height:29px;
  5519. background:inherit;
  5520. background-color:rgba(245, 154, 35, 0);
  5521. border:none;
  5522. border-left:0px;
  5523. border-top:0px;
  5524. border-right:0px;
  5525. border-radius:0px;
  5526. border-bottom-right-radius:0px;
  5527. border-bottom-left-radius:0px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:18px;
  5535. color:#FFFFFF;
  5536. text-align:left;
  5537. }
  5538. #u32449 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:777px;
  5542. top:479px;
  5543. width:160px;
  5544. height:29px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:18px;
  5550. color:#FFFFFF;
  5551. text-align:left;
  5552. }
  5553. #u32449 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:2px 2px 2px 2px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u32449_text {
  5561. border-width:0px;
  5562. white-space:nowrap;
  5563. text-transform:none;
  5564. }
  5565. #u32450_div {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:41px;
  5571. height:29px;
  5572. background:inherit;
  5573. background-color:rgba(245, 154, 35, 0);
  5574. border:none;
  5575. border-left:0px;
  5576. border-top:0px;
  5577. border-right:0px;
  5578. border-radius:0px;
  5579. border-bottom-right-radius:0px;
  5580. border-bottom-left-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:18px;
  5588. color:#FFFFFF;
  5589. text-align:left;
  5590. }
  5591. #u32450 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:1134px;
  5595. top:479px;
  5596. width:41px;
  5597. height:29px;
  5598. display:flex;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:18px;
  5603. color:#FFFFFF;
  5604. text-align:left;
  5605. }
  5606. #u32450 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:2px 2px 2px 2px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u32450_text {
  5614. border-width:0px;
  5615. white-space:nowrap;
  5616. text-transform:none;
  5617. }
  5618. #u32451_img {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:180px;
  5624. height:180px;
  5625. }
  5626. #u32451 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:777px;
  5630. top:534px;
  5631. width:180px;
  5632. height:180px;
  5633. display:flex;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. }
  5638. #u32451 .text {
  5639. position:absolute;
  5640. align-self:center;
  5641. padding:2px 2px 2px 2px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u32451_text {
  5646. border-width:0px;
  5647. word-wrap:break-word;
  5648. text-transform:none;
  5649. visibility:hidden;
  5650. }
  5651. #u32452_div {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:149px;
  5657. height:34px;
  5658. background:inherit;
  5659. background-color:rgba(245, 154, 35, 0);
  5660. border:none;
  5661. border-left:0px;
  5662. border-top:0px;
  5663. border-right:0px;
  5664. border-radius:0px;
  5665. border-bottom-right-radius:0px;
  5666. border-bottom-left-radius:0px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5671. font-weight:500;
  5672. font-style:normal;
  5673. font-size:18px;
  5674. color:#FFFFFF;
  5675. text-align:left;
  5676. line-height:30px;
  5677. }
  5678. #u32452 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:977px;
  5682. top:534px;
  5683. width:149px;
  5684. height:34px;
  5685. display:flex;
  5686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5687. font-weight:500;
  5688. font-style:normal;
  5689. font-size:18px;
  5690. color:#FFFFFF;
  5691. text-align:left;
  5692. line-height:30px;
  5693. }
  5694. #u32452 .text {
  5695. position:absolute;
  5696. align-self:flex-start;
  5697. padding:2px 2px 2px 2px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u32452_text {
  5702. border-width:0px;
  5703. white-space:nowrap;
  5704. text-transform:none;
  5705. }
  5706. #u32453_div {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:321px;
  5712. height:20px;
  5713. background:inherit;
  5714. background-color:rgba(245, 154, 35, 0);
  5715. border:none;
  5716. border-left:0px;
  5717. border-top:0px;
  5718. border-right:0px;
  5719. border-radius:0px;
  5720. border-bottom-right-radius:0px;
  5721. border-bottom-left-radius:0px;
  5722. -moz-box-shadow:none;
  5723. -webkit-box-shadow:none;
  5724. box-shadow:none;
  5725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:11px;
  5729. color:#D9001B;
  5730. text-align:left;
  5731. }
  5732. #u32453 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:774px;
  5736. top:738px;
  5737. width:321px;
  5738. height:20px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:11px;
  5744. color:#D9001B;
  5745. text-align:left;
  5746. }
  5747. #u32453 .text {
  5748. position:absolute;
  5749. align-self:flex-start;
  5750. padding:2px 2px 2px 2px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u32453_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. }
  5759. #u32454_div {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:75px;
  5765. height:20px;
  5766. background:inherit;
  5767. background-color:rgba(245, 154, 35, 0);
  5768. border:none;
  5769. border-left:0px;
  5770. border-top:0px;
  5771. border-right:0px;
  5772. border-radius:0px;
  5773. border-bottom-right-radius:0px;
  5774. border-bottom-left-radius:0px;
  5775. -moz-box-shadow:none;
  5776. -webkit-box-shadow:none;
  5777. box-shadow:none;
  5778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5779. font-weight:400;
  5780. font-style:normal;
  5781. font-size:11px;
  5782. text-align:left;
  5783. }
  5784. #u32454 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:838px;
  5788. top:726px;
  5789. width:75px;
  5790. height:20px;
  5791. display:flex;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:11px;
  5796. text-align:left;
  5797. }
  5798. #u32454 .text {
  5799. position:absolute;
  5800. align-self:flex-start;
  5801. padding:2px 2px 2px 2px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u32454_text {
  5806. border-width:0px;
  5807. white-space:nowrap;
  5808. text-transform:none;
  5809. }
  5810. #u32455_img {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:27px;
  5816. height:27px;
  5817. }
  5818. #u32455 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:854px;
  5822. top:611px;
  5823. width:27px;
  5824. height:27px;
  5825. display:flex;
  5826. }
  5827. #u32455 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:2px 2px 2px 2px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u32455_text {
  5835. border-width:0px;
  5836. word-wrap:break-word;
  5837. text-transform:none;
  5838. visibility:hidden;
  5839. }
  5840. #u32456_div {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:174px;
  5846. height:20px;
  5847. background:inherit;
  5848. background-color:rgba(245, 154, 35, 0);
  5849. border:none;
  5850. border-left:0px;
  5851. border-top:0px;
  5852. border-right:0px;
  5853. border-radius:0px;
  5854. border-bottom-right-radius:0px;
  5855. border-bottom-left-radius:0px;
  5856. -moz-box-shadow:none;
  5857. -webkit-box-shadow:none;
  5858. box-shadow:none;
  5859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:11px;
  5863. color:#FFFFFF;
  5864. text-align:left;
  5865. }
  5866. #u32456 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:977px;
  5870. top:677px;
  5871. width:174px;
  5872. height:20px;
  5873. display:flex;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:11px;
  5878. color:#FFFFFF;
  5879. text-align:left;
  5880. }
  5881. #u32456 .text {
  5882. position:absolute;
  5883. align-self:flex-start;
  5884. padding:2px 2px 2px 2px;
  5885. box-sizing:border-box;
  5886. width:100%;
  5887. }
  5888. #u32456_text {
  5889. border-width:0px;
  5890. white-space:nowrap;
  5891. text-transform:none;
  5892. }
  5893. #u32457 {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:0px;
  5899. height:0px;
  5900. }
  5901. #u32458_div {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:202px;
  5907. height:30px;
  5908. background:inherit;
  5909. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5910. border:none;
  5911. border-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:12px;
  5919. color:rgba(255, 255, 255, 0.698039215686274);
  5920. }
  5921. #u32458 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:977px;
  5925. top:578px;
  5926. width:202px;
  5927. height:30px;
  5928. display:flex;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. color:rgba(255, 255, 255, 0.698039215686274);
  5934. }
  5935. #u32458 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:2px 2px 2px 2px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u32458_text {
  5943. border-width:0px;
  5944. word-wrap:break-word;
  5945. text-transform:none;
  5946. visibility:hidden;
  5947. }
  5948. #u32459_div {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:61px;
  5954. height:24px;
  5955. background:inherit;
  5956. background-color:rgba(245, 154, 35, 0);
  5957. border:none;
  5958. border-left:0px;
  5959. border-top:0px;
  5960. border-right:0px;
  5961. border-radius:0px;
  5962. border-bottom-right-radius:0px;
  5963. border-bottom-left-radius:0px;
  5964. -moz-box-shadow:none;
  5965. -webkit-box-shadow:none;
  5966. box-shadow:none;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:14px;
  5971. color:#FFFFFF;
  5972. text-align:left;
  5973. }
  5974. #u32459 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:987px;
  5978. top:581px;
  5979. width:61px;
  5980. height:24px;
  5981. display:flex;
  5982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:14px;
  5986. color:#FFFFFF;
  5987. text-align:left;
  5988. }
  5989. #u32459 .text {
  5990. position:absolute;
  5991. align-self:flex-start;
  5992. padding:2px 2px 2px 2px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u32459_text {
  5997. border-width:0px;
  5998. white-space:nowrap;
  5999. text-transform:none;
  6000. }
  6001. #u32460_div {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:61px;
  6007. height:24px;
  6008. background:inherit;
  6009. background-color:rgba(245, 154, 35, 0);
  6010. border:none;
  6011. border-left:0px;
  6012. border-top:0px;
  6013. border-right:0px;
  6014. border-radius:0px;
  6015. border-bottom-right-radius:0px;
  6016. border-bottom-left-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:14px;
  6024. color:#FFFFFF;
  6025. text-align:left;
  6026. }
  6027. #u32460 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:1057px;
  6031. top:581px;
  6032. width:61px;
  6033. height:24px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:14px;
  6039. color:#FFFFFF;
  6040. text-align:left;
  6041. }
  6042. #u32460 .text {
  6043. position:absolute;
  6044. align-self:flex-start;
  6045. padding:2px 2px 2px 2px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u32460_text {
  6050. border-width:0px;
  6051. white-space:nowrap;
  6052. text-transform:none;
  6053. }
  6054. #u32461 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:0px;
  6060. height:0px;
  6061. }
  6062. #u32462_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:202px;
  6068. height:30px;
  6069. background:inherit;
  6070. background-color:rgba(255, 255, 255, 0.0980392156862745);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:12px;
  6080. color:rgba(255, 255, 255, 0.698039215686274);
  6081. }
  6082. #u32462 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:977px;
  6086. top:609px;
  6087. width:202px;
  6088. height:30px;
  6089. display:flex;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:12px;
  6094. color:rgba(255, 255, 255, 0.698039215686274);
  6095. }
  6096. #u32462 .text {
  6097. position:absolute;
  6098. align-self:center;
  6099. padding:2px 2px 2px 2px;
  6100. box-sizing:border-box;
  6101. width:100%;
  6102. }
  6103. #u32462_text {
  6104. border-width:0px;
  6105. word-wrap:break-word;
  6106. text-transform:none;
  6107. visibility:hidden;
  6108. }
  6109. #u32463_div {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:61px;
  6115. height:24px;
  6116. background:inherit;
  6117. background-color:rgba(245, 154, 35, 0);
  6118. border:none;
  6119. border-left:0px;
  6120. border-top:0px;
  6121. border-right:0px;
  6122. border-radius:0px;
  6123. border-bottom-right-radius:0px;
  6124. border-bottom-left-radius:0px;
  6125. -moz-box-shadow:none;
  6126. -webkit-box-shadow:none;
  6127. box-shadow:none;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. font-size:14px;
  6132. color:#FFFFFF;
  6133. text-align:left;
  6134. }
  6135. #u32463 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:987px;
  6139. top:612px;
  6140. width:61px;
  6141. height:24px;
  6142. display:flex;
  6143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:14px;
  6147. color:#FFFFFF;
  6148. text-align:left;
  6149. }
  6150. #u32463 .text {
  6151. position:absolute;
  6152. align-self:flex-start;
  6153. padding:2px 2px 2px 2px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u32463_text {
  6158. border-width:0px;
  6159. white-space:nowrap;
  6160. text-transform:none;
  6161. }
  6162. #u32464_div {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:46px;
  6168. height:24px;
  6169. background:inherit;
  6170. background-color:rgba(245, 154, 35, 0);
  6171. border:none;
  6172. border-left:0px;
  6173. border-top:0px;
  6174. border-right:0px;
  6175. border-radius:0px;
  6176. border-bottom-right-radius:0px;
  6177. border-bottom-left-radius:0px;
  6178. -moz-box-shadow:none;
  6179. -webkit-box-shadow:none;
  6180. box-shadow:none;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:14px;
  6185. color:#FFFFFF;
  6186. text-align:left;
  6187. }
  6188. #u32464 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:1060px;
  6192. top:612px;
  6193. width:46px;
  6194. height:24px;
  6195. display:flex;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:14px;
  6200. color:#FFFFFF;
  6201. text-align:left;
  6202. }
  6203. #u32464 .text {
  6204. position:absolute;
  6205. align-self:flex-start;
  6206. padding:2px 2px 2px 2px;
  6207. box-sizing:border-box;
  6208. width:100%;
  6209. }
  6210. #u32464_text {
  6211. border-width:0px;
  6212. white-space:nowrap;
  6213. text-transform:none;
  6214. }
  6215. #u32465 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:0px;
  6221. height:0px;
  6222. }
  6223. #u32466_div {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:202px;
  6229. height:30px;
  6230. background:inherit;
  6231. background-color:rgba(255, 255, 255, 0.0980392156862745);
  6232. border:none;
  6233. border-radius:0px;
  6234. -moz-box-shadow:none;
  6235. -webkit-box-shadow:none;
  6236. box-shadow:none;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:12px;
  6241. color:rgba(255, 255, 255, 0.698039215686274);
  6242. }
  6243. #u32466 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:977px;
  6247. top:640px;
  6248. width:202px;
  6249. height:30px;
  6250. display:flex;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:12px;
  6255. color:rgba(255, 255, 255, 0.698039215686274);
  6256. }
  6257. #u32466 .text {
  6258. position:absolute;
  6259. align-self:center;
  6260. padding:2px 2px 2px 2px;
  6261. box-sizing:border-box;
  6262. width:100%;
  6263. }
  6264. #u32466_text {
  6265. border-width:0px;
  6266. word-wrap:break-word;
  6267. text-transform:none;
  6268. visibility:hidden;
  6269. }
  6270. #u32467_div {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:61px;
  6276. height:24px;
  6277. background:inherit;
  6278. background-color:rgba(245, 154, 35, 0);
  6279. border:none;
  6280. border-left:0px;
  6281. border-top:0px;
  6282. border-right:0px;
  6283. border-radius:0px;
  6284. border-bottom-right-radius:0px;
  6285. border-bottom-left-radius:0px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:14px;
  6293. color:#FFFFFF;
  6294. text-align:left;
  6295. }
  6296. #u32467 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:987px;
  6300. top:643px;
  6301. width:61px;
  6302. height:24px;
  6303. display:flex;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. color:#FFFFFF;
  6309. text-align:left;
  6310. }
  6311. #u32467 .text {
  6312. position:absolute;
  6313. align-self:flex-start;
  6314. padding:2px 2px 2px 2px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u32467_text {
  6319. border-width:0px;
  6320. white-space:nowrap;
  6321. text-transform:none;
  6322. }
  6323. #u32468_div {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:95px;
  6329. height:24px;
  6330. background:inherit;
  6331. background-color:rgba(245, 154, 35, 0);
  6332. border:none;
  6333. border-left:0px;
  6334. border-top:0px;
  6335. border-right:0px;
  6336. border-radius:0px;
  6337. border-bottom-right-radius:0px;
  6338. border-bottom-left-radius:0px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. color:#FFFFFF;
  6347. text-align:left;
  6348. }
  6349. #u32468 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:1058px;
  6353. top:643px;
  6354. width:95px;
  6355. height:24px;
  6356. display:flex;
  6357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. font-size:14px;
  6361. color:#FFFFFF;
  6362. text-align:left;
  6363. }
  6364. #u32468 .text {
  6365. position:absolute;
  6366. align-self:flex-start;
  6367. padding:2px 2px 2px 2px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u32468_text {
  6372. border-width:0px;
  6373. white-space:nowrap;
  6374. text-transform:none;
  6375. }
  6376. #u32469_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:60px;
  6382. height:30px;
  6383. background:inherit;
  6384. background-color:rgba(245, 154, 35, 1);
  6385. box-sizing:border-box;
  6386. border-width:1px;
  6387. border-style:solid;
  6388. border-color:rgba(245, 154, 35, 1);
  6389. border-radius:4px;
  6390. -moz-box-shadow:none;
  6391. -webkit-box-shadow:none;
  6392. box-shadow:none;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:14px;
  6397. color:#FFFFFF;
  6398. }
  6399. #u32469 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:1116px;
  6403. top:724px;
  6404. width:60px;
  6405. height:30px;
  6406. display:flex;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:14px;
  6411. color:#FFFFFF;
  6412. }
  6413. #u32469 .text {
  6414. position:absolute;
  6415. align-self:center;
  6416. padding:2px 2px 2px 2px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u32469_text {
  6421. border-width:0px;
  6422. word-wrap:break-word;
  6423. text-transform:none;
  6424. }
  6425. #u32470 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:0px;
  6431. height:0px;
  6432. }
  6433. #u32471_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:440px;
  6439. height:300px;
  6440. background:inherit;
  6441. background-color:rgba(95, 72, 47, 1);
  6442. box-sizing:border-box;
  6443. border-width:2px;
  6444. border-style:solid;
  6445. border-color:rgba(245, 154, 35, 1);
  6446. border-radius:10px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:12px;
  6454. color:#FFFFFF;
  6455. text-align:left;
  6456. }
  6457. #u32471 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:757px;
  6461. top:813px;
  6462. width:440px;
  6463. height:300px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:12px;
  6469. color:#FFFFFF;
  6470. text-align:left;
  6471. }
  6472. #u32471 .text {
  6473. position:absolute;
  6474. align-self:center;
  6475. padding:2px 2px 2px 10px;
  6476. box-sizing:border-box;
  6477. width:100%;
  6478. }
  6479. #u32471_text {
  6480. border-width:0px;
  6481. word-wrap:break-word;
  6482. text-transform:none;
  6483. visibility:hidden;
  6484. }
  6485. #u32472 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:0px;
  6491. height:0px;
  6492. }
  6493. #u32473_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:440px;
  6499. height:40px;
  6500. background:inherit;
  6501. background-color:rgba(221, 142, 35, 1);
  6502. box-sizing:border-box;
  6503. border-width:2px;
  6504. border-style:solid;
  6505. border-color:rgba(245, 154, 35, 1);
  6506. border-radius:10px;
  6507. border-bottom-right-radius:0px;
  6508. border-bottom-left-radius:0px;
  6509. -moz-box-shadow:none;
  6510. -webkit-box-shadow:none;
  6511. box-shadow:none;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:12px;
  6516. color:#FFFFFF;
  6517. text-align:left;
  6518. }
  6519. #u32473 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:757px;
  6523. top:813px;
  6524. width:440px;
  6525. height:40px;
  6526. display:flex;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:12px;
  6531. color:#FFFFFF;
  6532. text-align:left;
  6533. }
  6534. #u32473 .text {
  6535. position:absolute;
  6536. align-self:center;
  6537. padding:2px 2px 2px 10px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u32473_text {
  6542. border-width:0px;
  6543. word-wrap:break-word;
  6544. text-transform:none;
  6545. visibility:hidden;
  6546. }
  6547. #u32474_div {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:160px;
  6553. height:29px;
  6554. background:inherit;
  6555. background-color:rgba(245, 154, 35, 0);
  6556. border:none;
  6557. border-left:0px;
  6558. border-top:0px;
  6559. border-right:0px;
  6560. border-radius:0px;
  6561. border-bottom-right-radius:0px;
  6562. border-bottom-left-radius:0px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:18px;
  6570. color:#FFFFFF;
  6571. text-align:left;
  6572. }
  6573. #u32474 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:777px;
  6577. top:818px;
  6578. width:160px;
  6579. height:29px;
  6580. display:flex;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:18px;
  6585. color:#FFFFFF;
  6586. text-align:left;
  6587. }
  6588. #u32474 .text {
  6589. position:absolute;
  6590. align-self:center;
  6591. padding:2px 2px 2px 2px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u32474_text {
  6596. border-width:0px;
  6597. white-space:nowrap;
  6598. text-transform:none;
  6599. }
  6600. #u32475_div {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:41px;
  6606. height:29px;
  6607. background:inherit;
  6608. background-color:rgba(245, 154, 35, 0);
  6609. border:none;
  6610. border-left:0px;
  6611. border-top:0px;
  6612. border-right:0px;
  6613. border-radius:0px;
  6614. border-bottom-right-radius:0px;
  6615. border-bottom-left-radius:0px;
  6616. -moz-box-shadow:none;
  6617. -webkit-box-shadow:none;
  6618. box-shadow:none;
  6619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6620. font-weight:400;
  6621. font-style:normal;
  6622. font-size:18px;
  6623. color:#FFFFFF;
  6624. text-align:left;
  6625. }
  6626. #u32475 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:1134px;
  6630. top:818px;
  6631. width:41px;
  6632. height:29px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:18px;
  6638. color:#FFFFFF;
  6639. text-align:left;
  6640. }
  6641. #u32475 .text {
  6642. position:absolute;
  6643. align-self:center;
  6644. padding:2px 2px 2px 2px;
  6645. box-sizing:border-box;
  6646. width:100%;
  6647. }
  6648. #u32475_text {
  6649. border-width:0px;
  6650. white-space:nowrap;
  6651. text-transform:none;
  6652. }
  6653. #u32476_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:180px;
  6659. height:180px;
  6660. }
  6661. #u32476 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:777px;
  6665. top:873px;
  6666. width:180px;
  6667. height:180px;
  6668. display:flex;
  6669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. }
  6673. #u32476 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 2px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u32476_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. }
  6685. #u32477_div {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:149px;
  6691. height:34px;
  6692. background:inherit;
  6693. background-color:rgba(245, 154, 35, 0);
  6694. border:none;
  6695. border-left:0px;
  6696. border-top:0px;
  6697. border-right:0px;
  6698. border-radius:0px;
  6699. border-bottom-right-radius:0px;
  6700. border-bottom-left-radius:0px;
  6701. -moz-box-shadow:none;
  6702. -webkit-box-shadow:none;
  6703. box-shadow:none;
  6704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6705. font-weight:500;
  6706. font-style:normal;
  6707. font-size:18px;
  6708. color:#FFFFFF;
  6709. text-align:left;
  6710. line-height:30px;
  6711. }
  6712. #u32477 {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:977px;
  6716. top:873px;
  6717. width:149px;
  6718. height:34px;
  6719. display:flex;
  6720. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6721. font-weight:500;
  6722. font-style:normal;
  6723. font-size:18px;
  6724. color:#FFFFFF;
  6725. text-align:left;
  6726. line-height:30px;
  6727. }
  6728. #u32477 .text {
  6729. position:absolute;
  6730. align-self:flex-start;
  6731. padding:2px 2px 2px 2px;
  6732. box-sizing:border-box;
  6733. width:100%;
  6734. }
  6735. #u32477_text {
  6736. border-width:0px;
  6737. white-space:nowrap;
  6738. text-transform:none;
  6739. }
  6740. #u32478_div {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:27px;
  6746. height:20px;
  6747. background:inherit;
  6748. background-color:rgba(245, 154, 35, 0);
  6749. border:none;
  6750. border-left:0px;
  6751. border-top:0px;
  6752. border-right:0px;
  6753. border-radius:0px;
  6754. border-bottom-right-radius:0px;
  6755. border-bottom-left-radius:0px;
  6756. -moz-box-shadow:none;
  6757. -webkit-box-shadow:none;
  6758. box-shadow:none;
  6759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6760. font-weight:400;
  6761. font-style:normal;
  6762. font-size:11px;
  6763. color:#FFFFFF;
  6764. text-align:left;
  6765. }
  6766. #u32478 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:978px;
  6770. top:906px;
  6771. width:27px;
  6772. height:20px;
  6773. display:flex;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:11px;
  6778. color:#FFFFFF;
  6779. text-align:left;
  6780. }
  6781. #u32478 .text {
  6782. position:absolute;
  6783. align-self:flex-start;
  6784. padding:2px 2px 2px 2px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u32478_text {
  6789. border-width:0px;
  6790. white-space:nowrap;
  6791. text-transform:none;
  6792. }
  6793. #u32479_div {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:71px;
  6799. height:20px;
  6800. background:inherit;
  6801. background-color:rgba(245, 154, 35, 0);
  6802. border:none;
  6803. border-left:0px;
  6804. border-top:0px;
  6805. border-right:0px;
  6806. border-radius:0px;
  6807. border-bottom-right-radius:0px;
  6808. border-bottom-left-radius:0px;
  6809. -moz-box-shadow:none;
  6810. -webkit-box-shadow:none;
  6811. box-shadow:none;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:11px;
  6816. color:#FFFFFF;
  6817. text-align:left;
  6818. }
  6819. #u32479 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:1017px;
  6823. top:906px;
  6824. width:71px;
  6825. height:20px;
  6826. display:flex;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:11px;
  6831. color:#FFFFFF;
  6832. text-align:left;
  6833. }
  6834. #u32479 .text {
  6835. position:absolute;
  6836. align-self:flex-start;
  6837. padding:2px 2px 2px 2px;
  6838. box-sizing:border-box;
  6839. width:100%;
  6840. }
  6841. #u32479_text {
  6842. border-width:0px;
  6843. white-space:nowrap;
  6844. text-transform:none;
  6845. }
  6846. #u32480_div {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:0px;
  6850. top:0px;
  6851. width:174px;
  6852. height:20px;
  6853. background:inherit;
  6854. background-color:rgba(245, 154, 35, 0);
  6855. border:none;
  6856. border-left:0px;
  6857. border-top:0px;
  6858. border-right:0px;
  6859. border-radius:0px;
  6860. border-bottom-right-radius:0px;
  6861. border-bottom-left-radius:0px;
  6862. -moz-box-shadow:none;
  6863. -webkit-box-shadow:none;
  6864. box-shadow:none;
  6865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6866. font-weight:400;
  6867. font-style:normal;
  6868. font-size:11px;
  6869. color:#FFFFFF;
  6870. text-align:left;
  6871. }
  6872. #u32480 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:978px;
  6876. top:1032px;
  6877. width:174px;
  6878. height:20px;
  6879. display:flex;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:11px;
  6884. color:#FFFFFF;
  6885. text-align:left;
  6886. }
  6887. #u32480 .text {
  6888. position:absolute;
  6889. align-self:flex-start;
  6890. padding:2px 2px 2px 2px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u32480_text {
  6895. border-width:0px;
  6896. white-space:nowrap;
  6897. text-transform:none;
  6898. }
  6899. #u32481 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:0px;
  6905. height:0px;
  6906. }
  6907. #u32482_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:202px;
  6913. height:30px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 0.0980392156862745);
  6916. border:none;
  6917. border-radius:0px;
  6918. -moz-box-shadow:none;
  6919. -webkit-box-shadow:none;
  6920. box-shadow:none;
  6921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6922. font-weight:400;
  6923. font-style:normal;
  6924. font-size:12px;
  6925. color:rgba(255, 255, 255, 0.698039215686274);
  6926. }
  6927. #u32482 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:978px;
  6931. top:933px;
  6932. width:202px;
  6933. height:30px;
  6934. display:flex;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:12px;
  6939. color:rgba(255, 255, 255, 0.698039215686274);
  6940. }
  6941. #u32482 .text {
  6942. position:absolute;
  6943. align-self:center;
  6944. padding:2px 2px 2px 2px;
  6945. box-sizing:border-box;
  6946. width:100%;
  6947. }
  6948. #u32482_text {
  6949. border-width:0px;
  6950. word-wrap:break-word;
  6951. text-transform:none;
  6952. visibility:hidden;
  6953. }
  6954. #u32483_div {
  6955. border-width:0px;
  6956. position:absolute;
  6957. left:0px;
  6958. top:0px;
  6959. width:67px;
  6960. height:24px;
  6961. background:inherit;
  6962. background-color:rgba(245, 154, 35, 0);
  6963. border:none;
  6964. border-left:0px;
  6965. border-top:0px;
  6966. border-right:0px;
  6967. border-radius:0px;
  6968. border-bottom-right-radius:0px;
  6969. border-bottom-left-radius:0px;
  6970. -moz-box-shadow:none;
  6971. -webkit-box-shadow:none;
  6972. box-shadow:none;
  6973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6974. font-weight:400;
  6975. font-style:normal;
  6976. font-size:14px;
  6977. color:#FFFFFF;
  6978. text-align:left;
  6979. }
  6980. #u32483 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:988px;
  6984. top:936px;
  6985. width:67px;
  6986. height:24px;
  6987. display:flex;
  6988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. font-size:14px;
  6992. color:#FFFFFF;
  6993. text-align:left;
  6994. }
  6995. #u32483 .text {
  6996. position:absolute;
  6997. align-self:flex-start;
  6998. padding:2px 2px 2px 2px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u32483_text {
  7003. border-width:0px;
  7004. white-space:nowrap;
  7005. text-transform:none;
  7006. }
  7007. #u32484_div {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:50px;
  7013. height:24px;
  7014. background:inherit;
  7015. background-color:rgba(245, 154, 35, 0);
  7016. border:none;
  7017. border-left:0px;
  7018. border-top:0px;
  7019. border-right:0px;
  7020. border-radius:0px;
  7021. border-bottom-right-radius:0px;
  7022. border-bottom-left-radius:0px;
  7023. -moz-box-shadow:none;
  7024. -webkit-box-shadow:none;
  7025. box-shadow:none;
  7026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7027. font-weight:400;
  7028. font-style:normal;
  7029. font-size:14px;
  7030. color:#FFFFFF;
  7031. text-align:right;
  7032. }
  7033. #u32484 {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:1121px;
  7037. top:936px;
  7038. width:50px;
  7039. height:24px;
  7040. display:flex;
  7041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:14px;
  7045. color:#FFFFFF;
  7046. text-align:right;
  7047. }
  7048. #u32484 .text {
  7049. position:absolute;
  7050. align-self:flex-start;
  7051. padding:2px 2px 2px 2px;
  7052. box-sizing:border-box;
  7053. width:100%;
  7054. }
  7055. #u32484_text {
  7056. border-width:0px;
  7057. white-space:nowrap;
  7058. text-transform:none;
  7059. }
  7060. #u32485 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:0px;
  7066. height:0px;
  7067. }
  7068. #u32486_div {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:202px;
  7074. height:30px;
  7075. background:inherit;
  7076. background-color:rgba(255, 255, 255, 0.0980392156862745);
  7077. border:none;
  7078. border-radius:0px;
  7079. -moz-box-shadow:none;
  7080. -webkit-box-shadow:none;
  7081. box-shadow:none;
  7082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:12px;
  7086. color:rgba(255, 255, 255, 0.698039215686274);
  7087. }
  7088. #u32486 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:978px;
  7092. top:964px;
  7093. width:202px;
  7094. height:30px;
  7095. display:flex;
  7096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. font-size:12px;
  7100. color:rgba(255, 255, 255, 0.698039215686274);
  7101. }
  7102. #u32486 .text {
  7103. position:absolute;
  7104. align-self:center;
  7105. padding:2px 2px 2px 2px;
  7106. box-sizing:border-box;
  7107. width:100%;
  7108. }
  7109. #u32486_text {
  7110. border-width:0px;
  7111. word-wrap:break-word;
  7112. text-transform:none;
  7113. visibility:hidden;
  7114. }
  7115. #u32487_div {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:69px;
  7121. height:24px;
  7122. background:inherit;
  7123. background-color:rgba(245, 154, 35, 0);
  7124. border:none;
  7125. border-left:0px;
  7126. border-top:0px;
  7127. border-right:0px;
  7128. border-radius:0px;
  7129. border-bottom-right-radius:0px;
  7130. border-bottom-left-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:14px;
  7138. color:#FFFFFF;
  7139. text-align:left;
  7140. }
  7141. #u32487 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:988px;
  7145. top:967px;
  7146. width:69px;
  7147. height:24px;
  7148. display:flex;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:14px;
  7153. color:#FFFFFF;
  7154. text-align:left;
  7155. }
  7156. #u32487 .text {
  7157. position:absolute;
  7158. align-self:flex-start;
  7159. padding:2px 2px 2px 2px;
  7160. box-sizing:border-box;
  7161. width:100%;
  7162. }
  7163. #u32487_text {
  7164. border-width:0px;
  7165. white-space:nowrap;
  7166. text-transform:none;
  7167. }
  7168. #u32488_div {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:45px;
  7174. height:24px;
  7175. background:inherit;
  7176. background-color:rgba(245, 154, 35, 0);
  7177. border:none;
  7178. border-left:0px;
  7179. border-top:0px;
  7180. border-right:0px;
  7181. border-radius:0px;
  7182. border-bottom-right-radius:0px;
  7183. border-bottom-left-radius:0px;
  7184. -moz-box-shadow:none;
  7185. -webkit-box-shadow:none;
  7186. box-shadow:none;
  7187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7188. font-weight:400;
  7189. font-style:normal;
  7190. font-size:14px;
  7191. color:#FFFFFF;
  7192. text-align:right;
  7193. }
  7194. #u32488 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:1126px;
  7198. top:967px;
  7199. width:45px;
  7200. height:24px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. color:#FFFFFF;
  7207. text-align:right;
  7208. }
  7209. #u32488 .text {
  7210. position:absolute;
  7211. align-self:flex-start;
  7212. padding:2px 2px 2px 2px;
  7213. box-sizing:border-box;
  7214. width:100%;
  7215. }
  7216. #u32488_text {
  7217. border-width:0px;
  7218. white-space:nowrap;
  7219. text-transform:none;
  7220. }
  7221. #u32489 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:0px;
  7227. height:0px;
  7228. }
  7229. #u32490_div {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:202px;
  7235. height:30px;
  7236. background:inherit;
  7237. background-color:rgba(255, 255, 255, 0.0980392156862745);
  7238. border:none;
  7239. border-radius:0px;
  7240. -moz-box-shadow:none;
  7241. -webkit-box-shadow:none;
  7242. box-shadow:none;
  7243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:12px;
  7247. color:rgba(255, 255, 255, 0.698039215686274);
  7248. }
  7249. #u32490 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:978px;
  7253. top:995px;
  7254. width:202px;
  7255. height:30px;
  7256. display:flex;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:12px;
  7261. color:rgba(255, 255, 255, 0.698039215686274);
  7262. }
  7263. #u32490 .text {
  7264. position:absolute;
  7265. align-self:center;
  7266. padding:2px 2px 2px 2px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u32490_text {
  7271. border-width:0px;
  7272. word-wrap:break-word;
  7273. text-transform:none;
  7274. visibility:hidden;
  7275. }
  7276. #u32491_div {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:0px;
  7280. top:0px;
  7281. width:69px;
  7282. height:24px;
  7283. background:inherit;
  7284. background-color:rgba(245, 154, 35, 0);
  7285. border:none;
  7286. border-left:0px;
  7287. border-top:0px;
  7288. border-right:0px;
  7289. border-radius:0px;
  7290. border-bottom-right-radius:0px;
  7291. border-bottom-left-radius:0px;
  7292. -moz-box-shadow:none;
  7293. -webkit-box-shadow:none;
  7294. box-shadow:none;
  7295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:14px;
  7299. color:#FFFFFF;
  7300. text-align:left;
  7301. }
  7302. #u32491 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:988px;
  7306. top:998px;
  7307. width:69px;
  7308. height:24px;
  7309. display:flex;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:14px;
  7314. color:#FFFFFF;
  7315. text-align:left;
  7316. }
  7317. #u32491 .text {
  7318. position:absolute;
  7319. align-self:flex-start;
  7320. padding:2px 2px 2px 2px;
  7321. box-sizing:border-box;
  7322. width:100%;
  7323. }
  7324. #u32491_text {
  7325. border-width:0px;
  7326. white-space:nowrap;
  7327. text-transform:none;
  7328. }
  7329. #u32492_div {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:44px;
  7335. height:24px;
  7336. background:inherit;
  7337. background-color:rgba(245, 154, 35, 0);
  7338. border:none;
  7339. border-left:0px;
  7340. border-top:0px;
  7341. border-right:0px;
  7342. border-radius:0px;
  7343. border-bottom-right-radius:0px;
  7344. border-bottom-left-radius:0px;
  7345. -moz-box-shadow:none;
  7346. -webkit-box-shadow:none;
  7347. box-shadow:none;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. color:#FFFFFF;
  7353. text-align:right;
  7354. }
  7355. #u32492 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:1127px;
  7359. top:998px;
  7360. width:44px;
  7361. height:24px;
  7362. display:flex;
  7363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:14px;
  7367. color:#FFFFFF;
  7368. text-align:right;
  7369. }
  7370. #u32492 .text {
  7371. position:absolute;
  7372. align-self:flex-start;
  7373. padding:2px 2px 2px 2px;
  7374. box-sizing:border-box;
  7375. width:100%;
  7376. }
  7377. #u32492_text {
  7378. border-width:0px;
  7379. white-space:nowrap;
  7380. text-transform:none;
  7381. }
  7382. #u32493_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:60px;
  7388. height:30px;
  7389. background:inherit;
  7390. background-color:rgba(245, 154, 35, 1);
  7391. box-sizing:border-box;
  7392. border-width:1px;
  7393. border-style:solid;
  7394. border-color:rgba(245, 154, 35, 1);
  7395. border-radius:4px;
  7396. -moz-box-shadow:none;
  7397. -webkit-box-shadow:none;
  7398. box-shadow:none;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:14px;
  7403. color:#FFFFFF;
  7404. }
  7405. #u32493 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:1115px;
  7409. top:1063px;
  7410. width:60px;
  7411. height:30px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:14px;
  7417. color:#FFFFFF;
  7418. }
  7419. #u32493 .text {
  7420. position:absolute;
  7421. align-self:center;
  7422. padding:2px 2px 2px 2px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u32493_text {
  7427. border-width:0px;
  7428. word-wrap:break-word;
  7429. text-transform:none;
  7430. }
  7431. #u32494_div {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:321px;
  7437. height:36px;
  7438. background:inherit;
  7439. background-color:rgba(245, 154, 35, 0);
  7440. border:none;
  7441. border-left:0px;
  7442. border-top:0px;
  7443. border-right:0px;
  7444. border-radius:0px;
  7445. border-bottom-right-radius:0px;
  7446. border-bottom-left-radius:0px;
  7447. -moz-box-shadow:none;
  7448. -webkit-box-shadow:none;
  7449. box-shadow:none;
  7450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. font-size:11px;
  7454. color:#D9001B;
  7455. text-align:left;
  7456. }
  7457. #u32494 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:777px;
  7461. top:1063px;
  7462. width:321px;
  7463. height:36px;
  7464. display:flex;
  7465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7466. font-weight:400;
  7467. font-style:normal;
  7468. font-size:11px;
  7469. color:#D9001B;
  7470. text-align:left;
  7471. }
  7472. #u32494 .text {
  7473. position:absolute;
  7474. align-self:flex-start;
  7475. padding:2px 2px 2px 2px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u32494_text {
  7480. border-width:0px;
  7481. word-wrap:break-word;
  7482. text-transform:none;
  7483. }
  7484. #u32495_img {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:1510px;
  7490. height:858px;
  7491. }
  7492. #u32495 {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:1540px;
  7496. top:0px;
  7497. width:1510px;
  7498. height:858px;
  7499. display:flex;
  7500. }
  7501. #u32495 .text {
  7502. position:absolute;
  7503. align-self:center;
  7504. padding:2px 2px 2px 2px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u32495_text {
  7509. border-width:0px;
  7510. word-wrap:break-word;
  7511. text-transform:none;
  7512. visibility:hidden;
  7513. }
  7514. #u32496 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:0px;
  7520. height:0px;
  7521. }
  7522. #u32497 {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:0px;
  7528. height:0px;
  7529. }
  7530. #u32498_div {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:996px;
  7536. height:623px;
  7537. background:inherit;
  7538. background-color:rgba(51, 51, 51, 1);
  7539. border:none;
  7540. border-radius:10px;
  7541. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  7542. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  7543. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  7544. }
  7545. #u32498 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:1740px;
  7549. top:125px;
  7550. width:996px;
  7551. height:623px;
  7552. display:flex;
  7553. }
  7554. #u32498 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 2px 2px 2px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u32498_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. visibility:hidden;
  7566. }
  7567. #u32499_img {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:13px;
  7573. height:13px;
  7574. }
  7575. #u32499 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:2712px;
  7579. top:137px;
  7580. width:13px;
  7581. height:13px;
  7582. display:flex;
  7583. }
  7584. #u32499 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:2px 2px 2px 2px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u32499_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. visibility:hidden;
  7596. }
  7597. #u32500 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:0px;
  7603. height:0px;
  7604. }
  7605. #u32501_div {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:16px;
  7611. height:16px;
  7612. background:inherit;
  7613. background-color:rgba(255, 255, 255, 0);
  7614. box-sizing:border-box;
  7615. border-width:2px;
  7616. border-style:solid;
  7617. border-color:rgba(255, 255, 255, 1);
  7618. border-radius:0px;
  7619. -moz-box-shadow:none;
  7620. -webkit-box-shadow:none;
  7621. box-shadow:none;
  7622. }
  7623. #u32501 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:2682px;
  7627. top:134px;
  7628. width:16px;
  7629. height:16px;
  7630. display:flex;
  7631. }
  7632. #u32501 .text {
  7633. position:absolute;
  7634. align-self:center;
  7635. padding:2px 2px 2px 2px;
  7636. box-sizing:border-box;
  7637. width:100%;
  7638. }
  7639. #u32501_text {
  7640. border-width:0px;
  7641. word-wrap:break-word;
  7642. text-transform:none;
  7643. visibility:hidden;
  7644. }
  7645. #u32502_div {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:16px;
  7651. height:16px;
  7652. background:inherit;
  7653. background-color:rgba(51, 51, 51, 1);
  7654. box-sizing:border-box;
  7655. border-width:2px;
  7656. border-style:solid;
  7657. border-color:rgba(255, 255, 255, 1);
  7658. border-radius:0px;
  7659. -moz-box-shadow:none;
  7660. -webkit-box-shadow:none;
  7661. box-shadow:none;
  7662. }
  7663. #u32502 {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:2686px;
  7667. top:138px;
  7668. width:16px;
  7669. height:16px;
  7670. display:flex;
  7671. }
  7672. #u32502 .text {
  7673. position:absolute;
  7674. align-self:center;
  7675. padding:2px 2px 2px 2px;
  7676. box-sizing:border-box;
  7677. width:100%;
  7678. }
  7679. #u32502_text {
  7680. border-width:0px;
  7681. word-wrap:break-word;
  7682. text-transform:none;
  7683. visibility:hidden;
  7684. }
  7685. #u32503_img {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:115px;
  7691. height:115px;
  7692. }
  7693. #u32503 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:2181px;
  7697. top:344px;
  7698. width:115px;
  7699. height:115px;
  7700. display:flex;
  7701. }
  7702. #u32503 .text {
  7703. position:absolute;
  7704. align-self:center;
  7705. padding:2px 2px 2px 2px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u32503_text {
  7710. border-width:0px;
  7711. word-wrap:break-word;
  7712. text-transform:none;
  7713. visibility:hidden;
  7714. }
  7715. #u32504 {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:0px;
  7721. height:0px;
  7722. }
  7723. #u32505_div {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:0px;
  7728. width:49px;
  7729. height:17px;
  7730. background:inherit;
  7731. background-color:rgba(255, 255, 255, 0);
  7732. border:none;
  7733. border-radius:0px;
  7734. -moz-box-shadow:none;
  7735. -webkit-box-shadow:none;
  7736. box-shadow:none;
  7737. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7738. font-weight:500;
  7739. font-style:normal;
  7740. font-size:12px;
  7741. color:#FFFFFF;
  7742. }
  7743. #u32505 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:1772px;
  7747. top:146px;
  7748. width:49px;
  7749. height:17px;
  7750. display:flex;
  7751. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7752. font-weight:500;
  7753. font-style:normal;
  7754. font-size:12px;
  7755. color:#FFFFFF;
  7756. }
  7757. #u32505 .text {
  7758. position:absolute;
  7759. align-self:flex-start;
  7760. padding:0px 0px 0px 0px;
  7761. box-sizing:border-box;
  7762. width:100%;
  7763. }
  7764. #u32505_text {
  7765. border-width:0px;
  7766. white-space:nowrap;
  7767. text-transform:none;
  7768. }
  7769. #u32506_div {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:49px;
  7775. height:17px;
  7776. background:inherit;
  7777. background-color:rgba(255, 255, 255, 0);
  7778. border:none;
  7779. border-radius:0px;
  7780. -moz-box-shadow:none;
  7781. -webkit-box-shadow:none;
  7782. box-shadow:none;
  7783. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7784. font-weight:500;
  7785. font-style:normal;
  7786. font-size:12px;
  7787. color:#FFFFFF;
  7788. }
  7789. #u32506 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:1854px;
  7793. top:146px;
  7794. width:49px;
  7795. height:17px;
  7796. display:flex;
  7797. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7798. font-weight:500;
  7799. font-style:normal;
  7800. font-size:12px;
  7801. color:#FFFFFF;
  7802. }
  7803. #u32506 .text {
  7804. position:absolute;
  7805. align-self:flex-start;
  7806. padding:0px 0px 0px 0px;
  7807. box-sizing:border-box;
  7808. width:100%;
  7809. }
  7810. #u32506_text {
  7811. border-width:0px;
  7812. white-space:nowrap;
  7813. text-transform:none;
  7814. }
  7815. #u32507_div {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:49px;
  7821. height:17px;
  7822. background:inherit;
  7823. background-color:rgba(255, 255, 255, 0);
  7824. border:none;
  7825. border-radius:0px;
  7826. -moz-box-shadow:none;
  7827. -webkit-box-shadow:none;
  7828. box-shadow:none;
  7829. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7830. font-weight:500;
  7831. font-style:normal;
  7832. font-size:12px;
  7833. color:#FFFFFF;
  7834. }
  7835. #u32507 {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:1943px;
  7839. top:146px;
  7840. width:49px;
  7841. height:17px;
  7842. display:flex;
  7843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7844. font-weight:500;
  7845. font-style:normal;
  7846. font-size:12px;
  7847. color:#FFFFFF;
  7848. }
  7849. #u32507 .text {
  7850. position:absolute;
  7851. align-self:flex-start;
  7852. padding:0px 0px 0px 0px;
  7853. box-sizing:border-box;
  7854. width:100%;
  7855. }
  7856. #u32507_text {
  7857. border-width:0px;
  7858. white-space:nowrap;
  7859. text-transform:none;
  7860. }
  7861. #u32508_img {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:0px;
  7865. top:0px;
  7866. width:9px;
  7867. height:13px;
  7868. }
  7869. #u32508 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:1929px;
  7873. top:148px;
  7874. width:9px;
  7875. height:13px;
  7876. display:flex;
  7877. }
  7878. #u32508 .text {
  7879. position:absolute;
  7880. align-self:center;
  7881. padding:2px 2px 2px 2px;
  7882. box-sizing:border-box;
  7883. width:100%;
  7884. }
  7885. #u32508_text {
  7886. border-width:0px;
  7887. word-wrap:break-word;
  7888. text-transform:none;
  7889. visibility:hidden;
  7890. }
  7891. #u32509 {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:0px;
  7897. height:0px;
  7898. }
  7899. #u32510 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:0px;
  7903. top:0px;
  7904. width:0px;
  7905. height:0px;
  7906. }
  7907. #u32511_img {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:-20px;
  7911. top:-20px;
  7912. width:1040px;
  7913. height:629px;
  7914. }
  7915. #u32511 {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:3093px;
  7919. top:133px;
  7920. width:1000px;
  7921. height:589px;
  7922. display:flex;
  7923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7924. font-weight:400;
  7925. font-style:normal;
  7926. font-size:14px;
  7927. color:#F59A23;
  7928. }
  7929. #u32511 .text {
  7930. position:absolute;
  7931. align-self:center;
  7932. padding:2px 2px 2px 2px;
  7933. box-sizing:border-box;
  7934. width:100%;
  7935. }
  7936. #u32511_text {
  7937. border-width:0px;
  7938. word-wrap:break-word;
  7939. text-transform:none;
  7940. visibility:hidden;
  7941. }
  7942. #u32512_div {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:85px;
  7948. height:32px;
  7949. background:inherit;
  7950. background-color:rgba(255, 255, 255, 0);
  7951. border:none;
  7952. border-radius:0px;
  7953. -moz-box-shadow:none;
  7954. -webkit-box-shadow:none;
  7955. box-shadow:none;
  7956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7957. font-weight:500;
  7958. font-style:normal;
  7959. font-size:20px;
  7960. color:#FFFFFF;
  7961. }
  7962. #u32512 {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:3113px;
  7966. top:143px;
  7967. width:85px;
  7968. height:32px;
  7969. display:flex;
  7970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7971. font-weight:500;
  7972. font-style:normal;
  7973. font-size:20px;
  7974. color:#FFFFFF;
  7975. }
  7976. #u32512 .text {
  7977. position:absolute;
  7978. align-self:center;
  7979. padding:2px 2px 2px 2px;
  7980. box-sizing:border-box;
  7981. width:100%;
  7982. }
  7983. #u32512_text {
  7984. border-width:0px;
  7985. white-space:nowrap;
  7986. text-transform:none;
  7987. }
  7988. #u32513 {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:0px;
  7992. top:0px;
  7993. width:0px;
  7994. height:0px;
  7995. }
  7996. #u32514_div {
  7997. border-width:0px;
  7998. position:absolute;
  7999. left:0px;
  8000. top:0px;
  8001. width:59px;
  8002. height:30px;
  8003. background:inherit;
  8004. background-color:rgba(245, 154, 35, 1);
  8005. box-sizing:border-box;
  8006. border-width:1px;
  8007. border-style:solid;
  8008. border-color:rgba(245, 154, 35, 1);
  8009. border-radius:4px;
  8010. -moz-box-shadow:none;
  8011. -webkit-box-shadow:none;
  8012. box-shadow:none;
  8013. font-family:'Microsoft YaHei', sans-serif;
  8014. font-weight:400;
  8015. font-style:normal;
  8016. font-size:14px;
  8017. color:#FFFFFF;
  8018. }
  8019. #u32514 {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:3872px;
  8023. top:203px;
  8024. width:59px;
  8025. height:30px;
  8026. display:flex;
  8027. font-family:'Microsoft YaHei', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:14px;
  8031. color:#FFFFFF;
  8032. }
  8033. #u32514 .text {
  8034. position:absolute;
  8035. align-self:center;
  8036. padding:5px 15px 5px 15px;
  8037. box-sizing:border-box;
  8038. width:100%;
  8039. }
  8040. #u32514_text {
  8041. border-width:0px;
  8042. white-space:nowrap;
  8043. text-transform:none;
  8044. }
  8045. #u32515_div {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:0px;
  8049. top:0px;
  8050. width:55px;
  8051. height:30px;
  8052. background:inherit;
  8053. background-color:rgba(51, 51, 51, 0);
  8054. box-sizing:border-box;
  8055. border-width:1px;
  8056. border-style:solid;
  8057. border-color:rgba(245, 154, 35, 1);
  8058. border-radius:4px;
  8059. -moz-box-shadow:none;
  8060. -webkit-box-shadow:none;
  8061. box-shadow:none;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:12px;
  8066. color:#FFFFFF;
  8067. }
  8068. #u32515 {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:3941px;
  8072. top:203px;
  8073. width:55px;
  8074. height:30px;
  8075. display:flex;
  8076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8077. font-weight:400;
  8078. font-style:normal;
  8079. font-size:12px;
  8080. color:#FFFFFF;
  8081. }
  8082. #u32515 .text {
  8083. position:absolute;
  8084. align-self:center;
  8085. padding:5px 15px 5px 15px;
  8086. box-sizing:border-box;
  8087. width:100%;
  8088. }
  8089. #u32515_text {
  8090. border-width:0px;
  8091. white-space:nowrap;
  8092. text-transform:none;
  8093. }
  8094. #u32516 {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:0px;
  8098. top:0px;
  8099. width:0px;
  8100. height:0px;
  8101. }
  8102. #u32517_div {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:140px;
  8108. height:30px;
  8109. background:inherit;
  8110. background-color:rgba(51, 51, 51, 0);
  8111. box-sizing:border-box;
  8112. border-width:1px;
  8113. border-style:solid;
  8114. border-color:rgba(245, 154, 35, 1);
  8115. border-radius:4px;
  8116. -moz-box-shadow:none;
  8117. -webkit-box-shadow:none;
  8118. box-shadow:none;
  8119. font-size:11px;
  8120. }
  8121. #u32517 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:3274px;
  8125. top:202px;
  8126. width:140px;
  8127. height:30px;
  8128. display:flex;
  8129. font-size:11px;
  8130. }
  8131. #u32517 .text {
  8132. position:absolute;
  8133. align-self:center;
  8134. padding:2px 2px 2px 2px;
  8135. box-sizing:border-box;
  8136. width:100%;
  8137. }
  8138. #u32517_text {
  8139. border-width:0px;
  8140. word-wrap:break-word;
  8141. text-transform:none;
  8142. visibility:hidden;
  8143. }
  8144. #u32518_input {
  8145. position:absolute;
  8146. left:0px;
  8147. top:0px;
  8148. width:126px;
  8149. height:23px;
  8150. padding:2px 2px 2px 2px;
  8151. font-family:'ArialMT', 'Arial', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:11px;
  8155. letter-spacing:normal;
  8156. color:#FFFFFF;
  8157. vertical-align:none;
  8158. text-align:left;
  8159. text-transform:none;
  8160. background-color:transparent;
  8161. border-color:transparent;
  8162. }
  8163. #u32518_input.disabled {
  8164. position:absolute;
  8165. left:0px;
  8166. top:0px;
  8167. width:126px;
  8168. height:23px;
  8169. padding:2px 2px 2px 2px;
  8170. font-family:'ArialMT', 'Arial', sans-serif;
  8171. font-weight:400;
  8172. font-style:normal;
  8173. font-size:11px;
  8174. letter-spacing:normal;
  8175. color:#FFFFFF;
  8176. vertical-align:none;
  8177. text-align:left;
  8178. text-transform:none;
  8179. background-color:transparent;
  8180. border-color:transparent;
  8181. }
  8182. #u32518_div {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:0px;
  8186. top:0px;
  8187. width:126px;
  8188. height:23px;
  8189. background:inherit;
  8190. background-color:rgba(51, 51, 51, 0);
  8191. border:none;
  8192. border-radius:0px;
  8193. -moz-box-shadow:none;
  8194. -webkit-box-shadow:none;
  8195. box-shadow:none;
  8196. font-size:11px;
  8197. color:#FFFFFF;
  8198. }
  8199. #u32518 {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:3281px;
  8203. top:204px;
  8204. width:126px;
  8205. height:23px;
  8206. display:flex;
  8207. font-size:11px;
  8208. color:#FFFFFF;
  8209. }
  8210. #u32518 .text {
  8211. position:absolute;
  8212. align-self:flex-start;
  8213. padding:2px 2px 2px 2px;
  8214. box-sizing:border-box;
  8215. width:100%;
  8216. }
  8217. #u32518_div.disabled {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:0px;
  8221. top:0px;
  8222. width:126px;
  8223. height:23px;
  8224. background:inherit;
  8225. background-color:rgba(240, 240, 240, 1);
  8226. border:none;
  8227. border-radius:0px;
  8228. -moz-box-shadow:none;
  8229. -webkit-box-shadow:none;
  8230. box-shadow:none;
  8231. font-size:11px;
  8232. color:#FFFFFF;
  8233. }
  8234. #u32518.disabled {
  8235. }
  8236. .u32518_input_option {
  8237. font-size:11px;
  8238. }
  8239. #u32519 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:0px;
  8245. height:0px;
  8246. }
  8247. #u32520_div {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:140px;
  8253. height:30px;
  8254. background:inherit;
  8255. background-color:rgba(51, 51, 51, 0);
  8256. box-sizing:border-box;
  8257. border-width:1px;
  8258. border-style:solid;
  8259. border-color:rgba(245, 154, 35, 1);
  8260. border-radius:4px;
  8261. -moz-box-shadow:none;
  8262. -webkit-box-shadow:none;
  8263. box-shadow:none;
  8264. font-size:11px;
  8265. }
  8266. #u32520 {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:3572px;
  8270. top:202px;
  8271. width:140px;
  8272. height:30px;
  8273. display:flex;
  8274. font-size:11px;
  8275. }
  8276. #u32520 .text {
  8277. position:absolute;
  8278. align-self:center;
  8279. padding:2px 2px 2px 2px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u32520_text {
  8284. border-width:0px;
  8285. word-wrap:break-word;
  8286. text-transform:none;
  8287. visibility:hidden;
  8288. }
  8289. #u32521_input {
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:126px;
  8294. height:23px;
  8295. padding:2px 2px 2px 2px;
  8296. font-family:'ArialMT', 'Arial', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:11px;
  8300. letter-spacing:normal;
  8301. color:#FFFFFF;
  8302. vertical-align:none;
  8303. text-align:left;
  8304. text-transform:none;
  8305. background-color:transparent;
  8306. border-color:transparent;
  8307. }
  8308. #u32521_input.disabled {
  8309. position:absolute;
  8310. left:0px;
  8311. top:0px;
  8312. width:126px;
  8313. height:23px;
  8314. padding:2px 2px 2px 2px;
  8315. font-family:'ArialMT', 'Arial', sans-serif;
  8316. font-weight:400;
  8317. font-style:normal;
  8318. font-size:11px;
  8319. letter-spacing:normal;
  8320. color:#FFFFFF;
  8321. vertical-align:none;
  8322. text-align:left;
  8323. text-transform:none;
  8324. background-color:transparent;
  8325. border-color:transparent;
  8326. }
  8327. #u32521_div {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:0px;
  8331. top:0px;
  8332. width:126px;
  8333. height:23px;
  8334. background:inherit;
  8335. background-color:rgba(51, 51, 51, 0);
  8336. border:none;
  8337. border-radius:0px;
  8338. -moz-box-shadow:none;
  8339. -webkit-box-shadow:none;
  8340. box-shadow:none;
  8341. font-size:11px;
  8342. color:#FFFFFF;
  8343. }
  8344. #u32521 {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:3579px;
  8348. top:204px;
  8349. width:126px;
  8350. height:23px;
  8351. display:flex;
  8352. font-size:11px;
  8353. color:#FFFFFF;
  8354. }
  8355. #u32521 .text {
  8356. position:absolute;
  8357. align-self:flex-start;
  8358. padding:2px 2px 2px 2px;
  8359. box-sizing:border-box;
  8360. width:100%;
  8361. }
  8362. #u32521_div.disabled {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:0px;
  8366. top:0px;
  8367. width:126px;
  8368. height:23px;
  8369. background:inherit;
  8370. background-color:rgba(240, 240, 240, 1);
  8371. border:none;
  8372. border-radius:0px;
  8373. -moz-box-shadow:none;
  8374. -webkit-box-shadow:none;
  8375. box-shadow:none;
  8376. font-size:11px;
  8377. color:#FFFFFF;
  8378. }
  8379. #u32521.disabled {
  8380. }
  8381. .u32521_input_option {
  8382. font-size:11px;
  8383. }
  8384. #u32522 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:0px;
  8390. height:0px;
  8391. }
  8392. #u32523_div {
  8393. border-width:0px;
  8394. position:absolute;
  8395. left:0px;
  8396. top:0px;
  8397. width:140px;
  8398. height:30px;
  8399. background:inherit;
  8400. background-color:rgba(51, 51, 51, 0);
  8401. box-sizing:border-box;
  8402. border-width:1px;
  8403. border-style:solid;
  8404. border-color:rgba(245, 154, 35, 1);
  8405. border-radius:4px;
  8406. -moz-box-shadow:none;
  8407. -webkit-box-shadow:none;
  8408. box-shadow:none;
  8409. font-size:11px;
  8410. }
  8411. #u32523 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:3422px;
  8415. top:202px;
  8416. width:140px;
  8417. height:30px;
  8418. display:flex;
  8419. font-size:11px;
  8420. }
  8421. #u32523 .text {
  8422. position:absolute;
  8423. align-self:center;
  8424. padding:2px 2px 2px 2px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u32523_text {
  8429. border-width:0px;
  8430. word-wrap:break-word;
  8431. text-transform:none;
  8432. visibility:hidden;
  8433. }
  8434. #u32524_input {
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:126px;
  8439. height:23px;
  8440. padding:2px 2px 2px 2px;
  8441. font-family:'ArialMT', 'Arial', sans-serif;
  8442. font-weight:400;
  8443. font-style:normal;
  8444. font-size:11px;
  8445. letter-spacing:normal;
  8446. color:#FFFFFF;
  8447. vertical-align:none;
  8448. text-align:left;
  8449. text-transform:none;
  8450. background-color:transparent;
  8451. border-color:transparent;
  8452. }
  8453. #u32524_input.disabled {
  8454. position:absolute;
  8455. left:0px;
  8456. top:0px;
  8457. width:126px;
  8458. height:23px;
  8459. padding:2px 2px 2px 2px;
  8460. font-family:'ArialMT', 'Arial', sans-serif;
  8461. font-weight:400;
  8462. font-style:normal;
  8463. font-size:11px;
  8464. letter-spacing:normal;
  8465. color:#FFFFFF;
  8466. vertical-align:none;
  8467. text-align:left;
  8468. text-transform:none;
  8469. background-color:transparent;
  8470. border-color:transparent;
  8471. }
  8472. #u32524_div {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:0px;
  8476. top:0px;
  8477. width:126px;
  8478. height:23px;
  8479. background:inherit;
  8480. background-color:rgba(51, 51, 51, 0);
  8481. border:none;
  8482. border-radius:0px;
  8483. -moz-box-shadow:none;
  8484. -webkit-box-shadow:none;
  8485. box-shadow:none;
  8486. font-size:11px;
  8487. color:#FFFFFF;
  8488. }
  8489. #u32524 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:3429px;
  8493. top:204px;
  8494. width:126px;
  8495. height:23px;
  8496. display:flex;
  8497. font-size:11px;
  8498. color:#FFFFFF;
  8499. }
  8500. #u32524 .text {
  8501. position:absolute;
  8502. align-self:flex-start;
  8503. padding:2px 2px 2px 2px;
  8504. box-sizing:border-box;
  8505. width:100%;
  8506. }
  8507. #u32524_div.disabled {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:0px;
  8511. top:0px;
  8512. width:126px;
  8513. height:23px;
  8514. background:inherit;
  8515. background-color:rgba(240, 240, 240, 1);
  8516. border:none;
  8517. border-radius:0px;
  8518. -moz-box-shadow:none;
  8519. -webkit-box-shadow:none;
  8520. box-shadow:none;
  8521. font-size:11px;
  8522. color:#FFFFFF;
  8523. }
  8524. #u32524.disabled {
  8525. }
  8526. .u32524_input_option {
  8527. font-size:11px;
  8528. }
  8529. #u32525 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:0px;
  8533. top:0px;
  8534. width:0px;
  8535. height:0px;
  8536. }
  8537. #u32526_div {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:0px;
  8541. top:0px;
  8542. width:140px;
  8543. height:30px;
  8544. background:inherit;
  8545. background-color:rgba(51, 51, 51, 0);
  8546. box-sizing:border-box;
  8547. border-width:1px;
  8548. border-style:solid;
  8549. border-color:rgba(245, 154, 35, 1);
  8550. border-radius:4px;
  8551. -moz-box-shadow:none;
  8552. -webkit-box-shadow:none;
  8553. box-shadow:none;
  8554. font-size:11px;
  8555. }
  8556. #u32526 {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:3124px;
  8560. top:202px;
  8561. width:140px;
  8562. height:30px;
  8563. display:flex;
  8564. font-size:11px;
  8565. }
  8566. #u32526 .text {
  8567. position:absolute;
  8568. align-self:center;
  8569. padding:2px 2px 2px 2px;
  8570. box-sizing:border-box;
  8571. width:100%;
  8572. }
  8573. #u32526_text {
  8574. border-width:0px;
  8575. word-wrap:break-word;
  8576. text-transform:none;
  8577. visibility:hidden;
  8578. }
  8579. #u32527_input {
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:120px;
  8584. height:23px;
  8585. padding:2px 2px 2px 2px;
  8586. font-family:'ArialMT', 'Arial', sans-serif;
  8587. font-weight:400;
  8588. font-style:normal;
  8589. font-size:11px;
  8590. letter-spacing:normal;
  8591. color:#FFFFFF;
  8592. vertical-align:none;
  8593. text-align:left;
  8594. text-transform:none;
  8595. background-color:transparent;
  8596. border-color:transparent;
  8597. }
  8598. #u32527_input.disabled {
  8599. position:absolute;
  8600. left:0px;
  8601. top:0px;
  8602. width:120px;
  8603. height:23px;
  8604. padding:2px 2px 2px 2px;
  8605. font-family:'ArialMT', 'Arial', sans-serif;
  8606. font-weight:400;
  8607. font-style:normal;
  8608. font-size:11px;
  8609. letter-spacing:normal;
  8610. color:#FFFFFF;
  8611. vertical-align:none;
  8612. text-align:left;
  8613. text-transform:none;
  8614. background-color:transparent;
  8615. border-color:transparent;
  8616. }
  8617. #u32527_div {
  8618. border-width:0px;
  8619. position:absolute;
  8620. left:0px;
  8621. top:0px;
  8622. width:120px;
  8623. height:23px;
  8624. background:inherit;
  8625. background-color:rgba(51, 51, 51, 0);
  8626. border:none;
  8627. border-radius:0px;
  8628. -moz-box-shadow:none;
  8629. -webkit-box-shadow:none;
  8630. box-shadow:none;
  8631. font-size:11px;
  8632. color:#FFFFFF;
  8633. }
  8634. #u32527 {
  8635. border-width:0px;
  8636. position:absolute;
  8637. left:3131px;
  8638. top:204px;
  8639. width:120px;
  8640. height:23px;
  8641. display:flex;
  8642. font-size:11px;
  8643. color:#FFFFFF;
  8644. }
  8645. #u32527 .text {
  8646. position:absolute;
  8647. align-self:flex-start;
  8648. padding:2px 2px 2px 2px;
  8649. box-sizing:border-box;
  8650. width:100%;
  8651. }
  8652. #u32527_div.disabled {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:120px;
  8658. height:23px;
  8659. background:inherit;
  8660. background-color:rgba(240, 240, 240, 1);
  8661. border:none;
  8662. border-radius:0px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. font-size:11px;
  8667. color:#FFFFFF;
  8668. }
  8669. #u32527.disabled {
  8670. }
  8671. .u32527_input_option {
  8672. font-size:11px;
  8673. }
  8674. #u32528 {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:0px;
  8678. top:0px;
  8679. width:0px;
  8680. height:0px;
  8681. }
  8682. #u32529_img {
  8683. border-width:0px;
  8684. position:absolute;
  8685. left:0px;
  8686. top:0px;
  8687. width:10px;
  8688. height:10px;
  8689. }
  8690. #u32529 {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:4032px;
  8694. top:149px;
  8695. width:10px;
  8696. height:10px;
  8697. display:flex;
  8698. }
  8699. #u32529 .text {
  8700. position:absolute;
  8701. align-self:center;
  8702. padding:2px 2px 2px 2px;
  8703. box-sizing:border-box;
  8704. width:100%;
  8705. }
  8706. #u32529_text {
  8707. border-width:0px;
  8708. word-wrap:break-word;
  8709. text-transform:none;
  8710. visibility:hidden;
  8711. }
  8712. #u32530_div {
  8713. border-width:0px;
  8714. position:absolute;
  8715. left:0px;
  8716. top:0px;
  8717. width:33px;
  8718. height:40px;
  8719. background:inherit;
  8720. background-color:rgba(255, 255, 255, 0);
  8721. border:none;
  8722. border-left:0px;
  8723. border-top:0px;
  8724. border-right:0px;
  8725. border-radius:0px;
  8726. border-bottom-right-radius:0px;
  8727. border-bottom-left-radius:0px;
  8728. -moz-box-shadow:none;
  8729. -webkit-box-shadow:none;
  8730. box-shadow:none;
  8731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:14px;
  8735. color:#FFFFFF;
  8736. }
  8737. #u32530 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:4050px;
  8741. top:134px;
  8742. width:33px;
  8743. height:40px;
  8744. display:flex;
  8745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8746. font-weight:400;
  8747. font-style:normal;
  8748. font-size:14px;
  8749. color:#FFFFFF;
  8750. }
  8751. #u32530 .text {
  8752. position:absolute;
  8753. align-self:center;
  8754. padding:2px 2px 2px 2px;
  8755. box-sizing:border-box;
  8756. width:100%;
  8757. }
  8758. #u32530_text {
  8759. border-width:0px;
  8760. white-space:nowrap;
  8761. text-transform:none;
  8762. }
  8763. #u32531 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:0px;
  8767. top:0px;
  8768. width:0px;
  8769. height:0px;
  8770. }
  8771. #u32532 {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:0px;
  8777. height:0px;
  8778. }
  8779. #u32533_img {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:0px;
  8783. top:0px;
  8784. width:31px;
  8785. height:30px;
  8786. }
  8787. #u32533 {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:3946px;
  8791. top:668px;
  8792. width:31px;
  8793. height:30px;
  8794. display:flex;
  8795. font-family:'Microsoft YaHei', sans-serif;
  8796. font-weight:400;
  8797. font-style:normal;
  8798. font-size:12px;
  8799. color:#FFFFFF;
  8800. }
  8801. #u32533 .text {
  8802. position:absolute;
  8803. align-self:center;
  8804. padding:2px 2px 2px 2px;
  8805. box-sizing:border-box;
  8806. width:100%;
  8807. }
  8808. #u32533_text {
  8809. border-width:0px;
  8810. word-wrap:break-word;
  8811. text-transform:none;
  8812. visibility:hidden;
  8813. }
  8814. #u32534_img {
  8815. border-width:0px;
  8816. position:absolute;
  8817. left:0px;
  8818. top:0px;
  8819. width:8px;
  8820. height:14px;
  8821. }
  8822. #u32534 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:3958px;
  8826. top:676px;
  8827. width:8px;
  8828. height:14px;
  8829. display:flex;
  8830. font-family:'Microsoft YaHei', sans-serif;
  8831. font-weight:400;
  8832. font-style:normal;
  8833. font-size:12px;
  8834. color:#FFFFFF;
  8835. }
  8836. #u32534 .text {
  8837. position:absolute;
  8838. align-self:center;
  8839. padding:2px 2px 2px 2px;
  8840. box-sizing:border-box;
  8841. width:100%;
  8842. }
  8843. #u32534_text {
  8844. border-width:0px;
  8845. word-wrap:break-word;
  8846. text-transform:none;
  8847. visibility:hidden;
  8848. }
  8849. #u32535 {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:0px;
  8855. height:0px;
  8856. }
  8857. #u32536_img {
  8858. border-width:0px;
  8859. position:absolute;
  8860. left:0px;
  8861. top:0px;
  8862. width:31px;
  8863. height:30px;
  8864. }
  8865. #u32536 {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:4031px;
  8869. top:668px;
  8870. width:31px;
  8871. height:30px;
  8872. display:flex;
  8873. font-family:'Microsoft YaHei', sans-serif;
  8874. font-weight:400;
  8875. font-style:normal;
  8876. font-size:12px;
  8877. color:#FFFFFF;
  8878. }
  8879. #u32536 .text {
  8880. position:absolute;
  8881. align-self:center;
  8882. padding:2px 2px 2px 2px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u32536_text {
  8887. border-width:0px;
  8888. word-wrap:break-word;
  8889. text-transform:none;
  8890. visibility:hidden;
  8891. }
  8892. #u32537_img {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:0px;
  8896. top:0px;
  8897. width:8px;
  8898. height:14px;
  8899. }
  8900. #u32537 {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:4044px;
  8904. top:676px;
  8905. width:8px;
  8906. height:14px;
  8907. display:flex;
  8908. opacity:0.3;
  8909. font-family:'Microsoft YaHei', sans-serif;
  8910. font-weight:400;
  8911. font-style:normal;
  8912. font-size:12px;
  8913. color:rgba(245, 154, 35, 0.996078431372549);
  8914. }
  8915. #u32537 .text {
  8916. position:absolute;
  8917. align-self:center;
  8918. padding:2px 2px 2px 2px;
  8919. box-sizing:border-box;
  8920. width:100%;
  8921. }
  8922. #u32537_text {
  8923. border-width:0px;
  8924. word-wrap:break-word;
  8925. text-transform:none;
  8926. visibility:hidden;
  8927. }
  8928. #u32538_div {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:0px;
  8932. top:0px;
  8933. width:40px;
  8934. height:21px;
  8935. background:inherit;
  8936. background-color:rgba(255, 255, 255, 0);
  8937. border:none;
  8938. border-radius:15px;
  8939. -moz-box-shadow:none;
  8940. -webkit-box-shadow:none;
  8941. box-shadow:none;
  8942. font-family:'Helvetica', sans-serif;
  8943. font-weight:400;
  8944. font-style:normal;
  8945. font-size:14px;
  8946. }
  8947. #u32538 {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:3983px;
  8951. top:673px;
  8952. width:40px;
  8953. height:21px;
  8954. display:flex;
  8955. font-family:'Helvetica', sans-serif;
  8956. font-weight:400;
  8957. font-style:normal;
  8958. font-size:14px;
  8959. }
  8960. #u32538 .text {
  8961. position:absolute;
  8962. align-self:center;
  8963. padding:2px 2px 2px 2px;
  8964. box-sizing:border-box;
  8965. width:100%;
  8966. }
  8967. #u32538_text {
  8968. border-width:0px;
  8969. white-space:nowrap;
  8970. text-transform:none;
  8971. }
  8972. #u32539 {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:0px;
  8976. top:0px;
  8977. width:0px;
  8978. height:0px;
  8979. }
  8980. #u32540_div {
  8981. border-width:0px;
  8982. position:absolute;
  8983. left:0px;
  8984. top:0px;
  8985. width:140px;
  8986. height:30px;
  8987. background:inherit;
  8988. background-color:rgba(51, 51, 51, 0);
  8989. box-sizing:border-box;
  8990. border-width:1px;
  8991. border-style:solid;
  8992. border-color:rgba(245, 154, 35, 1);
  8993. border-radius:4px;
  8994. -moz-box-shadow:none;
  8995. -webkit-box-shadow:none;
  8996. box-shadow:none;
  8997. font-size:11px;
  8998. }
  8999. #u32540 {
  9000. border-width:0px;
  9001. position:absolute;
  9002. left:3722px;
  9003. top:202px;
  9004. width:140px;
  9005. height:30px;
  9006. display:flex;
  9007. font-size:11px;
  9008. }
  9009. #u32540 .text {
  9010. position:absolute;
  9011. align-self:center;
  9012. padding:2px 2px 2px 2px;
  9013. box-sizing:border-box;
  9014. width:100%;
  9015. }
  9016. #u32540_text {
  9017. border-width:0px;
  9018. word-wrap:break-word;
  9019. text-transform:none;
  9020. visibility:hidden;
  9021. }
  9022. #u32541_input {
  9023. position:absolute;
  9024. left:0px;
  9025. top:0px;
  9026. width:126px;
  9027. height:23px;
  9028. padding:2px 2px 2px 2px;
  9029. font-family:'ArialMT', 'Arial', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:11px;
  9033. letter-spacing:normal;
  9034. color:#FFFFFF;
  9035. vertical-align:none;
  9036. text-align:left;
  9037. text-transform:none;
  9038. background-color:transparent;
  9039. border-color:transparent;
  9040. }
  9041. #u32541_input.disabled {
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:126px;
  9046. height:23px;
  9047. padding:2px 2px 2px 2px;
  9048. font-family:'ArialMT', 'Arial', sans-serif;
  9049. font-weight:400;
  9050. font-style:normal;
  9051. font-size:11px;
  9052. letter-spacing:normal;
  9053. color:#FFFFFF;
  9054. vertical-align:none;
  9055. text-align:left;
  9056. text-transform:none;
  9057. background-color:transparent;
  9058. border-color:transparent;
  9059. }
  9060. #u32541_div {
  9061. border-width:0px;
  9062. position:absolute;
  9063. left:0px;
  9064. top:0px;
  9065. width:126px;
  9066. height:23px;
  9067. background:inherit;
  9068. background-color:rgba(51, 51, 51, 0);
  9069. border:none;
  9070. border-radius:0px;
  9071. -moz-box-shadow:none;
  9072. -webkit-box-shadow:none;
  9073. box-shadow:none;
  9074. font-size:11px;
  9075. color:#FFFFFF;
  9076. }
  9077. #u32541 {
  9078. border-width:0px;
  9079. position:absolute;
  9080. left:3729px;
  9081. top:204px;
  9082. width:126px;
  9083. height:23px;
  9084. display:flex;
  9085. font-size:11px;
  9086. color:#FFFFFF;
  9087. }
  9088. #u32541 .text {
  9089. position:absolute;
  9090. align-self:flex-start;
  9091. padding:2px 2px 2px 2px;
  9092. box-sizing:border-box;
  9093. width:100%;
  9094. }
  9095. #u32541_div.disabled {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:0px;
  9099. top:0px;
  9100. width:126px;
  9101. height:23px;
  9102. background:inherit;
  9103. background-color:rgba(240, 240, 240, 1);
  9104. border:none;
  9105. border-radius:0px;
  9106. -moz-box-shadow:none;
  9107. -webkit-box-shadow:none;
  9108. box-shadow:none;
  9109. font-size:11px;
  9110. color:#FFFFFF;
  9111. }
  9112. #u32541.disabled {
  9113. }
  9114. .u32541_input_option {
  9115. font-size:11px;
  9116. }
  9117. #u32542 {
  9118. border-width:0px;
  9119. position:absolute;
  9120. left:0px;
  9121. top:0px;
  9122. width:0px;
  9123. height:0px;
  9124. }
  9125. #u32543_div {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:0px;
  9129. top:0px;
  9130. width:172px;
  9131. height:123px;
  9132. background:inherit;
  9133. background-color:rgba(51, 51, 51, 1);
  9134. border:none;
  9135. border-radius:5px;
  9136. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9137. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9138. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9139. }
  9140. #u32543 {
  9141. border-width:0px;
  9142. position:absolute;
  9143. left:3124px;
  9144. top:252px;
  9145. width:172px;
  9146. height:123px;
  9147. display:flex;
  9148. }
  9149. #u32543 .text {
  9150. position:absolute;
  9151. align-self:center;
  9152. padding:2px 2px 2px 2px;
  9153. box-sizing:border-box;
  9154. width:100%;
  9155. }
  9156. #u32543_text {
  9157. border-width:0px;
  9158. word-wrap:break-word;
  9159. text-transform:none;
  9160. visibility:hidden;
  9161. }
  9162. #u32544_img {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:0px;
  9166. top:0px;
  9167. width:30px;
  9168. height:30px;
  9169. }
  9170. #u32544 {
  9171. border-width:0px;
  9172. position:absolute;
  9173. left:3195px;
  9174. top:299px;
  9175. width:30px;
  9176. height:30px;
  9177. display:flex;
  9178. }
  9179. #u32544 .text {
  9180. position:absolute;
  9181. align-self:center;
  9182. padding:2px 2px 2px 2px;
  9183. box-sizing:border-box;
  9184. width:100%;
  9185. }
  9186. #u32544_text {
  9187. border-width:0px;
  9188. word-wrap:break-word;
  9189. text-transform:none;
  9190. visibility:hidden;
  9191. }
  9192. #u32545_div {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:0px;
  9196. top:0px;
  9197. width:101px;
  9198. height:21px;
  9199. background:inherit;
  9200. background-color:rgba(255, 255, 255, 0);
  9201. border:none;
  9202. border-radius:0px;
  9203. -moz-box-shadow:none;
  9204. -webkit-box-shadow:none;
  9205. box-shadow:none;
  9206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9207. font-weight:400;
  9208. font-style:normal;
  9209. font-size:12px;
  9210. color:#FFFFFF;
  9211. text-align:left;
  9212. }
  9213. #u32545 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:3124px;
  9217. top:252px;
  9218. width:101px;
  9219. height:21px;
  9220. display:flex;
  9221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:12px;
  9225. color:#FFFFFF;
  9226. text-align:left;
  9227. }
  9228. #u32545 .text {
  9229. position:absolute;
  9230. align-self:center;
  9231. padding:2px 2px 2px 2px;
  9232. box-sizing:border-box;
  9233. width:100%;
  9234. }
  9235. #u32545_text {
  9236. border-width:0px;
  9237. white-space:nowrap;
  9238. text-transform:none;
  9239. }
  9240. #u32546_div {
  9241. border-width:0px;
  9242. position:absolute;
  9243. left:0px;
  9244. top:0px;
  9245. width:25px;
  9246. height:18px;
  9247. background:inherit;
  9248. background-color:rgba(255, 255, 255, 0);
  9249. border:none;
  9250. border-radius:0px;
  9251. -moz-box-shadow:none;
  9252. -webkit-box-shadow:none;
  9253. box-shadow:none;
  9254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9255. font-weight:400;
  9256. font-style:normal;
  9257. font-size:10px;
  9258. color:#FFFFFF;
  9259. text-align:left;
  9260. }
  9261. #u32546 {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:3267px;
  9265. top:355px;
  9266. width:25px;
  9267. height:18px;
  9268. display:flex;
  9269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9270. font-weight:400;
  9271. font-style:normal;
  9272. font-size:10px;
  9273. color:#FFFFFF;
  9274. text-align:left;
  9275. }
  9276. #u32546 .text {
  9277. position:absolute;
  9278. align-self:center;
  9279. padding:2px 2px 2px 2px;
  9280. box-sizing:border-box;
  9281. width:100%;
  9282. }
  9283. #u32546_text {
  9284. border-width:0px;
  9285. white-space:nowrap;
  9286. text-transform:none;
  9287. }
  9288. #u32547 {
  9289. border-width:0px;
  9290. position:absolute;
  9291. left:0px;
  9292. top:0px;
  9293. width:0px;
  9294. height:0px;
  9295. }
  9296. #u32548_div {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:172px;
  9302. height:123px;
  9303. background:inherit;
  9304. background-color:rgba(51, 51, 51, 1);
  9305. border:none;
  9306. border-radius:5px;
  9307. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9308. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9309. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9310. }
  9311. #u32548 {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:3316px;
  9315. top:252px;
  9316. width:172px;
  9317. height:123px;
  9318. display:flex;
  9319. }
  9320. #u32548 .text {
  9321. position:absolute;
  9322. align-self:center;
  9323. padding:2px 2px 2px 2px;
  9324. box-sizing:border-box;
  9325. width:100%;
  9326. }
  9327. #u32548_text {
  9328. border-width:0px;
  9329. word-wrap:break-word;
  9330. text-transform:none;
  9331. visibility:hidden;
  9332. }
  9333. #u32549_img {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:30px;
  9339. height:30px;
  9340. }
  9341. #u32549 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:3387px;
  9345. top:299px;
  9346. width:30px;
  9347. height:30px;
  9348. display:flex;
  9349. }
  9350. #u32549 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:2px 2px 2px 2px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u32549_text {
  9358. border-width:0px;
  9359. word-wrap:break-word;
  9360. text-transform:none;
  9361. visibility:hidden;
  9362. }
  9363. #u32550_div {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:101px;
  9369. height:21px;
  9370. background:inherit;
  9371. background-color:rgba(255, 255, 255, 0);
  9372. border:none;
  9373. border-radius:0px;
  9374. -moz-box-shadow:none;
  9375. -webkit-box-shadow:none;
  9376. box-shadow:none;
  9377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:12px;
  9381. color:#FFFFFF;
  9382. text-align:left;
  9383. }
  9384. #u32550 {
  9385. border-width:0px;
  9386. position:absolute;
  9387. left:3316px;
  9388. top:252px;
  9389. width:101px;
  9390. height:21px;
  9391. display:flex;
  9392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9393. font-weight:400;
  9394. font-style:normal;
  9395. font-size:12px;
  9396. color:#FFFFFF;
  9397. text-align:left;
  9398. }
  9399. #u32550 .text {
  9400. position:absolute;
  9401. align-self:center;
  9402. padding:2px 2px 2px 2px;
  9403. box-sizing:border-box;
  9404. width:100%;
  9405. }
  9406. #u32550_text {
  9407. border-width:0px;
  9408. white-space:nowrap;
  9409. text-transform:none;
  9410. }
  9411. #u32551_div {
  9412. border-width:0px;
  9413. position:absolute;
  9414. left:0px;
  9415. top:0px;
  9416. width:25px;
  9417. height:18px;
  9418. background:inherit;
  9419. background-color:rgba(255, 255, 255, 0);
  9420. border:none;
  9421. border-radius:0px;
  9422. -moz-box-shadow:none;
  9423. -webkit-box-shadow:none;
  9424. box-shadow:none;
  9425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9426. font-weight:400;
  9427. font-style:normal;
  9428. font-size:10px;
  9429. color:#FFFFFF;
  9430. text-align:left;
  9431. }
  9432. #u32551 {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:3459px;
  9436. top:355px;
  9437. width:25px;
  9438. height:18px;
  9439. display:flex;
  9440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9441. font-weight:400;
  9442. font-style:normal;
  9443. font-size:10px;
  9444. color:#FFFFFF;
  9445. text-align:left;
  9446. }
  9447. #u32551 .text {
  9448. position:absolute;
  9449. align-self:center;
  9450. padding:2px 2px 2px 2px;
  9451. box-sizing:border-box;
  9452. width:100%;
  9453. }
  9454. #u32551_text {
  9455. border-width:0px;
  9456. white-space:nowrap;
  9457. text-transform:none;
  9458. }
  9459. #u32552 {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:0px;
  9463. top:0px;
  9464. width:0px;
  9465. height:0px;
  9466. }
  9467. #u32553_div {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:0px;
  9471. top:0px;
  9472. width:172px;
  9473. height:123px;
  9474. background:inherit;
  9475. background-color:rgba(51, 51, 51, 1);
  9476. border:none;
  9477. border-radius:5px;
  9478. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9479. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9480. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9481. }
  9482. #u32553 {
  9483. border-width:0px;
  9484. position:absolute;
  9485. left:3508px;
  9486. top:252px;
  9487. width:172px;
  9488. height:123px;
  9489. display:flex;
  9490. }
  9491. #u32553 .text {
  9492. position:absolute;
  9493. align-self:center;
  9494. padding:2px 2px 2px 2px;
  9495. box-sizing:border-box;
  9496. width:100%;
  9497. }
  9498. #u32553_text {
  9499. border-width:0px;
  9500. word-wrap:break-word;
  9501. text-transform:none;
  9502. visibility:hidden;
  9503. }
  9504. #u32554_img {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:0px;
  9508. top:0px;
  9509. width:30px;
  9510. height:30px;
  9511. }
  9512. #u32554 {
  9513. border-width:0px;
  9514. position:absolute;
  9515. left:3579px;
  9516. top:299px;
  9517. width:30px;
  9518. height:30px;
  9519. display:flex;
  9520. }
  9521. #u32554 .text {
  9522. position:absolute;
  9523. align-self:center;
  9524. padding:2px 2px 2px 2px;
  9525. box-sizing:border-box;
  9526. width:100%;
  9527. }
  9528. #u32554_text {
  9529. border-width:0px;
  9530. word-wrap:break-word;
  9531. text-transform:none;
  9532. visibility:hidden;
  9533. }
  9534. #u32555_div {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:0px;
  9538. top:0px;
  9539. width:101px;
  9540. height:21px;
  9541. background:inherit;
  9542. background-color:rgba(255, 255, 255, 0);
  9543. border:none;
  9544. border-radius:0px;
  9545. -moz-box-shadow:none;
  9546. -webkit-box-shadow:none;
  9547. box-shadow:none;
  9548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9549. font-weight:400;
  9550. font-style:normal;
  9551. font-size:12px;
  9552. color:#FFFFFF;
  9553. text-align:left;
  9554. }
  9555. #u32555 {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:3508px;
  9559. top:252px;
  9560. width:101px;
  9561. height:21px;
  9562. display:flex;
  9563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9564. font-weight:400;
  9565. font-style:normal;
  9566. font-size:12px;
  9567. color:#FFFFFF;
  9568. text-align:left;
  9569. }
  9570. #u32555 .text {
  9571. position:absolute;
  9572. align-self:center;
  9573. padding:2px 2px 2px 2px;
  9574. box-sizing:border-box;
  9575. width:100%;
  9576. }
  9577. #u32555_text {
  9578. border-width:0px;
  9579. white-space:nowrap;
  9580. text-transform:none;
  9581. }
  9582. #u32556_div {
  9583. border-width:0px;
  9584. position:absolute;
  9585. left:0px;
  9586. top:0px;
  9587. width:25px;
  9588. height:18px;
  9589. background:inherit;
  9590. background-color:rgba(255, 255, 255, 0);
  9591. border:none;
  9592. border-radius:0px;
  9593. -moz-box-shadow:none;
  9594. -webkit-box-shadow:none;
  9595. box-shadow:none;
  9596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:10px;
  9600. color:#FFFFFF;
  9601. text-align:left;
  9602. }
  9603. #u32556 {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:3651px;
  9607. top:355px;
  9608. width:25px;
  9609. height:18px;
  9610. display:flex;
  9611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9612. font-weight:400;
  9613. font-style:normal;
  9614. font-size:10px;
  9615. color:#FFFFFF;
  9616. text-align:left;
  9617. }
  9618. #u32556 .text {
  9619. position:absolute;
  9620. align-self:center;
  9621. padding:2px 2px 2px 2px;
  9622. box-sizing:border-box;
  9623. width:100%;
  9624. }
  9625. #u32556_text {
  9626. border-width:0px;
  9627. white-space:nowrap;
  9628. text-transform:none;
  9629. }
  9630. #u32557 {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:0px;
  9634. top:0px;
  9635. width:0px;
  9636. height:0px;
  9637. }
  9638. #u32558_div {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:0px;
  9642. top:0px;
  9643. width:172px;
  9644. height:123px;
  9645. background:inherit;
  9646. background-color:rgba(51, 51, 51, 1);
  9647. border:none;
  9648. border-radius:5px;
  9649. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9650. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9651. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9652. }
  9653. #u32558 {
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:3700px;
  9657. top:252px;
  9658. width:172px;
  9659. height:123px;
  9660. display:flex;
  9661. }
  9662. #u32558 .text {
  9663. position:absolute;
  9664. align-self:center;
  9665. padding:2px 2px 2px 2px;
  9666. box-sizing:border-box;
  9667. width:100%;
  9668. }
  9669. #u32558_text {
  9670. border-width:0px;
  9671. word-wrap:break-word;
  9672. text-transform:none;
  9673. visibility:hidden;
  9674. }
  9675. #u32559_img {
  9676. border-width:0px;
  9677. position:absolute;
  9678. left:0px;
  9679. top:0px;
  9680. width:30px;
  9681. height:30px;
  9682. }
  9683. #u32559 {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:3771px;
  9687. top:299px;
  9688. width:30px;
  9689. height:30px;
  9690. display:flex;
  9691. }
  9692. #u32559 .text {
  9693. position:absolute;
  9694. align-self:center;
  9695. padding:2px 2px 2px 2px;
  9696. box-sizing:border-box;
  9697. width:100%;
  9698. }
  9699. #u32559_text {
  9700. border-width:0px;
  9701. word-wrap:break-word;
  9702. text-transform:none;
  9703. visibility:hidden;
  9704. }
  9705. #u32560_div {
  9706. border-width:0px;
  9707. position:absolute;
  9708. left:0px;
  9709. top:0px;
  9710. width:101px;
  9711. height:21px;
  9712. background:inherit;
  9713. background-color:rgba(255, 255, 255, 0);
  9714. border:none;
  9715. border-radius:0px;
  9716. -moz-box-shadow:none;
  9717. -webkit-box-shadow:none;
  9718. box-shadow:none;
  9719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9720. font-weight:400;
  9721. font-style:normal;
  9722. font-size:12px;
  9723. color:#FFFFFF;
  9724. text-align:left;
  9725. }
  9726. #u32560 {
  9727. border-width:0px;
  9728. position:absolute;
  9729. left:3700px;
  9730. top:252px;
  9731. width:101px;
  9732. height:21px;
  9733. display:flex;
  9734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9735. font-weight:400;
  9736. font-style:normal;
  9737. font-size:12px;
  9738. color:#FFFFFF;
  9739. text-align:left;
  9740. }
  9741. #u32560 .text {
  9742. position:absolute;
  9743. align-self:center;
  9744. padding:2px 2px 2px 2px;
  9745. box-sizing:border-box;
  9746. width:100%;
  9747. }
  9748. #u32560_text {
  9749. border-width:0px;
  9750. white-space:nowrap;
  9751. text-transform:none;
  9752. }
  9753. #u32561_div {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:25px;
  9759. height:18px;
  9760. background:inherit;
  9761. background-color:rgba(255, 255, 255, 0);
  9762. border:none;
  9763. border-radius:0px;
  9764. -moz-box-shadow:none;
  9765. -webkit-box-shadow:none;
  9766. box-shadow:none;
  9767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:10px;
  9771. color:#FFFFFF;
  9772. text-align:left;
  9773. }
  9774. #u32561 {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:3843px;
  9778. top:355px;
  9779. width:25px;
  9780. height:18px;
  9781. display:flex;
  9782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9783. font-weight:400;
  9784. font-style:normal;
  9785. font-size:10px;
  9786. color:#FFFFFF;
  9787. text-align:left;
  9788. }
  9789. #u32561 .text {
  9790. position:absolute;
  9791. align-self:center;
  9792. padding:2px 2px 2px 2px;
  9793. box-sizing:border-box;
  9794. width:100%;
  9795. }
  9796. #u32561_text {
  9797. border-width:0px;
  9798. white-space:nowrap;
  9799. text-transform:none;
  9800. }
  9801. #u32562 {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:0px;
  9805. top:0px;
  9806. width:0px;
  9807. height:0px;
  9808. }
  9809. #u32563_div {
  9810. border-width:0px;
  9811. position:absolute;
  9812. left:0px;
  9813. top:0px;
  9814. width:172px;
  9815. height:123px;
  9816. background:inherit;
  9817. background-color:rgba(51, 51, 51, 1);
  9818. border:none;
  9819. border-radius:5px;
  9820. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9821. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9822. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9823. }
  9824. #u32563 {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:3892px;
  9828. top:252px;
  9829. width:172px;
  9830. height:123px;
  9831. display:flex;
  9832. }
  9833. #u32563 .text {
  9834. position:absolute;
  9835. align-self:center;
  9836. padding:2px 2px 2px 2px;
  9837. box-sizing:border-box;
  9838. width:100%;
  9839. }
  9840. #u32563_text {
  9841. border-width:0px;
  9842. word-wrap:break-word;
  9843. text-transform:none;
  9844. visibility:hidden;
  9845. }
  9846. #u32564_img {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:0px;
  9850. top:0px;
  9851. width:30px;
  9852. height:30px;
  9853. }
  9854. #u32564 {
  9855. border-width:0px;
  9856. position:absolute;
  9857. left:3963px;
  9858. top:299px;
  9859. width:30px;
  9860. height:30px;
  9861. display:flex;
  9862. }
  9863. #u32564 .text {
  9864. position:absolute;
  9865. align-self:center;
  9866. padding:2px 2px 2px 2px;
  9867. box-sizing:border-box;
  9868. width:100%;
  9869. }
  9870. #u32564_text {
  9871. border-width:0px;
  9872. word-wrap:break-word;
  9873. text-transform:none;
  9874. visibility:hidden;
  9875. }
  9876. #u32565_div {
  9877. border-width:0px;
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:101px;
  9882. height:21px;
  9883. background:inherit;
  9884. background-color:rgba(255, 255, 255, 0);
  9885. border:none;
  9886. border-radius:0px;
  9887. -moz-box-shadow:none;
  9888. -webkit-box-shadow:none;
  9889. box-shadow:none;
  9890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9891. font-weight:400;
  9892. font-style:normal;
  9893. font-size:12px;
  9894. color:#FFFFFF;
  9895. text-align:left;
  9896. }
  9897. #u32565 {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:3892px;
  9901. top:252px;
  9902. width:101px;
  9903. height:21px;
  9904. display:flex;
  9905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9906. font-weight:400;
  9907. font-style:normal;
  9908. font-size:12px;
  9909. color:#FFFFFF;
  9910. text-align:left;
  9911. }
  9912. #u32565 .text {
  9913. position:absolute;
  9914. align-self:center;
  9915. padding:2px 2px 2px 2px;
  9916. box-sizing:border-box;
  9917. width:100%;
  9918. }
  9919. #u32565_text {
  9920. border-width:0px;
  9921. white-space:nowrap;
  9922. text-transform:none;
  9923. }
  9924. #u32566_div {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:0px;
  9928. top:0px;
  9929. width:25px;
  9930. height:18px;
  9931. background:inherit;
  9932. background-color:rgba(255, 255, 255, 0);
  9933. border:none;
  9934. border-radius:0px;
  9935. -moz-box-shadow:none;
  9936. -webkit-box-shadow:none;
  9937. box-shadow:none;
  9938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9939. font-weight:400;
  9940. font-style:normal;
  9941. font-size:10px;
  9942. color:#FFFFFF;
  9943. text-align:left;
  9944. }
  9945. #u32566 {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:4035px;
  9949. top:355px;
  9950. width:25px;
  9951. height:18px;
  9952. display:flex;
  9953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9954. font-weight:400;
  9955. font-style:normal;
  9956. font-size:10px;
  9957. color:#FFFFFF;
  9958. text-align:left;
  9959. }
  9960. #u32566 .text {
  9961. position:absolute;
  9962. align-self:center;
  9963. padding:2px 2px 2px 2px;
  9964. box-sizing:border-box;
  9965. width:100%;
  9966. }
  9967. #u32566_text {
  9968. border-width:0px;
  9969. white-space:nowrap;
  9970. text-transform:none;
  9971. }
  9972. #u32567 {
  9973. border-width:0px;
  9974. position:absolute;
  9975. left:0px;
  9976. top:0px;
  9977. width:0px;
  9978. height:0px;
  9979. }
  9980. #u32568_div {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:172px;
  9986. height:123px;
  9987. background:inherit;
  9988. background-color:rgba(51, 51, 51, 1);
  9989. border:none;
  9990. border-radius:5px;
  9991. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9992. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9993. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  9994. }
  9995. #u32568 {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:3124px;
  9999. top:385px;
  10000. width:172px;
  10001. height:123px;
  10002. display:flex;
  10003. }
  10004. #u32568 .text {
  10005. position:absolute;
  10006. align-self:center;
  10007. padding:2px 2px 2px 2px;
  10008. box-sizing:border-box;
  10009. width:100%;
  10010. }
  10011. #u32568_text {
  10012. border-width:0px;
  10013. word-wrap:break-word;
  10014. text-transform:none;
  10015. visibility:hidden;
  10016. }
  10017. #u32569_img {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:0px;
  10021. top:0px;
  10022. width:30px;
  10023. height:30px;
  10024. }
  10025. #u32569 {
  10026. border-width:0px;
  10027. position:absolute;
  10028. left:3195px;
  10029. top:432px;
  10030. width:30px;
  10031. height:30px;
  10032. display:flex;
  10033. }
  10034. #u32569 .text {
  10035. position:absolute;
  10036. align-self:center;
  10037. padding:2px 2px 2px 2px;
  10038. box-sizing:border-box;
  10039. width:100%;
  10040. }
  10041. #u32569_text {
  10042. border-width:0px;
  10043. word-wrap:break-word;
  10044. text-transform:none;
  10045. visibility:hidden;
  10046. }
  10047. #u32570_div {
  10048. border-width:0px;
  10049. position:absolute;
  10050. left:0px;
  10051. top:0px;
  10052. width:101px;
  10053. height:21px;
  10054. background:inherit;
  10055. background-color:rgba(255, 255, 255, 0);
  10056. border:none;
  10057. border-radius:0px;
  10058. -moz-box-shadow:none;
  10059. -webkit-box-shadow:none;
  10060. box-shadow:none;
  10061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10062. font-weight:400;
  10063. font-style:normal;
  10064. font-size:12px;
  10065. color:#FFFFFF;
  10066. text-align:left;
  10067. }
  10068. #u32570 {
  10069. border-width:0px;
  10070. position:absolute;
  10071. left:3124px;
  10072. top:385px;
  10073. width:101px;
  10074. height:21px;
  10075. display:flex;
  10076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10077. font-weight:400;
  10078. font-style:normal;
  10079. font-size:12px;
  10080. color:#FFFFFF;
  10081. text-align:left;
  10082. }
  10083. #u32570 .text {
  10084. position:absolute;
  10085. align-self:center;
  10086. padding:2px 2px 2px 2px;
  10087. box-sizing:border-box;
  10088. width:100%;
  10089. }
  10090. #u32570_text {
  10091. border-width:0px;
  10092. white-space:nowrap;
  10093. text-transform:none;
  10094. }
  10095. #u32571_div {
  10096. border-width:0px;
  10097. position:absolute;
  10098. left:0px;
  10099. top:0px;
  10100. width:25px;
  10101. height:18px;
  10102. background:inherit;
  10103. background-color:rgba(255, 255, 255, 0);
  10104. border:none;
  10105. border-radius:0px;
  10106. -moz-box-shadow:none;
  10107. -webkit-box-shadow:none;
  10108. box-shadow:none;
  10109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10110. font-weight:400;
  10111. font-style:normal;
  10112. font-size:10px;
  10113. color:#FFFFFF;
  10114. text-align:left;
  10115. }
  10116. #u32571 {
  10117. border-width:0px;
  10118. position:absolute;
  10119. left:3267px;
  10120. top:488px;
  10121. width:25px;
  10122. height:18px;
  10123. display:flex;
  10124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10125. font-weight:400;
  10126. font-style:normal;
  10127. font-size:10px;
  10128. color:#FFFFFF;
  10129. text-align:left;
  10130. }
  10131. #u32571 .text {
  10132. position:absolute;
  10133. align-self:center;
  10134. padding:2px 2px 2px 2px;
  10135. box-sizing:border-box;
  10136. width:100%;
  10137. }
  10138. #u32571_text {
  10139. border-width:0px;
  10140. white-space:nowrap;
  10141. text-transform:none;
  10142. }
  10143. #u32572 {
  10144. border-width:0px;
  10145. position:absolute;
  10146. left:0px;
  10147. top:0px;
  10148. width:0px;
  10149. height:0px;
  10150. }
  10151. #u32573_div {
  10152. border-width:0px;
  10153. position:absolute;
  10154. left:0px;
  10155. top:0px;
  10156. width:172px;
  10157. height:123px;
  10158. background:inherit;
  10159. background-color:rgba(51, 51, 51, 1);
  10160. border:none;
  10161. border-radius:5px;
  10162. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10163. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10164. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10165. }
  10166. #u32573 {
  10167. border-width:0px;
  10168. position:absolute;
  10169. left:3316px;
  10170. top:385px;
  10171. width:172px;
  10172. height:123px;
  10173. display:flex;
  10174. }
  10175. #u32573 .text {
  10176. position:absolute;
  10177. align-self:center;
  10178. padding:2px 2px 2px 2px;
  10179. box-sizing:border-box;
  10180. width:100%;
  10181. }
  10182. #u32573_text {
  10183. border-width:0px;
  10184. word-wrap:break-word;
  10185. text-transform:none;
  10186. visibility:hidden;
  10187. }
  10188. #u32574_img {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:0px;
  10192. top:0px;
  10193. width:30px;
  10194. height:30px;
  10195. }
  10196. #u32574 {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:3387px;
  10200. top:432px;
  10201. width:30px;
  10202. height:30px;
  10203. display:flex;
  10204. }
  10205. #u32574 .text {
  10206. position:absolute;
  10207. align-self:center;
  10208. padding:2px 2px 2px 2px;
  10209. box-sizing:border-box;
  10210. width:100%;
  10211. }
  10212. #u32574_text {
  10213. border-width:0px;
  10214. word-wrap:break-word;
  10215. text-transform:none;
  10216. visibility:hidden;
  10217. }
  10218. #u32575_div {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:101px;
  10224. height:21px;
  10225. background:inherit;
  10226. background-color:rgba(255, 255, 255, 0);
  10227. border:none;
  10228. border-radius:0px;
  10229. -moz-box-shadow:none;
  10230. -webkit-box-shadow:none;
  10231. box-shadow:none;
  10232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10233. font-weight:400;
  10234. font-style:normal;
  10235. font-size:12px;
  10236. color:#FFFFFF;
  10237. text-align:left;
  10238. }
  10239. #u32575 {
  10240. border-width:0px;
  10241. position:absolute;
  10242. left:3316px;
  10243. top:385px;
  10244. width:101px;
  10245. height:21px;
  10246. display:flex;
  10247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10248. font-weight:400;
  10249. font-style:normal;
  10250. font-size:12px;
  10251. color:#FFFFFF;
  10252. text-align:left;
  10253. }
  10254. #u32575 .text {
  10255. position:absolute;
  10256. align-self:center;
  10257. padding:2px 2px 2px 2px;
  10258. box-sizing:border-box;
  10259. width:100%;
  10260. }
  10261. #u32575_text {
  10262. border-width:0px;
  10263. white-space:nowrap;
  10264. text-transform:none;
  10265. }
  10266. #u32576_div {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:0px;
  10270. top:0px;
  10271. width:25px;
  10272. height:18px;
  10273. background:inherit;
  10274. background-color:rgba(255, 255, 255, 0);
  10275. border:none;
  10276. border-radius:0px;
  10277. -moz-box-shadow:none;
  10278. -webkit-box-shadow:none;
  10279. box-shadow:none;
  10280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10281. font-weight:400;
  10282. font-style:normal;
  10283. font-size:10px;
  10284. color:#FFFFFF;
  10285. text-align:left;
  10286. }
  10287. #u32576 {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:3459px;
  10291. top:488px;
  10292. width:25px;
  10293. height:18px;
  10294. display:flex;
  10295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10296. font-weight:400;
  10297. font-style:normal;
  10298. font-size:10px;
  10299. color:#FFFFFF;
  10300. text-align:left;
  10301. }
  10302. #u32576 .text {
  10303. position:absolute;
  10304. align-self:center;
  10305. padding:2px 2px 2px 2px;
  10306. box-sizing:border-box;
  10307. width:100%;
  10308. }
  10309. #u32576_text {
  10310. border-width:0px;
  10311. white-space:nowrap;
  10312. text-transform:none;
  10313. }
  10314. #u32577 {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:0px;
  10318. top:0px;
  10319. width:0px;
  10320. height:0px;
  10321. }
  10322. #u32578_div {
  10323. border-width:0px;
  10324. position:absolute;
  10325. left:0px;
  10326. top:0px;
  10327. width:172px;
  10328. height:123px;
  10329. background:inherit;
  10330. background-color:rgba(51, 51, 51, 1);
  10331. border:none;
  10332. border-radius:5px;
  10333. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10334. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10335. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10336. }
  10337. #u32578 {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:3508px;
  10341. top:385px;
  10342. width:172px;
  10343. height:123px;
  10344. display:flex;
  10345. }
  10346. #u32578 .text {
  10347. position:absolute;
  10348. align-self:center;
  10349. padding:2px 2px 2px 2px;
  10350. box-sizing:border-box;
  10351. width:100%;
  10352. }
  10353. #u32578_text {
  10354. border-width:0px;
  10355. word-wrap:break-word;
  10356. text-transform:none;
  10357. visibility:hidden;
  10358. }
  10359. #u32579_img {
  10360. border-width:0px;
  10361. position:absolute;
  10362. left:0px;
  10363. top:0px;
  10364. width:30px;
  10365. height:30px;
  10366. }
  10367. #u32579 {
  10368. border-width:0px;
  10369. position:absolute;
  10370. left:3579px;
  10371. top:432px;
  10372. width:30px;
  10373. height:30px;
  10374. display:flex;
  10375. }
  10376. #u32579 .text {
  10377. position:absolute;
  10378. align-self:center;
  10379. padding:2px 2px 2px 2px;
  10380. box-sizing:border-box;
  10381. width:100%;
  10382. }
  10383. #u32579_text {
  10384. border-width:0px;
  10385. word-wrap:break-word;
  10386. text-transform:none;
  10387. visibility:hidden;
  10388. }
  10389. #u32580_div {
  10390. border-width:0px;
  10391. position:absolute;
  10392. left:0px;
  10393. top:0px;
  10394. width:101px;
  10395. height:21px;
  10396. background:inherit;
  10397. background-color:rgba(255, 255, 255, 0);
  10398. border:none;
  10399. border-radius:0px;
  10400. -moz-box-shadow:none;
  10401. -webkit-box-shadow:none;
  10402. box-shadow:none;
  10403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10404. font-weight:400;
  10405. font-style:normal;
  10406. font-size:12px;
  10407. color:#FFFFFF;
  10408. text-align:left;
  10409. }
  10410. #u32580 {
  10411. border-width:0px;
  10412. position:absolute;
  10413. left:3508px;
  10414. top:385px;
  10415. width:101px;
  10416. height:21px;
  10417. display:flex;
  10418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10419. font-weight:400;
  10420. font-style:normal;
  10421. font-size:12px;
  10422. color:#FFFFFF;
  10423. text-align:left;
  10424. }
  10425. #u32580 .text {
  10426. position:absolute;
  10427. align-self:center;
  10428. padding:2px 2px 2px 2px;
  10429. box-sizing:border-box;
  10430. width:100%;
  10431. }
  10432. #u32580_text {
  10433. border-width:0px;
  10434. white-space:nowrap;
  10435. text-transform:none;
  10436. }
  10437. #u32581_div {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:25px;
  10443. height:18px;
  10444. background:inherit;
  10445. background-color:rgba(255, 255, 255, 0);
  10446. border:none;
  10447. border-radius:0px;
  10448. -moz-box-shadow:none;
  10449. -webkit-box-shadow:none;
  10450. box-shadow:none;
  10451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10452. font-weight:400;
  10453. font-style:normal;
  10454. font-size:10px;
  10455. color:#FFFFFF;
  10456. text-align:left;
  10457. }
  10458. #u32581 {
  10459. border-width:0px;
  10460. position:absolute;
  10461. left:3651px;
  10462. top:488px;
  10463. width:25px;
  10464. height:18px;
  10465. display:flex;
  10466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10467. font-weight:400;
  10468. font-style:normal;
  10469. font-size:10px;
  10470. color:#FFFFFF;
  10471. text-align:left;
  10472. }
  10473. #u32581 .text {
  10474. position:absolute;
  10475. align-self:center;
  10476. padding:2px 2px 2px 2px;
  10477. box-sizing:border-box;
  10478. width:100%;
  10479. }
  10480. #u32581_text {
  10481. border-width:0px;
  10482. white-space:nowrap;
  10483. text-transform:none;
  10484. }
  10485. #u32582 {
  10486. border-width:0px;
  10487. position:absolute;
  10488. left:0px;
  10489. top:0px;
  10490. width:0px;
  10491. height:0px;
  10492. }
  10493. #u32583_div {
  10494. border-width:0px;
  10495. position:absolute;
  10496. left:0px;
  10497. top:0px;
  10498. width:172px;
  10499. height:123px;
  10500. background:inherit;
  10501. background-color:rgba(51, 51, 51, 1);
  10502. border:none;
  10503. border-radius:5px;
  10504. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10505. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10506. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10507. }
  10508. #u32583 {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:3700px;
  10512. top:385px;
  10513. width:172px;
  10514. height:123px;
  10515. display:flex;
  10516. }
  10517. #u32583 .text {
  10518. position:absolute;
  10519. align-self:center;
  10520. padding:2px 2px 2px 2px;
  10521. box-sizing:border-box;
  10522. width:100%;
  10523. }
  10524. #u32583_text {
  10525. border-width:0px;
  10526. word-wrap:break-word;
  10527. text-transform:none;
  10528. visibility:hidden;
  10529. }
  10530. #u32584_img {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:0px;
  10534. top:0px;
  10535. width:30px;
  10536. height:30px;
  10537. }
  10538. #u32584 {
  10539. border-width:0px;
  10540. position:absolute;
  10541. left:3771px;
  10542. top:432px;
  10543. width:30px;
  10544. height:30px;
  10545. display:flex;
  10546. }
  10547. #u32584 .text {
  10548. position:absolute;
  10549. align-self:center;
  10550. padding:2px 2px 2px 2px;
  10551. box-sizing:border-box;
  10552. width:100%;
  10553. }
  10554. #u32584_text {
  10555. border-width:0px;
  10556. word-wrap:break-word;
  10557. text-transform:none;
  10558. visibility:hidden;
  10559. }
  10560. #u32585_div {
  10561. border-width:0px;
  10562. position:absolute;
  10563. left:0px;
  10564. top:0px;
  10565. width:101px;
  10566. height:21px;
  10567. background:inherit;
  10568. background-color:rgba(255, 255, 255, 0);
  10569. border:none;
  10570. border-radius:0px;
  10571. -moz-box-shadow:none;
  10572. -webkit-box-shadow:none;
  10573. box-shadow:none;
  10574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10575. font-weight:400;
  10576. font-style:normal;
  10577. font-size:12px;
  10578. color:#FFFFFF;
  10579. text-align:left;
  10580. }
  10581. #u32585 {
  10582. border-width:0px;
  10583. position:absolute;
  10584. left:3700px;
  10585. top:385px;
  10586. width:101px;
  10587. height:21px;
  10588. display:flex;
  10589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10590. font-weight:400;
  10591. font-style:normal;
  10592. font-size:12px;
  10593. color:#FFFFFF;
  10594. text-align:left;
  10595. }
  10596. #u32585 .text {
  10597. position:absolute;
  10598. align-self:center;
  10599. padding:2px 2px 2px 2px;
  10600. box-sizing:border-box;
  10601. width:100%;
  10602. }
  10603. #u32585_text {
  10604. border-width:0px;
  10605. white-space:nowrap;
  10606. text-transform:none;
  10607. }
  10608. #u32586_div {
  10609. border-width:0px;
  10610. position:absolute;
  10611. left:0px;
  10612. top:0px;
  10613. width:25px;
  10614. height:18px;
  10615. background:inherit;
  10616. background-color:rgba(255, 255, 255, 0);
  10617. border:none;
  10618. border-radius:0px;
  10619. -moz-box-shadow:none;
  10620. -webkit-box-shadow:none;
  10621. box-shadow:none;
  10622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10623. font-weight:400;
  10624. font-style:normal;
  10625. font-size:10px;
  10626. color:#FFFFFF;
  10627. text-align:left;
  10628. }
  10629. #u32586 {
  10630. border-width:0px;
  10631. position:absolute;
  10632. left:3843px;
  10633. top:488px;
  10634. width:25px;
  10635. height:18px;
  10636. display:flex;
  10637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10638. font-weight:400;
  10639. font-style:normal;
  10640. font-size:10px;
  10641. color:#FFFFFF;
  10642. text-align:left;
  10643. }
  10644. #u32586 .text {
  10645. position:absolute;
  10646. align-self:center;
  10647. padding:2px 2px 2px 2px;
  10648. box-sizing:border-box;
  10649. width:100%;
  10650. }
  10651. #u32586_text {
  10652. border-width:0px;
  10653. white-space:nowrap;
  10654. text-transform:none;
  10655. }
  10656. #u32587 {
  10657. border-width:0px;
  10658. position:absolute;
  10659. left:0px;
  10660. top:0px;
  10661. width:0px;
  10662. height:0px;
  10663. }
  10664. #u32588_div {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:0px;
  10668. top:0px;
  10669. width:172px;
  10670. height:123px;
  10671. background:inherit;
  10672. background-color:rgba(51, 51, 51, 1);
  10673. border:none;
  10674. border-radius:5px;
  10675. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10676. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10677. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10678. }
  10679. #u32588 {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:3892px;
  10683. top:385px;
  10684. width:172px;
  10685. height:123px;
  10686. display:flex;
  10687. }
  10688. #u32588 .text {
  10689. position:absolute;
  10690. align-self:center;
  10691. padding:2px 2px 2px 2px;
  10692. box-sizing:border-box;
  10693. width:100%;
  10694. }
  10695. #u32588_text {
  10696. border-width:0px;
  10697. word-wrap:break-word;
  10698. text-transform:none;
  10699. visibility:hidden;
  10700. }
  10701. #u32589_img {
  10702. border-width:0px;
  10703. position:absolute;
  10704. left:0px;
  10705. top:0px;
  10706. width:30px;
  10707. height:30px;
  10708. }
  10709. #u32589 {
  10710. border-width:0px;
  10711. position:absolute;
  10712. left:3963px;
  10713. top:432px;
  10714. width:30px;
  10715. height:30px;
  10716. display:flex;
  10717. }
  10718. #u32589 .text {
  10719. position:absolute;
  10720. align-self:center;
  10721. padding:2px 2px 2px 2px;
  10722. box-sizing:border-box;
  10723. width:100%;
  10724. }
  10725. #u32589_text {
  10726. border-width:0px;
  10727. word-wrap:break-word;
  10728. text-transform:none;
  10729. visibility:hidden;
  10730. }
  10731. #u32590_div {
  10732. border-width:0px;
  10733. position:absolute;
  10734. left:0px;
  10735. top:0px;
  10736. width:101px;
  10737. height:21px;
  10738. background:inherit;
  10739. background-color:rgba(255, 255, 255, 0);
  10740. border:none;
  10741. border-radius:0px;
  10742. -moz-box-shadow:none;
  10743. -webkit-box-shadow:none;
  10744. box-shadow:none;
  10745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10746. font-weight:400;
  10747. font-style:normal;
  10748. font-size:12px;
  10749. color:#FFFFFF;
  10750. text-align:left;
  10751. }
  10752. #u32590 {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:3892px;
  10756. top:385px;
  10757. width:101px;
  10758. height:21px;
  10759. display:flex;
  10760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10761. font-weight:400;
  10762. font-style:normal;
  10763. font-size:12px;
  10764. color:#FFFFFF;
  10765. text-align:left;
  10766. }
  10767. #u32590 .text {
  10768. position:absolute;
  10769. align-self:center;
  10770. padding:2px 2px 2px 2px;
  10771. box-sizing:border-box;
  10772. width:100%;
  10773. }
  10774. #u32590_text {
  10775. border-width:0px;
  10776. white-space:nowrap;
  10777. text-transform:none;
  10778. }
  10779. #u32591_div {
  10780. border-width:0px;
  10781. position:absolute;
  10782. left:0px;
  10783. top:0px;
  10784. width:25px;
  10785. height:18px;
  10786. background:inherit;
  10787. background-color:rgba(255, 255, 255, 0);
  10788. border:none;
  10789. border-radius:0px;
  10790. -moz-box-shadow:none;
  10791. -webkit-box-shadow:none;
  10792. box-shadow:none;
  10793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10794. font-weight:400;
  10795. font-style:normal;
  10796. font-size:10px;
  10797. color:#FFFFFF;
  10798. text-align:left;
  10799. }
  10800. #u32591 {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:4035px;
  10804. top:488px;
  10805. width:25px;
  10806. height:18px;
  10807. display:flex;
  10808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10809. font-weight:400;
  10810. font-style:normal;
  10811. font-size:10px;
  10812. color:#FFFFFF;
  10813. text-align:left;
  10814. }
  10815. #u32591 .text {
  10816. position:absolute;
  10817. align-self:center;
  10818. padding:2px 2px 2px 2px;
  10819. box-sizing:border-box;
  10820. width:100%;
  10821. }
  10822. #u32591_text {
  10823. border-width:0px;
  10824. white-space:nowrap;
  10825. text-transform:none;
  10826. }
  10827. #u32592 {
  10828. border-width:0px;
  10829. position:absolute;
  10830. left:0px;
  10831. top:0px;
  10832. width:0px;
  10833. height:0px;
  10834. }
  10835. #u32593_div {
  10836. border-width:0px;
  10837. position:absolute;
  10838. left:0px;
  10839. top:0px;
  10840. width:172px;
  10841. height:123px;
  10842. background:inherit;
  10843. background-color:rgba(51, 51, 51, 1);
  10844. border:none;
  10845. border-radius:5px;
  10846. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10847. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10848. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  10849. }
  10850. #u32593 {
  10851. border-width:0px;
  10852. position:absolute;
  10853. left:3124px;
  10854. top:518px;
  10855. width:172px;
  10856. height:123px;
  10857. display:flex;
  10858. }
  10859. #u32593 .text {
  10860. position:absolute;
  10861. align-self:center;
  10862. padding:2px 2px 2px 2px;
  10863. box-sizing:border-box;
  10864. width:100%;
  10865. }
  10866. #u32593_text {
  10867. border-width:0px;
  10868. word-wrap:break-word;
  10869. text-transform:none;
  10870. visibility:hidden;
  10871. }
  10872. #u32594_img {
  10873. border-width:0px;
  10874. position:absolute;
  10875. left:0px;
  10876. top:0px;
  10877. width:30px;
  10878. height:30px;
  10879. }
  10880. #u32594 {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:3195px;
  10884. top:565px;
  10885. width:30px;
  10886. height:30px;
  10887. display:flex;
  10888. }
  10889. #u32594 .text {
  10890. position:absolute;
  10891. align-self:center;
  10892. padding:2px 2px 2px 2px;
  10893. box-sizing:border-box;
  10894. width:100%;
  10895. }
  10896. #u32594_text {
  10897. border-width:0px;
  10898. word-wrap:break-word;
  10899. text-transform:none;
  10900. visibility:hidden;
  10901. }
  10902. #u32595_div {
  10903. border-width:0px;
  10904. position:absolute;
  10905. left:0px;
  10906. top:0px;
  10907. width:101px;
  10908. height:21px;
  10909. background:inherit;
  10910. background-color:rgba(255, 255, 255, 0);
  10911. border:none;
  10912. border-radius:0px;
  10913. -moz-box-shadow:none;
  10914. -webkit-box-shadow:none;
  10915. box-shadow:none;
  10916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10917. font-weight:400;
  10918. font-style:normal;
  10919. font-size:12px;
  10920. color:#FFFFFF;
  10921. text-align:left;
  10922. }
  10923. #u32595 {
  10924. border-width:0px;
  10925. position:absolute;
  10926. left:3124px;
  10927. top:518px;
  10928. width:101px;
  10929. height:21px;
  10930. display:flex;
  10931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10932. font-weight:400;
  10933. font-style:normal;
  10934. font-size:12px;
  10935. color:#FFFFFF;
  10936. text-align:left;
  10937. }
  10938. #u32595 .text {
  10939. position:absolute;
  10940. align-self:center;
  10941. padding:2px 2px 2px 2px;
  10942. box-sizing:border-box;
  10943. width:100%;
  10944. }
  10945. #u32595_text {
  10946. border-width:0px;
  10947. white-space:nowrap;
  10948. text-transform:none;
  10949. }
  10950. #u32596_div {
  10951. border-width:0px;
  10952. position:absolute;
  10953. left:0px;
  10954. top:0px;
  10955. width:25px;
  10956. height:18px;
  10957. background:inherit;
  10958. background-color:rgba(255, 255, 255, 0);
  10959. border:none;
  10960. border-radius:0px;
  10961. -moz-box-shadow:none;
  10962. -webkit-box-shadow:none;
  10963. box-shadow:none;
  10964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10965. font-weight:400;
  10966. font-style:normal;
  10967. font-size:10px;
  10968. color:#FFFFFF;
  10969. text-align:left;
  10970. }
  10971. #u32596 {
  10972. border-width:0px;
  10973. position:absolute;
  10974. left:3267px;
  10975. top:621px;
  10976. width:25px;
  10977. height:18px;
  10978. display:flex;
  10979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10980. font-weight:400;
  10981. font-style:normal;
  10982. font-size:10px;
  10983. color:#FFFFFF;
  10984. text-align:left;
  10985. }
  10986. #u32596 .text {
  10987. position:absolute;
  10988. align-self:center;
  10989. padding:2px 2px 2px 2px;
  10990. box-sizing:border-box;
  10991. width:100%;
  10992. }
  10993. #u32596_text {
  10994. border-width:0px;
  10995. white-space:nowrap;
  10996. text-transform:none;
  10997. }
  10998. #u32597 {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:0px;
  11002. top:0px;
  11003. width:0px;
  11004. height:0px;
  11005. }
  11006. #u32598_div {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:0px;
  11010. top:0px;
  11011. width:172px;
  11012. height:123px;
  11013. background:inherit;
  11014. background-color:rgba(51, 51, 51, 1);
  11015. border:none;
  11016. border-radius:5px;
  11017. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11018. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11019. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11020. }
  11021. #u32598 {
  11022. border-width:0px;
  11023. position:absolute;
  11024. left:3316px;
  11025. top:518px;
  11026. width:172px;
  11027. height:123px;
  11028. display:flex;
  11029. }
  11030. #u32598 .text {
  11031. position:absolute;
  11032. align-self:center;
  11033. padding:2px 2px 2px 2px;
  11034. box-sizing:border-box;
  11035. width:100%;
  11036. }
  11037. #u32598_text {
  11038. border-width:0px;
  11039. word-wrap:break-word;
  11040. text-transform:none;
  11041. visibility:hidden;
  11042. }
  11043. #u32599_img {
  11044. border-width:0px;
  11045. position:absolute;
  11046. left:0px;
  11047. top:0px;
  11048. width:30px;
  11049. height:30px;
  11050. }
  11051. #u32599 {
  11052. border-width:0px;
  11053. position:absolute;
  11054. left:3387px;
  11055. top:565px;
  11056. width:30px;
  11057. height:30px;
  11058. display:flex;
  11059. }
  11060. #u32599 .text {
  11061. position:absolute;
  11062. align-self:center;
  11063. padding:2px 2px 2px 2px;
  11064. box-sizing:border-box;
  11065. width:100%;
  11066. }
  11067. #u32599_text {
  11068. border-width:0px;
  11069. word-wrap:break-word;
  11070. text-transform:none;
  11071. visibility:hidden;
  11072. }
  11073. #u32600_div {
  11074. border-width:0px;
  11075. position:absolute;
  11076. left:0px;
  11077. top:0px;
  11078. width:101px;
  11079. height:21px;
  11080. background:inherit;
  11081. background-color:rgba(255, 255, 255, 0);
  11082. border:none;
  11083. border-radius:0px;
  11084. -moz-box-shadow:none;
  11085. -webkit-box-shadow:none;
  11086. box-shadow:none;
  11087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11088. font-weight:400;
  11089. font-style:normal;
  11090. font-size:12px;
  11091. color:#FFFFFF;
  11092. text-align:left;
  11093. }
  11094. #u32600 {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:3316px;
  11098. top:518px;
  11099. width:101px;
  11100. height:21px;
  11101. display:flex;
  11102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11103. font-weight:400;
  11104. font-style:normal;
  11105. font-size:12px;
  11106. color:#FFFFFF;
  11107. text-align:left;
  11108. }
  11109. #u32600 .text {
  11110. position:absolute;
  11111. align-self:center;
  11112. padding:2px 2px 2px 2px;
  11113. box-sizing:border-box;
  11114. width:100%;
  11115. }
  11116. #u32600_text {
  11117. border-width:0px;
  11118. white-space:nowrap;
  11119. text-transform:none;
  11120. }
  11121. #u32601_div {
  11122. border-width:0px;
  11123. position:absolute;
  11124. left:0px;
  11125. top:0px;
  11126. width:25px;
  11127. height:18px;
  11128. background:inherit;
  11129. background-color:rgba(255, 255, 255, 0);
  11130. border:none;
  11131. border-radius:0px;
  11132. -moz-box-shadow:none;
  11133. -webkit-box-shadow:none;
  11134. box-shadow:none;
  11135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11136. font-weight:400;
  11137. font-style:normal;
  11138. font-size:10px;
  11139. color:#FFFFFF;
  11140. text-align:left;
  11141. }
  11142. #u32601 {
  11143. border-width:0px;
  11144. position:absolute;
  11145. left:3459px;
  11146. top:621px;
  11147. width:25px;
  11148. height:18px;
  11149. display:flex;
  11150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11151. font-weight:400;
  11152. font-style:normal;
  11153. font-size:10px;
  11154. color:#FFFFFF;
  11155. text-align:left;
  11156. }
  11157. #u32601 .text {
  11158. position:absolute;
  11159. align-self:center;
  11160. padding:2px 2px 2px 2px;
  11161. box-sizing:border-box;
  11162. width:100%;
  11163. }
  11164. #u32601_text {
  11165. border-width:0px;
  11166. white-space:nowrap;
  11167. text-transform:none;
  11168. }
  11169. #u32602 {
  11170. border-width:0px;
  11171. position:absolute;
  11172. left:0px;
  11173. top:0px;
  11174. width:0px;
  11175. height:0px;
  11176. }
  11177. #u32603_div {
  11178. border-width:0px;
  11179. position:absolute;
  11180. left:0px;
  11181. top:0px;
  11182. width:172px;
  11183. height:123px;
  11184. background:inherit;
  11185. background-color:rgba(51, 51, 51, 1);
  11186. border:none;
  11187. border-radius:5px;
  11188. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11189. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11190. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11191. }
  11192. #u32603 {
  11193. border-width:0px;
  11194. position:absolute;
  11195. left:3508px;
  11196. top:518px;
  11197. width:172px;
  11198. height:123px;
  11199. display:flex;
  11200. }
  11201. #u32603 .text {
  11202. position:absolute;
  11203. align-self:center;
  11204. padding:2px 2px 2px 2px;
  11205. box-sizing:border-box;
  11206. width:100%;
  11207. }
  11208. #u32603_text {
  11209. border-width:0px;
  11210. word-wrap:break-word;
  11211. text-transform:none;
  11212. visibility:hidden;
  11213. }
  11214. #u32604_img {
  11215. border-width:0px;
  11216. position:absolute;
  11217. left:0px;
  11218. top:0px;
  11219. width:30px;
  11220. height:30px;
  11221. }
  11222. #u32604 {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:3579px;
  11226. top:565px;
  11227. width:30px;
  11228. height:30px;
  11229. display:flex;
  11230. }
  11231. #u32604 .text {
  11232. position:absolute;
  11233. align-self:center;
  11234. padding:2px 2px 2px 2px;
  11235. box-sizing:border-box;
  11236. width:100%;
  11237. }
  11238. #u32604_text {
  11239. border-width:0px;
  11240. word-wrap:break-word;
  11241. text-transform:none;
  11242. visibility:hidden;
  11243. }
  11244. #u32605_div {
  11245. border-width:0px;
  11246. position:absolute;
  11247. left:0px;
  11248. top:0px;
  11249. width:101px;
  11250. height:21px;
  11251. background:inherit;
  11252. background-color:rgba(255, 255, 255, 0);
  11253. border:none;
  11254. border-radius:0px;
  11255. -moz-box-shadow:none;
  11256. -webkit-box-shadow:none;
  11257. box-shadow:none;
  11258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11259. font-weight:400;
  11260. font-style:normal;
  11261. font-size:12px;
  11262. color:#FFFFFF;
  11263. text-align:left;
  11264. }
  11265. #u32605 {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:3508px;
  11269. top:518px;
  11270. width:101px;
  11271. height:21px;
  11272. display:flex;
  11273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11274. font-weight:400;
  11275. font-style:normal;
  11276. font-size:12px;
  11277. color:#FFFFFF;
  11278. text-align:left;
  11279. }
  11280. #u32605 .text {
  11281. position:absolute;
  11282. align-self:center;
  11283. padding:2px 2px 2px 2px;
  11284. box-sizing:border-box;
  11285. width:100%;
  11286. }
  11287. #u32605_text {
  11288. border-width:0px;
  11289. white-space:nowrap;
  11290. text-transform:none;
  11291. }
  11292. #u32606_div {
  11293. border-width:0px;
  11294. position:absolute;
  11295. left:0px;
  11296. top:0px;
  11297. width:25px;
  11298. height:18px;
  11299. background:inherit;
  11300. background-color:rgba(255, 255, 255, 0);
  11301. border:none;
  11302. border-radius:0px;
  11303. -moz-box-shadow:none;
  11304. -webkit-box-shadow:none;
  11305. box-shadow:none;
  11306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11307. font-weight:400;
  11308. font-style:normal;
  11309. font-size:10px;
  11310. color:#FACD91;
  11311. text-align:left;
  11312. }
  11313. #u32606 {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:3651px;
  11317. top:621px;
  11318. width:25px;
  11319. height:18px;
  11320. display:flex;
  11321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11322. font-weight:400;
  11323. font-style:normal;
  11324. font-size:10px;
  11325. color:#FACD91;
  11326. text-align:left;
  11327. }
  11328. #u32606 .text {
  11329. position:absolute;
  11330. align-self:center;
  11331. padding:2px 2px 2px 2px;
  11332. box-sizing:border-box;
  11333. width:100%;
  11334. }
  11335. #u32606_text {
  11336. border-width:0px;
  11337. white-space:nowrap;
  11338. text-transform:none;
  11339. }
  11340. #u32607 {
  11341. border-width:0px;
  11342. position:absolute;
  11343. left:0px;
  11344. top:0px;
  11345. width:0px;
  11346. height:0px;
  11347. }
  11348. #u32608_div {
  11349. border-width:0px;
  11350. position:absolute;
  11351. left:0px;
  11352. top:0px;
  11353. width:172px;
  11354. height:123px;
  11355. background:inherit;
  11356. background-color:rgba(51, 51, 51, 1);
  11357. border:none;
  11358. border-radius:5px;
  11359. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11360. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11361. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11362. }
  11363. #u32608 {
  11364. border-width:0px;
  11365. position:absolute;
  11366. left:3700px;
  11367. top:518px;
  11368. width:172px;
  11369. height:123px;
  11370. display:flex;
  11371. }
  11372. #u32608 .text {
  11373. position:absolute;
  11374. align-self:center;
  11375. padding:2px 2px 2px 2px;
  11376. box-sizing:border-box;
  11377. width:100%;
  11378. }
  11379. #u32608_text {
  11380. border-width:0px;
  11381. word-wrap:break-word;
  11382. text-transform:none;
  11383. visibility:hidden;
  11384. }
  11385. #u32609_img {
  11386. border-width:0px;
  11387. position:absolute;
  11388. left:0px;
  11389. top:0px;
  11390. width:30px;
  11391. height:30px;
  11392. }
  11393. #u32609 {
  11394. border-width:0px;
  11395. position:absolute;
  11396. left:3771px;
  11397. top:565px;
  11398. width:30px;
  11399. height:30px;
  11400. display:flex;
  11401. }
  11402. #u32609 .text {
  11403. position:absolute;
  11404. align-self:center;
  11405. padding:2px 2px 2px 2px;
  11406. box-sizing:border-box;
  11407. width:100%;
  11408. }
  11409. #u32609_text {
  11410. border-width:0px;
  11411. word-wrap:break-word;
  11412. text-transform:none;
  11413. visibility:hidden;
  11414. }
  11415. #u32610_div {
  11416. border-width:0px;
  11417. position:absolute;
  11418. left:0px;
  11419. top:0px;
  11420. width:101px;
  11421. height:21px;
  11422. background:inherit;
  11423. background-color:rgba(255, 255, 255, 0);
  11424. border:none;
  11425. border-radius:0px;
  11426. -moz-box-shadow:none;
  11427. -webkit-box-shadow:none;
  11428. box-shadow:none;
  11429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11430. font-weight:400;
  11431. font-style:normal;
  11432. font-size:12px;
  11433. color:#FFFFFF;
  11434. text-align:left;
  11435. }
  11436. #u32610 {
  11437. border-width:0px;
  11438. position:absolute;
  11439. left:3700px;
  11440. top:518px;
  11441. width:101px;
  11442. height:21px;
  11443. display:flex;
  11444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11445. font-weight:400;
  11446. font-style:normal;
  11447. font-size:12px;
  11448. color:#FFFFFF;
  11449. text-align:left;
  11450. }
  11451. #u32610 .text {
  11452. position:absolute;
  11453. align-self:center;
  11454. padding:2px 2px 2px 2px;
  11455. box-sizing:border-box;
  11456. width:100%;
  11457. }
  11458. #u32610_text {
  11459. border-width:0px;
  11460. white-space:nowrap;
  11461. text-transform:none;
  11462. }
  11463. #u32611_div {
  11464. border-width:0px;
  11465. position:absolute;
  11466. left:0px;
  11467. top:0px;
  11468. width:25px;
  11469. height:18px;
  11470. background:inherit;
  11471. background-color:rgba(255, 255, 255, 0);
  11472. border:none;
  11473. border-radius:0px;
  11474. -moz-box-shadow:none;
  11475. -webkit-box-shadow:none;
  11476. box-shadow:none;
  11477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11478. font-weight:400;
  11479. font-style:normal;
  11480. font-size:10px;
  11481. color:#D9001B;
  11482. text-align:left;
  11483. }
  11484. #u32611 {
  11485. border-width:0px;
  11486. position:absolute;
  11487. left:3843px;
  11488. top:621px;
  11489. width:25px;
  11490. height:18px;
  11491. display:flex;
  11492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11493. font-weight:400;
  11494. font-style:normal;
  11495. font-size:10px;
  11496. color:#D9001B;
  11497. text-align:left;
  11498. }
  11499. #u32611 .text {
  11500. position:absolute;
  11501. align-self:center;
  11502. padding:2px 2px 2px 2px;
  11503. box-sizing:border-box;
  11504. width:100%;
  11505. }
  11506. #u32611_text {
  11507. border-width:0px;
  11508. white-space:nowrap;
  11509. text-transform:none;
  11510. }
  11511. #u32612 {
  11512. border-width:0px;
  11513. position:absolute;
  11514. left:0px;
  11515. top:0px;
  11516. width:0px;
  11517. height:0px;
  11518. }
  11519. #u32613_div {
  11520. border-width:0px;
  11521. position:absolute;
  11522. left:0px;
  11523. top:0px;
  11524. width:172px;
  11525. height:123px;
  11526. background:inherit;
  11527. background-color:rgba(51, 51, 51, 1);
  11528. border:none;
  11529. border-radius:5px;
  11530. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11531. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11532. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  11533. }
  11534. #u32613 {
  11535. border-width:0px;
  11536. position:absolute;
  11537. left:3892px;
  11538. top:518px;
  11539. width:172px;
  11540. height:123px;
  11541. display:flex;
  11542. }
  11543. #u32613 .text {
  11544. position:absolute;
  11545. align-self:center;
  11546. padding:2px 2px 2px 2px;
  11547. box-sizing:border-box;
  11548. width:100%;
  11549. }
  11550. #u32613_text {
  11551. border-width:0px;
  11552. word-wrap:break-word;
  11553. text-transform:none;
  11554. visibility:hidden;
  11555. }
  11556. #u32614_img {
  11557. border-width:0px;
  11558. position:absolute;
  11559. left:0px;
  11560. top:0px;
  11561. width:30px;
  11562. height:30px;
  11563. }
  11564. #u32614 {
  11565. border-width:0px;
  11566. position:absolute;
  11567. left:3963px;
  11568. top:565px;
  11569. width:30px;
  11570. height:30px;
  11571. display:flex;
  11572. }
  11573. #u32614 .text {
  11574. position:absolute;
  11575. align-self:center;
  11576. padding:2px 2px 2px 2px;
  11577. box-sizing:border-box;
  11578. width:100%;
  11579. }
  11580. #u32614_text {
  11581. border-width:0px;
  11582. word-wrap:break-word;
  11583. text-transform:none;
  11584. visibility:hidden;
  11585. }
  11586. #u32615_div {
  11587. border-width:0px;
  11588. position:absolute;
  11589. left:0px;
  11590. top:0px;
  11591. width:101px;
  11592. height:21px;
  11593. background:inherit;
  11594. background-color:rgba(255, 255, 255, 0);
  11595. border:none;
  11596. border-radius:0px;
  11597. -moz-box-shadow:none;
  11598. -webkit-box-shadow:none;
  11599. box-shadow:none;
  11600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11601. font-weight:400;
  11602. font-style:normal;
  11603. font-size:12px;
  11604. color:#FFFFFF;
  11605. text-align:left;
  11606. }
  11607. #u32615 {
  11608. border-width:0px;
  11609. position:absolute;
  11610. left:3892px;
  11611. top:518px;
  11612. width:101px;
  11613. height:21px;
  11614. display:flex;
  11615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11616. font-weight:400;
  11617. font-style:normal;
  11618. font-size:12px;
  11619. color:#FFFFFF;
  11620. text-align:left;
  11621. }
  11622. #u32615 .text {
  11623. position:absolute;
  11624. align-self:center;
  11625. padding:2px 2px 2px 2px;
  11626. box-sizing:border-box;
  11627. width:100%;
  11628. }
  11629. #u32615_text {
  11630. border-width:0px;
  11631. white-space:nowrap;
  11632. text-transform:none;
  11633. }
  11634. #u32616_div {
  11635. border-width:0px;
  11636. position:absolute;
  11637. left:0px;
  11638. top:0px;
  11639. width:25px;
  11640. height:18px;
  11641. background:inherit;
  11642. background-color:rgba(255, 255, 255, 0);
  11643. border:none;
  11644. border-radius:0px;
  11645. -moz-box-shadow:none;
  11646. -webkit-box-shadow:none;
  11647. box-shadow:none;
  11648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11649. font-weight:400;
  11650. font-style:normal;
  11651. font-size:10px;
  11652. color:#FFFFFF;
  11653. text-align:left;
  11654. }
  11655. #u32616 {
  11656. border-width:0px;
  11657. position:absolute;
  11658. left:4035px;
  11659. top:621px;
  11660. width:25px;
  11661. height:18px;
  11662. display:flex;
  11663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11664. font-weight:400;
  11665. font-style:normal;
  11666. font-size:10px;
  11667. color:#FFFFFF;
  11668. text-align:left;
  11669. }
  11670. #u32616 .text {
  11671. position:absolute;
  11672. align-self:center;
  11673. padding:2px 2px 2px 2px;
  11674. box-sizing:border-box;
  11675. width:100%;
  11676. }
  11677. #u32616_text {
  11678. border-width:0px;
  11679. white-space:nowrap;
  11680. text-transform:none;
  11681. }
  11682. #u32617 {
  11683. border-width:0px;
  11684. position:absolute;
  11685. left:0px;
  11686. top:0px;
  11687. width:0px;
  11688. height:0px;
  11689. }
  11690. #u32618 {
  11691. border-width:0px;
  11692. position:absolute;
  11693. left:0px;
  11694. top:0px;
  11695. width:0px;
  11696. height:0px;
  11697. }
  11698. #u32619_div {
  11699. border-width:0px;
  11700. position:absolute;
  11701. left:0px;
  11702. top:0px;
  11703. width:57px;
  11704. height:20px;
  11705. background:inherit;
  11706. background-color:rgba(28, 33, 30, 1);
  11707. border:none;
  11708. border-radius:0px;
  11709. -moz-box-shadow:none;
  11710. -webkit-box-shadow:none;
  11711. box-shadow:none;
  11712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11713. font-weight:500;
  11714. font-style:normal;
  11715. font-size:14px;
  11716. color:#FFFFFF;
  11717. }
  11718. #u32619 {
  11719. border-width:0px;
  11720. position:absolute;
  11721. left:1970px;
  11722. top:831px;
  11723. width:57px;
  11724. height:20px;
  11725. display:flex;
  11726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11727. font-weight:500;
  11728. font-style:normal;
  11729. font-size:14px;
  11730. color:#FFFFFF;
  11731. }
  11732. #u32619 .text {
  11733. position:absolute;
  11734. align-self:flex-start;
  11735. padding:0px 0px 0px 0px;
  11736. box-sizing:border-box;
  11737. width:100%;
  11738. }
  11739. #u32619_text {
  11740. border-width:0px;
  11741. white-space:nowrap;
  11742. text-transform:none;
  11743. }
  11744. #u32620_img {
  11745. border-width:0px;
  11746. position:absolute;
  11747. left:0px;
  11748. top:0px;
  11749. width:33px;
  11750. height:39px;
  11751. }
  11752. #u32620 {
  11753. border-width:0px;
  11754. position:absolute;
  11755. left:1982px;
  11756. top:790px;
  11757. width:33px;
  11758. height:39px;
  11759. display:flex;
  11760. color:#FFFFFF;
  11761. }
  11762. #u32620 .text {
  11763. position:absolute;
  11764. align-self:center;
  11765. padding:2px 2px 2px 2px;
  11766. box-sizing:border-box;
  11767. width:100%;
  11768. }
  11769. #u32620_text {
  11770. border-width:0px;
  11771. word-wrap:break-word;
  11772. text-transform:none;
  11773. }
  11774. #u32621 {
  11775. border-width:0px;
  11776. position:absolute;
  11777. left:0px;
  11778. top:0px;
  11779. width:0px;
  11780. height:0px;
  11781. }
  11782. #u32622_div {
  11783. border-width:0px;
  11784. position:absolute;
  11785. left:0px;
  11786. top:0px;
  11787. width:57px;
  11788. height:20px;
  11789. background:inherit;
  11790. background-color:rgba(28, 33, 30, 1);
  11791. border:none;
  11792. border-radius:0px;
  11793. -moz-box-shadow:none;
  11794. -webkit-box-shadow:none;
  11795. box-shadow:none;
  11796. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11797. font-weight:500;
  11798. font-style:normal;
  11799. font-size:14px;
  11800. color:#FFFFFF;
  11801. }
  11802. #u32622 {
  11803. border-width:0px;
  11804. position:absolute;
  11805. left:2044px;
  11806. top:831px;
  11807. width:57px;
  11808. height:20px;
  11809. display:flex;
  11810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11811. font-weight:500;
  11812. font-style:normal;
  11813. font-size:14px;
  11814. color:#FFFFFF;
  11815. }
  11816. #u32622 .text {
  11817. position:absolute;
  11818. align-self:flex-start;
  11819. padding:0px 0px 0px 0px;
  11820. box-sizing:border-box;
  11821. width:100%;
  11822. }
  11823. #u32622_text {
  11824. border-width:0px;
  11825. white-space:nowrap;
  11826. text-transform:none;
  11827. }
  11828. #u32623_img {
  11829. border-width:0px;
  11830. position:absolute;
  11831. left:0px;
  11832. top:0px;
  11833. width:33px;
  11834. height:39px;
  11835. }
  11836. #u32623 {
  11837. border-width:0px;
  11838. position:absolute;
  11839. left:2056px;
  11840. top:790px;
  11841. width:33px;
  11842. height:39px;
  11843. display:flex;
  11844. color:#FFFFFF;
  11845. }
  11846. #u32623 .text {
  11847. position:absolute;
  11848. align-self:center;
  11849. padding:2px 2px 2px 2px;
  11850. box-sizing:border-box;
  11851. width:100%;
  11852. }
  11853. #u32623_text {
  11854. border-width:0px;
  11855. word-wrap:break-word;
  11856. text-transform:none;
  11857. }
  11858. #u32624 {
  11859. border-width:0px;
  11860. position:absolute;
  11861. left:0px;
  11862. top:0px;
  11863. width:0px;
  11864. height:0px;
  11865. }
  11866. #u32625_div {
  11867. border-width:0px;
  11868. position:absolute;
  11869. left:0px;
  11870. top:0px;
  11871. width:57px;
  11872. height:20px;
  11873. background:inherit;
  11874. background-color:rgba(28, 33, 30, 1);
  11875. border:none;
  11876. border-radius:0px;
  11877. -moz-box-shadow:none;
  11878. -webkit-box-shadow:none;
  11879. box-shadow:none;
  11880. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11881. font-weight:500;
  11882. font-style:normal;
  11883. font-size:14px;
  11884. color:#FFFFFF;
  11885. }
  11886. #u32625 {
  11887. border-width:0px;
  11888. position:absolute;
  11889. left:1896px;
  11890. top:831px;
  11891. width:57px;
  11892. height:20px;
  11893. display:flex;
  11894. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11895. font-weight:500;
  11896. font-style:normal;
  11897. font-size:14px;
  11898. color:#FFFFFF;
  11899. }
  11900. #u32625 .text {
  11901. position:absolute;
  11902. align-self:flex-start;
  11903. padding:0px 0px 0px 0px;
  11904. box-sizing:border-box;
  11905. width:100%;
  11906. }
  11907. #u32625_text {
  11908. border-width:0px;
  11909. white-space:nowrap;
  11910. text-transform:none;
  11911. }
  11912. #u32626_img {
  11913. border-width:0px;
  11914. position:absolute;
  11915. left:0px;
  11916. top:0px;
  11917. width:33px;
  11918. height:39px;
  11919. }
  11920. #u32626 {
  11921. border-width:0px;
  11922. position:absolute;
  11923. left:1908px;
  11924. top:790px;
  11925. width:33px;
  11926. height:39px;
  11927. display:flex;
  11928. color:#FFFFFF;
  11929. }
  11930. #u32626 .text {
  11931. position:absolute;
  11932. align-self:center;
  11933. padding:2px 2px 2px 2px;
  11934. box-sizing:border-box;
  11935. width:100%;
  11936. }
  11937. #u32626_text {
  11938. border-width:0px;
  11939. word-wrap:break-word;
  11940. text-transform:none;
  11941. }
  11942. #u32627 {
  11943. border-width:0px;
  11944. position:absolute;
  11945. left:0px;
  11946. top:0px;
  11947. width:0px;
  11948. height:0px;
  11949. }
  11950. #u32628_div {
  11951. border-width:0px;
  11952. position:absolute;
  11953. left:0px;
  11954. top:0px;
  11955. width:57px;
  11956. height:20px;
  11957. background:inherit;
  11958. background-color:rgba(28, 33, 30, 1);
  11959. border:none;
  11960. border-radius:0px;
  11961. -moz-box-shadow:none;
  11962. -webkit-box-shadow:none;
  11963. box-shadow:none;
  11964. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11965. font-weight:500;
  11966. font-style:normal;
  11967. font-size:14px;
  11968. color:#FFFFFF;
  11969. }
  11970. #u32628 {
  11971. border-width:0px;
  11972. position:absolute;
  11973. left:2119px;
  11974. top:831px;
  11975. width:57px;
  11976. height:20px;
  11977. display:flex;
  11978. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11979. font-weight:500;
  11980. font-style:normal;
  11981. font-size:14px;
  11982. color:#FFFFFF;
  11983. }
  11984. #u32628 .text {
  11985. position:absolute;
  11986. align-self:flex-start;
  11987. padding:0px 0px 0px 0px;
  11988. box-sizing:border-box;
  11989. width:100%;
  11990. }
  11991. #u32628_text {
  11992. border-width:0px;
  11993. white-space:nowrap;
  11994. text-transform:none;
  11995. }
  11996. #u32629_img {
  11997. border-width:0px;
  11998. position:absolute;
  11999. left:0px;
  12000. top:0px;
  12001. width:33px;
  12002. height:39px;
  12003. }
  12004. #u32629 {
  12005. border-width:0px;
  12006. position:absolute;
  12007. left:2131px;
  12008. top:790px;
  12009. width:33px;
  12010. height:39px;
  12011. display:flex;
  12012. color:#FFFFFF;
  12013. }
  12014. #u32629 .text {
  12015. position:absolute;
  12016. align-self:center;
  12017. padding:2px 2px 2px 2px;
  12018. box-sizing:border-box;
  12019. width:100%;
  12020. }
  12021. #u32629_text {
  12022. border-width:0px;
  12023. word-wrap:break-word;
  12024. text-transform:none;
  12025. }
  12026. #u32630_div {
  12027. border-width:0px;
  12028. position:absolute;
  12029. left:0px;
  12030. top:0px;
  12031. width:59px;
  12032. height:20px;
  12033. background:inherit;
  12034. background-color:rgba(28, 33, 30, 1);
  12035. border:none;
  12036. border-radius:0px;
  12037. -moz-box-shadow:none;
  12038. -webkit-box-shadow:none;
  12039. box-shadow:none;
  12040. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12041. font-weight:500;
  12042. font-style:normal;
  12043. font-size:14px;
  12044. color:#F59A23;
  12045. }
  12046. #u32630 {
  12047. border-width:0px;
  12048. position:absolute;
  12049. left:2117px;
  12050. top:831px;
  12051. width:59px;
  12052. height:20px;
  12053. display:flex;
  12054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12055. font-weight:500;
  12056. font-style:normal;
  12057. font-size:14px;
  12058. color:#F59A23;
  12059. }
  12060. #u32630 .text {
  12061. position:absolute;
  12062. align-self:flex-start;
  12063. padding:0px 0px 0px 0px;
  12064. box-sizing:border-box;
  12065. width:100%;
  12066. }
  12067. #u32630_text {
  12068. border-width:0px;
  12069. word-wrap:break-word;
  12070. text-transform:none;
  12071. }
  12072. #u32631 {
  12073. border-width:0px;
  12074. position:absolute;
  12075. left:0px;
  12076. top:0px;
  12077. width:0px;
  12078. height:0px;
  12079. }
  12080. #u32632_div {
  12081. border-width:0px;
  12082. position:absolute;
  12083. left:0px;
  12084. top:0px;
  12085. width:57px;
  12086. height:20px;
  12087. background:inherit;
  12088. background-color:rgba(28, 33, 30, 1);
  12089. border:none;
  12090. border-radius:0px;
  12091. -moz-box-shadow:none;
  12092. -webkit-box-shadow:none;
  12093. box-shadow:none;
  12094. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12095. font-weight:500;
  12096. font-style:normal;
  12097. font-size:14px;
  12098. color:#FFFFFF;
  12099. }
  12100. #u32632 {
  12101. border-width:0px;
  12102. position:absolute;
  12103. left:2267px;
  12104. top:831px;
  12105. width:57px;
  12106. height:20px;
  12107. display:flex;
  12108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12109. font-weight:500;
  12110. font-style:normal;
  12111. font-size:14px;
  12112. color:#FFFFFF;
  12113. }
  12114. #u32632 .text {
  12115. position:absolute;
  12116. align-self:flex-start;
  12117. padding:0px 0px 0px 0px;
  12118. box-sizing:border-box;
  12119. width:100%;
  12120. }
  12121. #u32632_text {
  12122. border-width:0px;
  12123. white-space:nowrap;
  12124. text-transform:none;
  12125. }
  12126. #u32633_img {
  12127. border-width:0px;
  12128. position:absolute;
  12129. left:0px;
  12130. top:0px;
  12131. width:33px;
  12132. height:39px;
  12133. }
  12134. #u32633 {
  12135. border-width:0px;
  12136. position:absolute;
  12137. left:2279px;
  12138. top:790px;
  12139. width:33px;
  12140. height:39px;
  12141. display:flex;
  12142. color:#FFFFFF;
  12143. }
  12144. #u32633 .text {
  12145. position:absolute;
  12146. align-self:center;
  12147. padding:2px 2px 2px 2px;
  12148. box-sizing:border-box;
  12149. width:100%;
  12150. }
  12151. #u32633_text {
  12152. border-width:0px;
  12153. word-wrap:break-word;
  12154. text-transform:none;
  12155. }
  12156. #u32634 {
  12157. border-width:0px;
  12158. position:absolute;
  12159. left:0px;
  12160. top:0px;
  12161. width:0px;
  12162. height:0px;
  12163. }
  12164. #u32635_div {
  12165. border-width:0px;
  12166. position:absolute;
  12167. left:0px;
  12168. top:0px;
  12169. width:57px;
  12170. height:20px;
  12171. background:inherit;
  12172. background-color:rgba(28, 33, 30, 1);
  12173. border:none;
  12174. border-radius:0px;
  12175. -moz-box-shadow:none;
  12176. -webkit-box-shadow:none;
  12177. box-shadow:none;
  12178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12179. font-weight:500;
  12180. font-style:normal;
  12181. font-size:14px;
  12182. color:#FFFFFF;
  12183. }
  12184. #u32635 {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:2342px;
  12188. top:831px;
  12189. width:57px;
  12190. height:20px;
  12191. display:flex;
  12192. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12193. font-weight:500;
  12194. font-style:normal;
  12195. font-size:14px;
  12196. color:#FFFFFF;
  12197. }
  12198. #u32635 .text {
  12199. position:absolute;
  12200. align-self:flex-start;
  12201. padding:0px 0px 0px 0px;
  12202. box-sizing:border-box;
  12203. width:100%;
  12204. }
  12205. #u32635_text {
  12206. border-width:0px;
  12207. white-space:nowrap;
  12208. text-transform:none;
  12209. }
  12210. #u32636_img {
  12211. border-width:0px;
  12212. position:absolute;
  12213. left:0px;
  12214. top:0px;
  12215. width:33px;
  12216. height:39px;
  12217. }
  12218. #u32636 {
  12219. border-width:0px;
  12220. position:absolute;
  12221. left:2354px;
  12222. top:790px;
  12223. width:33px;
  12224. height:39px;
  12225. display:flex;
  12226. color:#FFFFFF;
  12227. }
  12228. #u32636 .text {
  12229. position:absolute;
  12230. align-self:center;
  12231. padding:2px 2px 2px 2px;
  12232. box-sizing:border-box;
  12233. width:100%;
  12234. }
  12235. #u32636_text {
  12236. border-width:0px;
  12237. word-wrap:break-word;
  12238. text-transform:none;
  12239. }
  12240. #u32637 {
  12241. border-width:0px;
  12242. position:absolute;
  12243. left:0px;
  12244. top:0px;
  12245. width:0px;
  12246. height:0px;
  12247. }
  12248. #u32638_div {
  12249. border-width:0px;
  12250. position:absolute;
  12251. left:0px;
  12252. top:0px;
  12253. width:59px;
  12254. height:20px;
  12255. background:inherit;
  12256. background-color:rgba(28, 33, 30, 1);
  12257. border:none;
  12258. border-radius:0px;
  12259. -moz-box-shadow:none;
  12260. -webkit-box-shadow:none;
  12261. box-shadow:none;
  12262. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12263. font-weight:500;
  12264. font-style:normal;
  12265. font-size:14px;
  12266. color:#FFFFFF;
  12267. }
  12268. #u32638 {
  12269. border-width:0px;
  12270. position:absolute;
  12271. left:2194px;
  12272. top:831px;
  12273. width:59px;
  12274. height:20px;
  12275. display:flex;
  12276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12277. font-weight:500;
  12278. font-style:normal;
  12279. font-size:14px;
  12280. color:#FFFFFF;
  12281. }
  12282. #u32638 .text {
  12283. position:absolute;
  12284. align-self:flex-start;
  12285. padding:0px 0px 0px 0px;
  12286. box-sizing:border-box;
  12287. width:100%;
  12288. }
  12289. #u32638_text {
  12290. border-width:0px;
  12291. word-wrap:break-word;
  12292. text-transform:none;
  12293. }
  12294. #u32639_img {
  12295. border-width:0px;
  12296. position:absolute;
  12297. left:0px;
  12298. top:0px;
  12299. width:33px;
  12300. height:39px;
  12301. }
  12302. #u32639 {
  12303. border-width:0px;
  12304. position:absolute;
  12305. left:2205px;
  12306. top:790px;
  12307. width:33px;
  12308. height:39px;
  12309. display:flex;
  12310. color:#FFFFFF;
  12311. }
  12312. #u32639 .text {
  12313. position:absolute;
  12314. align-self:center;
  12315. padding:2px 2px 2px 2px;
  12316. box-sizing:border-box;
  12317. width:100%;
  12318. }
  12319. #u32639_text {
  12320. border-width:0px;
  12321. word-wrap:break-word;
  12322. text-transform:none;
  12323. }
  12324. #u32640 {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:0px;
  12330. height:0px;
  12331. }
  12332. #u32641_div {
  12333. border-width:0px;
  12334. position:absolute;
  12335. left:0px;
  12336. top:0px;
  12337. width:71px;
  12338. height:20px;
  12339. background:inherit;
  12340. background-color:rgba(28, 33, 30, 1);
  12341. border:none;
  12342. border-radius:0px;
  12343. -moz-box-shadow:none;
  12344. -webkit-box-shadow:none;
  12345. box-shadow:none;
  12346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12347. font-weight:500;
  12348. font-style:normal;
  12349. font-size:14px;
  12350. color:#FFFFFF;
  12351. }
  12352. #u32641 {
  12353. border-width:0px;
  12354. position:absolute;
  12355. left:2409px;
  12356. top:831px;
  12357. width:71px;
  12358. height:20px;
  12359. display:flex;
  12360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12361. font-weight:500;
  12362. font-style:normal;
  12363. font-size:14px;
  12364. color:#FFFFFF;
  12365. }
  12366. #u32641 .text {
  12367. position:absolute;
  12368. align-self:flex-start;
  12369. padding:0px 0px 0px 0px;
  12370. box-sizing:border-box;
  12371. width:100%;
  12372. }
  12373. #u32641_text {
  12374. border-width:0px;
  12375. white-space:nowrap;
  12376. text-transform:none;
  12377. }
  12378. #u32642_img {
  12379. border-width:0px;
  12380. position:absolute;
  12381. left:0px;
  12382. top:0px;
  12383. width:33px;
  12384. height:39px;
  12385. }
  12386. #u32642 {
  12387. border-width:0px;
  12388. position:absolute;
  12389. left:2427px;
  12390. top:790px;
  12391. width:33px;
  12392. height:39px;
  12393. display:flex;
  12394. color:#FFFFFF;
  12395. }
  12396. #u32642 .text {
  12397. position:absolute;
  12398. align-self:center;
  12399. padding:2px 2px 2px 2px;
  12400. box-sizing:border-box;
  12401. width:100%;
  12402. }
  12403. #u32642_text {
  12404. border-width:0px;
  12405. word-wrap:break-word;
  12406. text-transform:none;
  12407. }
  12408. #u32643 {
  12409. border-width:0px;
  12410. position:absolute;
  12411. left:0px;
  12412. top:0px;
  12413. width:0px;
  12414. height:0px;
  12415. }
  12416. #u32644_div {
  12417. border-width:0px;
  12418. position:absolute;
  12419. left:0px;
  12420. top:0px;
  12421. width:68px;
  12422. height:20px;
  12423. background:inherit;
  12424. background-color:rgba(28, 33, 30, 1);
  12425. border:none;
  12426. border-radius:0px;
  12427. -moz-box-shadow:none;
  12428. -webkit-box-shadow:none;
  12429. box-shadow:none;
  12430. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12431. font-weight:500;
  12432. font-style:normal;
  12433. font-size:14px;
  12434. color:#FFFFFF;
  12435. text-align:center;
  12436. }
  12437. #u32644 {
  12438. border-width:0px;
  12439. position:absolute;
  12440. left:2487px;
  12441. top:831px;
  12442. width:68px;
  12443. height:20px;
  12444. display:flex;
  12445. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12446. font-weight:500;
  12447. font-style:normal;
  12448. font-size:14px;
  12449. color:#FFFFFF;
  12450. text-align:center;
  12451. }
  12452. #u32644 .text {
  12453. position:absolute;
  12454. align-self:flex-start;
  12455. padding:0px 0px 0px 0px;
  12456. box-sizing:border-box;
  12457. width:100%;
  12458. }
  12459. #u32644_text {
  12460. border-width:0px;
  12461. word-wrap:break-word;
  12462. text-transform:none;
  12463. }
  12464. #u32645_img {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:33px;
  12470. height:39px;
  12471. }
  12472. #u32645 {
  12473. border-width:0px;
  12474. position:absolute;
  12475. left:2501px;
  12476. top:790px;
  12477. width:33px;
  12478. height:39px;
  12479. display:flex;
  12480. color:#FFFFFF;
  12481. }
  12482. #u32645 .text {
  12483. position:absolute;
  12484. align-self:center;
  12485. padding:2px 2px 2px 2px;
  12486. box-sizing:border-box;
  12487. width:100%;
  12488. }
  12489. #u32645_text {
  12490. border-width:0px;
  12491. word-wrap:break-word;
  12492. text-transform:none;
  12493. }
  12494. #u32646 {
  12495. border-width:0px;
  12496. position:absolute;
  12497. left:0px;
  12498. top:0px;
  12499. width:0px;
  12500. height:0px;
  12501. }
  12502. #u32647_div {
  12503. border-width:0px;
  12504. position:absolute;
  12505. left:0px;
  12506. top:0px;
  12507. width:60px;
  12508. height:20px;
  12509. background:inherit;
  12510. background-color:rgba(28, 33, 30, 1);
  12511. border:none;
  12512. border-radius:0px;
  12513. -moz-box-shadow:none;
  12514. -webkit-box-shadow:none;
  12515. box-shadow:none;
  12516. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12517. font-weight:500;
  12518. font-style:normal;
  12519. font-size:14px;
  12520. color:#FFFFFF;
  12521. }
  12522. #u32647 {
  12523. border-width:0px;
  12524. position:absolute;
  12525. left:2563px;
  12526. top:831px;
  12527. width:60px;
  12528. height:20px;
  12529. display:flex;
  12530. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12531. font-weight:500;
  12532. font-style:normal;
  12533. font-size:14px;
  12534. color:#FFFFFF;
  12535. }
  12536. #u32647 .text {
  12537. position:absolute;
  12538. align-self:flex-start;
  12539. padding:0px 0px 0px 0px;
  12540. box-sizing:border-box;
  12541. width:100%;
  12542. }
  12543. #u32647_text {
  12544. border-width:0px;
  12545. word-wrap:break-word;
  12546. text-transform:none;
  12547. }
  12548. #u32648_img {
  12549. border-width:0px;
  12550. position:absolute;
  12551. left:0px;
  12552. top:0px;
  12553. width:33px;
  12554. height:39px;
  12555. }
  12556. #u32648 {
  12557. border-width:0px;
  12558. position:absolute;
  12559. left:2575px;
  12560. top:790px;
  12561. width:33px;
  12562. height:39px;
  12563. display:flex;
  12564. color:#FFFFFF;
  12565. }
  12566. #u32648 .text {
  12567. position:absolute;
  12568. align-self:center;
  12569. padding:2px 2px 2px 2px;
  12570. box-sizing:border-box;
  12571. width:100%;
  12572. }
  12573. #u32648_text {
  12574. border-width:0px;
  12575. word-wrap:break-word;
  12576. text-transform:none;
  12577. }
  12578. #u32649 {
  12579. border-width:0px;
  12580. position:absolute;
  12581. left:0px;
  12582. top:0px;
  12583. width:0px;
  12584. height:0px;
  12585. }
  12586. #u32650_div {
  12587. border-width:0px;
  12588. position:absolute;
  12589. left:0px;
  12590. top:0px;
  12591. width:60px;
  12592. height:20px;
  12593. background:inherit;
  12594. background-color:rgba(28, 33, 30, 1);
  12595. border:none;
  12596. border-radius:0px;
  12597. -moz-box-shadow:none;
  12598. -webkit-box-shadow:none;
  12599. box-shadow:none;
  12600. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12601. font-weight:500;
  12602. font-style:normal;
  12603. font-size:14px;
  12604. color:#FFFFFF;
  12605. }
  12606. #u32650 {
  12607. border-width:0px;
  12608. position:absolute;
  12609. left:2636px;
  12610. top:831px;
  12611. width:60px;
  12612. height:20px;
  12613. display:flex;
  12614. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12615. font-weight:500;
  12616. font-style:normal;
  12617. font-size:14px;
  12618. color:#FFFFFF;
  12619. }
  12620. #u32650 .text {
  12621. position:absolute;
  12622. align-self:flex-start;
  12623. padding:0px 0px 0px 0px;
  12624. box-sizing:border-box;
  12625. width:100%;
  12626. }
  12627. #u32650_text {
  12628. border-width:0px;
  12629. word-wrap:break-word;
  12630. text-transform:none;
  12631. }
  12632. #u32651_img {
  12633. border-width:0px;
  12634. position:absolute;
  12635. left:0px;
  12636. top:0px;
  12637. width:33px;
  12638. height:39px;
  12639. }
  12640. #u32651 {
  12641. border-width:0px;
  12642. position:absolute;
  12643. left:2649px;
  12644. top:790px;
  12645. width:33px;
  12646. height:39px;
  12647. display:flex;
  12648. color:#FFFFFF;
  12649. }
  12650. #u32651 .text {
  12651. position:absolute;
  12652. align-self:center;
  12653. padding:2px 2px 2px 2px;
  12654. box-sizing:border-box;
  12655. width:100%;
  12656. }
  12657. #u32651_text {
  12658. border-width:0px;
  12659. word-wrap:break-word;
  12660. text-transform:none;
  12661. }