styles.css 233 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:4623px;
  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. #u31547 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u31548_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1510px;
  33. height:858px;
  34. }
  35. #u31548 {
  36. border-width:0px;
  37. position:absolute;
  38. left:1553px;
  39. top:0px;
  40. width:1510px;
  41. height:858px;
  42. display:flex;
  43. }
  44. #u31548 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u31548_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u31549_img {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:106px;
  63. height:40px;
  64. }
  65. #u31549 {
  66. border-width:0px;
  67. position:absolute;
  68. left:2940px;
  69. top:87px;
  70. width:106px;
  71. height:40px;
  72. display:flex;
  73. }
  74. #u31549 .text {
  75. position:absolute;
  76. align-self:center;
  77. padding:2px 2px 2px 2px;
  78. box-sizing:border-box;
  79. width:100%;
  80. }
  81. #u31549_text {
  82. border-width:0px;
  83. word-wrap:break-word;
  84. text-transform:none;
  85. visibility:hidden;
  86. }
  87. #u31550_img {
  88. border-width:0px;
  89. position:absolute;
  90. left:0px;
  91. top:0px;
  92. width:547px;
  93. height:34px;
  94. }
  95. #u31550 {
  96. border-width:0px;
  97. position:absolute;
  98. left:2019px;
  99. top:29px;
  100. width:547px;
  101. height:34px;
  102. display:flex;
  103. }
  104. #u31550 .text {
  105. position:absolute;
  106. align-self:center;
  107. padding:2px 2px 2px 2px;
  108. box-sizing:border-box;
  109. width:100%;
  110. }
  111. #u31550_text {
  112. border-width:0px;
  113. word-wrap:break-word;
  114. text-transform:none;
  115. visibility:hidden;
  116. }
  117. #u31551_div {
  118. border-width:0px;
  119. position:absolute;
  120. left:0px;
  121. top:0px;
  122. width:1510px;
  123. height:677px;
  124. background:inherit;
  125. background-color:rgba(39, 57, 56, 1);
  126. border:none;
  127. border-radius:0px;
  128. -moz-box-shadow:none;
  129. -webkit-box-shadow:none;
  130. box-shadow:none;
  131. }
  132. #u31551 {
  133. border-width:0px;
  134. position:absolute;
  135. left:1553px;
  136. top:65px;
  137. width:1510px;
  138. height:677px;
  139. display:flex;
  140. }
  141. #u31551 .text {
  142. position:absolute;
  143. align-self:center;
  144. padding:2px 2px 2px 2px;
  145. box-sizing:border-box;
  146. width:100%;
  147. }
  148. #u31551_text {
  149. border-width:0px;
  150. word-wrap:break-word;
  151. text-transform:none;
  152. visibility:hidden;
  153. }
  154. #u31552_img {
  155. border-width:0px;
  156. position:absolute;
  157. left:0px;
  158. top:0px;
  159. width:1095px;
  160. height:821px;
  161. }
  162. #u31552 {
  163. border-width:0px;
  164. position:absolute;
  165. left:1743px;
  166. top:2px;
  167. width:1095px;
  168. height:821px;
  169. display:flex;
  170. opacity:0.6;
  171. }
  172. #u31552 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:2px 2px 2px 2px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u31552_text {
  180. border-width:0px;
  181. word-wrap:break-word;
  182. text-transform:none;
  183. visibility:hidden;
  184. }
  185. #u31553 {
  186. border-width:0px;
  187. position:absolute;
  188. left:0px;
  189. top:0px;
  190. width:0px;
  191. height:0px;
  192. }
  193. #u31554_img {
  194. border-width:0px;
  195. position:absolute;
  196. left:0px;
  197. top:0px;
  198. width:1510px;
  199. height:858px;
  200. }
  201. #u31554 {
  202. border-width:0px;
  203. position:absolute;
  204. left:0px;
  205. top:0px;
  206. width:1510px;
  207. height:858px;
  208. display:flex;
  209. }
  210. #u31554 .text {
  211. position:absolute;
  212. align-self:center;
  213. padding:2px 2px 2px 2px;
  214. box-sizing:border-box;
  215. width:100%;
  216. }
  217. #u31554_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u31555_img {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:106px;
  229. height:40px;
  230. }
  231. #u31555 {
  232. border-width:0px;
  233. position:absolute;
  234. left:1387px;
  235. top:87px;
  236. width:106px;
  237. height:40px;
  238. display:flex;
  239. }
  240. #u31555 .text {
  241. position:absolute;
  242. align-self:center;
  243. padding:2px 2px 2px 2px;
  244. box-sizing:border-box;
  245. width:100%;
  246. }
  247. #u31555_text {
  248. border-width:0px;
  249. word-wrap:break-word;
  250. text-transform:none;
  251. visibility:hidden;
  252. }
  253. #u31556_img {
  254. border-width:0px;
  255. position:absolute;
  256. left:0px;
  257. top:0px;
  258. width:547px;
  259. height:34px;
  260. }
  261. #u31556 {
  262. border-width:0px;
  263. position:absolute;
  264. left:466px;
  265. top:29px;
  266. width:547px;
  267. height:34px;
  268. display:flex;
  269. }
  270. #u31556 .text {
  271. position:absolute;
  272. align-self:center;
  273. padding:2px 2px 2px 2px;
  274. box-sizing:border-box;
  275. width:100%;
  276. }
  277. #u31556_text {
  278. border-width:0px;
  279. word-wrap:break-word;
  280. text-transform:none;
  281. visibility:hidden;
  282. }
  283. #u31557 {
  284. border-width:0px;
  285. position:absolute;
  286. left:458px;
  287. top:32px;
  288. width:558px;
  289. height:30px;
  290. }
  291. #u31557_state0 {
  292. border-width:0px;
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:558px;
  297. height:30px;
  298. -ms-overflow-x:hidden;
  299. overflow-x:hidden;
  300. -ms-overflow-y:hidden;
  301. overflow-y:hidden;
  302. background-image:none;
  303. border:none;
  304. border-radius:0px;
  305. -moz-box-shadow:none;
  306. -webkit-box-shadow:none;
  307. box-shadow:none;
  308. }
  309. #u31557_state0_content {
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:1px;
  315. height:1px;
  316. }
  317. #u31558_div {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:660px;
  323. height:30px;
  324. background:inherit;
  325. background-color:rgba(255, 255, 255, 0);
  326. border:none;
  327. border-left:0px;
  328. border-top:0px;
  329. border-right:0px;
  330. border-radius:0px;
  331. border-bottom-right-radius:0px;
  332. border-bottom-left-radius:0px;
  333. -moz-box-shadow:none;
  334. -webkit-box-shadow:none;
  335. box-shadow:none;
  336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  337. font-style:normal;
  338. font-size:12px;
  339. line-height:30px;
  340. }
  341. #u31558 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:660px;
  347. height:30px;
  348. display:flex;
  349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  350. font-style:normal;
  351. font-size:12px;
  352. line-height:30px;
  353. }
  354. #u31558 .text {
  355. position:absolute;
  356. align-self:flex-start;
  357. padding:0px 0px 0px 0px;
  358. box-sizing:border-box;
  359. width:100%;
  360. }
  361. #u31558_text {
  362. border-width:0px;
  363. white-space:nowrap;
  364. text-transform:none;
  365. }
  366. #u31559 {
  367. border-width:0px;
  368. position:absolute;
  369. left:0px;
  370. top:0px;
  371. width:0px;
  372. height:0px;
  373. }
  374. #u31560_div {
  375. border-width:0px;
  376. position:absolute;
  377. left:0px;
  378. top:0px;
  379. width:100px;
  380. height:40px;
  381. background:inherit;
  382. background-color:rgba(245, 154, 35, 1);
  383. box-sizing:border-box;
  384. border-width:1px;
  385. border-style:solid;
  386. border-color:rgba(245, 154, 35, 1);
  387. border-radius:4px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  392. font-weight:400;
  393. font-style:normal;
  394. font-size:14px;
  395. color:#FFFFFF;
  396. }
  397. #u31560 {
  398. border-width:0px;
  399. position:absolute;
  400. left:1200px;
  401. top:87px;
  402. width:100px;
  403. height:40px;
  404. display:flex;
  405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  406. font-weight:400;
  407. font-style:normal;
  408. font-size:14px;
  409. color:#FFFFFF;
  410. }
  411. #u31560 .text {
  412. position:absolute;
  413. align-self:center;
  414. padding:2px 2px 2px 20px;
  415. box-sizing:border-box;
  416. width:100%;
  417. }
  418. #u31560_text {
  419. border-width:0px;
  420. word-wrap:break-word;
  421. text-transform:none;
  422. }
  423. #u31561_img {
  424. border-width:0px;
  425. position:absolute;
  426. left:0px;
  427. top:0px;
  428. width:16px;
  429. height:15px;
  430. }
  431. #u31561 {
  432. border-width:0px;
  433. position:absolute;
  434. left:1209px;
  435. top:99px;
  436. width:16px;
  437. height:15px;
  438. display:flex;
  439. }
  440. #u31561 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u31561_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. visibility:hidden;
  452. }
  453. #u31562 {
  454. border-width:0px;
  455. position:absolute;
  456. left:0px;
  457. top:0px;
  458. width:0px;
  459. height:0px;
  460. }
  461. #u31563_div {
  462. border-width:0px;
  463. position:absolute;
  464. left:0px;
  465. top:0px;
  466. width:80px;
  467. height:40px;
  468. background:inherit;
  469. background-color:rgba(245, 154, 35, 0.0980392156862745);
  470. box-sizing:border-box;
  471. border-width:1px;
  472. border-style:solid;
  473. border-color:rgba(245, 154, 35, 1);
  474. border-radius:4px;
  475. -moz-box-shadow:none;
  476. -webkit-box-shadow:none;
  477. box-shadow:none;
  478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  479. font-weight:400;
  480. font-style:normal;
  481. font-size:14px;
  482. color:#F59A23;
  483. }
  484. #u31563 {
  485. border-width:0px;
  486. position:absolute;
  487. left:1400px;
  488. top:87px;
  489. width:80px;
  490. height:40px;
  491. display:flex;
  492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  493. font-weight:400;
  494. font-style:normal;
  495. font-size:14px;
  496. color:#F59A23;
  497. }
  498. #u31563 .text {
  499. position:absolute;
  500. align-self:center;
  501. padding:2px 10px 2px 2px;
  502. box-sizing:border-box;
  503. width:100%;
  504. }
  505. #u31563_text {
  506. border-width:0px;
  507. word-wrap:break-word;
  508. text-transform:none;
  509. }
  510. #u31564_img {
  511. border-width:0px;
  512. position:absolute;
  513. left:0px;
  514. top:0px;
  515. width:7px;
  516. height:4px;
  517. }
  518. #u31564 {
  519. border-width:0px;
  520. position:absolute;
  521. left:1467px;
  522. top:105px;
  523. width:7px;
  524. height:4px;
  525. display:flex;
  526. }
  527. #u31564 .text {
  528. position:absolute;
  529. align-self:center;
  530. padding:2px 2px 2px 2px;
  531. box-sizing:border-box;
  532. width:100%;
  533. }
  534. #u31564_text {
  535. border-width:0px;
  536. word-wrap:break-word;
  537. text-transform:none;
  538. visibility:hidden;
  539. }
  540. #u31565_div {
  541. border-width:0px;
  542. position:absolute;
  543. left:0px;
  544. top:0px;
  545. width:240px;
  546. height:40px;
  547. background:inherit;
  548. background-color:rgba(245, 154, 35, 0.2);
  549. box-sizing:border-box;
  550. border-width:2px;
  551. border-style:solid;
  552. border-color:rgba(245, 154, 35, 1);
  553. border-left:0px;
  554. border-top:0px;
  555. border-right:0px;
  556. border-radius:0px;
  557. border-bottom-right-radius:0px;
  558. border-bottom-left-radius:0px;
  559. -moz-box-shadow:none;
  560. -webkit-box-shadow:none;
  561. box-shadow:none;
  562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  563. font-weight:400;
  564. font-style:normal;
  565. font-size:18px;
  566. color:#FFFFFF;
  567. text-align:left;
  568. }
  569. #u31565 {
  570. border-width:0px;
  571. position:absolute;
  572. left:1240px;
  573. top:137px;
  574. width:240px;
  575. height:40px;
  576. display:flex;
  577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  578. font-weight:400;
  579. font-style:normal;
  580. font-size:18px;
  581. color:#FFFFFF;
  582. text-align:left;
  583. }
  584. #u31565 .text {
  585. position:absolute;
  586. align-self:center;
  587. padding:2px 2px 2px 10px;
  588. box-sizing:border-box;
  589. width:100%;
  590. }
  591. #u31565_text {
  592. border-width:0px;
  593. word-wrap:break-word;
  594. text-transform:none;
  595. }
  596. #u31566_img {
  597. border-width:0px;
  598. position:absolute;
  599. left:0px;
  600. top:0px;
  601. width:115px;
  602. height:66px;
  603. }
  604. #u31566 {
  605. border-width:0px;
  606. position:absolute;
  607. left:1246px;
  608. top:332px;
  609. width:115px;
  610. height:66px;
  611. display:flex;
  612. }
  613. #u31566 .text {
  614. position:absolute;
  615. align-self:center;
  616. padding:2px 2px 2px 2px;
  617. box-sizing:border-box;
  618. width:100%;
  619. }
  620. #u31566_text {
  621. border-width:0px;
  622. word-wrap:break-word;
  623. text-transform:none;
  624. visibility:hidden;
  625. }
  626. #u31567_img {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:115px;
  632. height:66px;
  633. }
  634. #u31567 {
  635. border-width:0px;
  636. position:absolute;
  637. left:1371px;
  638. top:332px;
  639. width:115px;
  640. height:66px;
  641. display:flex;
  642. }
  643. #u31567 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 2px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u31567_text {
  651. border-width:0px;
  652. word-wrap:break-word;
  653. text-transform:none;
  654. visibility:hidden;
  655. }
  656. #u31568_div {
  657. border-width:0px;
  658. position:absolute;
  659. left:0px;
  660. top:0px;
  661. width:240px;
  662. height:40px;
  663. background:inherit;
  664. background-color:rgba(245, 154, 35, 0.2);
  665. box-sizing:border-box;
  666. border-width:2px;
  667. border-style:solid;
  668. border-color:rgba(245, 154, 35, 1);
  669. border-left:0px;
  670. border-top:0px;
  671. border-right:0px;
  672. border-radius:0px;
  673. border-bottom-right-radius:0px;
  674. border-bottom-left-radius:0px;
  675. -moz-box-shadow:none;
  676. -webkit-box-shadow:none;
  677. box-shadow:none;
  678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  679. font-weight:400;
  680. font-style:normal;
  681. font-size:18px;
  682. color:#FFFFFF;
  683. text-align:left;
  684. }
  685. #u31568 {
  686. border-width:0px;
  687. position:absolute;
  688. left:1240px;
  689. top:492px;
  690. width:240px;
  691. height:40px;
  692. display:flex;
  693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  694. font-weight:400;
  695. font-style:normal;
  696. font-size:18px;
  697. color:#FFFFFF;
  698. text-align:left;
  699. }
  700. #u31568 .text {
  701. position:absolute;
  702. align-self:center;
  703. padding:2px 2px 2px 10px;
  704. box-sizing:border-box;
  705. width:100%;
  706. }
  707. #u31568_text {
  708. border-width:0px;
  709. word-wrap:break-word;
  710. text-transform:none;
  711. }
  712. #u31569_div {
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:0px;
  717. width:29px;
  718. height:34px;
  719. background:inherit;
  720. background-color:rgba(255, 255, 255, 0);
  721. border:none;
  722. border-radius:0px;
  723. -moz-box-shadow:none;
  724. -webkit-box-shadow:none;
  725. box-shadow:none;
  726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  727. font-weight:400;
  728. font-style:normal;
  729. font-size:12px;
  730. color:rgba(255, 255, 255, 0.698039215686274);
  731. text-align:left;
  732. line-height:30px;
  733. }
  734. #u31569 {
  735. border-width:0px;
  736. position:absolute;
  737. left:1441px;
  738. top:495px;
  739. width:29px;
  740. height:34px;
  741. display:flex;
  742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  743. font-weight:400;
  744. font-style:normal;
  745. font-size:12px;
  746. color:rgba(255, 255, 255, 0.698039215686274);
  747. text-align:left;
  748. line-height:30px;
  749. }
  750. #u31569 .text {
  751. position:absolute;
  752. align-self:center;
  753. padding:2px 2px 2px 2px;
  754. box-sizing:border-box;
  755. width:100%;
  756. }
  757. #u31569_text {
  758. border-width:0px;
  759. white-space:nowrap;
  760. text-transform:none;
  761. }
  762. #u31570_div {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:29px;
  768. height:34px;
  769. background:inherit;
  770. background-color:rgba(255, 255, 255, 0);
  771. border:none;
  772. border-radius:0px;
  773. -moz-box-shadow:none;
  774. -webkit-box-shadow:none;
  775. box-shadow:none;
  776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  777. font-weight:400;
  778. font-style:normal;
  779. font-size:12px;
  780. color:rgba(255, 255, 255, 0.698039215686274);
  781. text-align:left;
  782. line-height:30px;
  783. }
  784. #u31570 {
  785. border-width:0px;
  786. position:absolute;
  787. left:1441px;
  788. top:140px;
  789. width:29px;
  790. height:34px;
  791. display:flex;
  792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  793. font-weight:400;
  794. font-style:normal;
  795. font-size:12px;
  796. color:rgba(255, 255, 255, 0.698039215686274);
  797. text-align:left;
  798. line-height:30px;
  799. }
  800. #u31570 .text {
  801. position:absolute;
  802. align-self:center;
  803. padding:2px 2px 2px 2px;
  804. box-sizing:border-box;
  805. width:100%;
  806. }
  807. #u31570_text {
  808. border-width:0px;
  809. white-space:nowrap;
  810. text-transform:none;
  811. }
  812. #u31571 {
  813. border-width:0px;
  814. position:absolute;
  815. left:0px;
  816. top:0px;
  817. width:0px;
  818. height:0px;
  819. }
  820. #u31572_img {
  821. border-width:0px;
  822. position:absolute;
  823. left:0px;
  824. top:0px;
  825. width:240px;
  826. height:30px;
  827. }
  828. #u31572 {
  829. border-width:0px;
  830. position:absolute;
  831. left:1246px;
  832. top:292px;
  833. width:240px;
  834. height:30px;
  835. display:flex;
  836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  837. font-weight:400;
  838. font-style:normal;
  839. font-size:12px;
  840. color:#FFFFFF;
  841. text-align:left;
  842. }
  843. #u31572 .text {
  844. position:absolute;
  845. align-self:center;
  846. padding:2px 2px 2px 10px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u31572_text {
  851. border-width:0px;
  852. word-wrap:break-word;
  853. text-transform:none;
  854. visibility:hidden;
  855. }
  856. #u31573_div {
  857. border-width:0px;
  858. position:absolute;
  859. left:0px;
  860. top:0px;
  861. width:49px;
  862. height:17px;
  863. background:inherit;
  864. background-color:rgba(255, 255, 255, 0);
  865. border:none;
  866. border-radius:0px;
  867. -moz-box-shadow:none;
  868. -webkit-box-shadow:none;
  869. box-shadow:none;
  870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  871. font-weight:400;
  872. font-style:normal;
  873. font-size:12px;
  874. color:#FFFFFF;
  875. }
  876. #u31573 {
  877. border-width:0px;
  878. position:absolute;
  879. left:1256px;
  880. top:297px;
  881. width:49px;
  882. height:17px;
  883. display:flex;
  884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  885. font-weight:400;
  886. font-style:normal;
  887. font-size:12px;
  888. color:#FFFFFF;
  889. }
  890. #u31573 .text {
  891. position:absolute;
  892. align-self:flex-start;
  893. padding:0px 0px 0px 0px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u31573_text {
  898. border-width:0px;
  899. white-space:nowrap;
  900. text-transform:none;
  901. }
  902. #u31574 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u31575_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:240px;
  916. height:60px;
  917. }
  918. #u31575 {
  919. border-width:0px;
  920. position:absolute;
  921. left:1240px;
  922. top:682px;
  923. width:240px;
  924. height:60px;
  925. display:flex;
  926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  927. font-weight:400;
  928. font-style:normal;
  929. font-size:12px;
  930. color:#FFFFFF;
  931. text-align:left;
  932. }
  933. #u31575 .text {
  934. position:absolute;
  935. align-self:center;
  936. padding:2px 2px 2px 10px;
  937. box-sizing:border-box;
  938. width:100%;
  939. }
  940. #u31575_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u31576_img {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:62px;
  952. height:60px;
  953. }
  954. #u31576 {
  955. border-width:0px;
  956. position:absolute;
  957. left:1240px;
  958. top:682px;
  959. width:62px;
  960. height:60px;
  961. display:flex;
  962. }
  963. #u31576 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u31576_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u31577_div {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:41px;
  982. height:21px;
  983. background:inherit;
  984. background-color:rgba(245, 154, 35, 0);
  985. border:none;
  986. border-left:0px;
  987. border-top:0px;
  988. border-right:0px;
  989. border-radius:0px;
  990. border-bottom-right-radius:0px;
  991. border-bottom-left-radius:0px;
  992. -moz-box-shadow:none;
  993. -webkit-box-shadow:none;
  994. box-shadow:none;
  995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  996. font-weight:400;
  997. font-style:normal;
  998. font-size:12px;
  999. color:#FFFFFF;
  1000. text-align:left;
  1001. }
  1002. #u31577 {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:1307px;
  1006. top:686px;
  1007. width:41px;
  1008. height:21px;
  1009. display:flex;
  1010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1011. font-weight:400;
  1012. font-style:normal;
  1013. font-size:12px;
  1014. color:#FFFFFF;
  1015. text-align:left;
  1016. }
  1017. #u31577 .text {
  1018. position:absolute;
  1019. align-self:center;
  1020. padding:2px 2px 2px 2px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u31577_text {
  1025. border-width:0px;
  1026. white-space:nowrap;
  1027. text-transform:none;
  1028. }
  1029. #u31578_div {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:75px;
  1035. height:32px;
  1036. background:inherit;
  1037. background-color:rgba(245, 154, 35, 0);
  1038. border:none;
  1039. border-left:0px;
  1040. border-top:0px;
  1041. border-right:0px;
  1042. border-radius:0px;
  1043. border-bottom-right-radius:0px;
  1044. border-bottom-left-radius:0px;
  1045. -moz-box-shadow:none;
  1046. -webkit-box-shadow:none;
  1047. box-shadow:none;
  1048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1049. font-weight:400;
  1050. font-style:normal;
  1051. font-size:10px;
  1052. color:#FFFFFF;
  1053. text-align:left;
  1054. }
  1055. #u31578 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:1307px;
  1059. top:707px;
  1060. width:75px;
  1061. height:32px;
  1062. display:flex;
  1063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1064. font-weight:400;
  1065. font-style:normal;
  1066. font-size:10px;
  1067. color:#FFFFFF;
  1068. text-align:left;
  1069. }
  1070. #u31578 .text {
  1071. position:absolute;
  1072. align-self:center;
  1073. padding:2px 2px 2px 2px;
  1074. box-sizing:border-box;
  1075. width:100%;
  1076. }
  1077. #u31578_text {
  1078. border-width:0px;
  1079. white-space:nowrap;
  1080. text-transform:none;
  1081. }
  1082. #u31579_div {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:30px;
  1088. height:13px;
  1089. background:inherit;
  1090. background-color:rgba(0, 191, 191, 1);
  1091. border:none;
  1092. border-radius:40px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1097. font-weight:400;
  1098. font-style:normal;
  1099. font-size:8px;
  1100. color:rgba(255, 255, 255, 0.698039215686274);
  1101. }
  1102. #u31579 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:1360px;
  1106. top:690px;
  1107. width:30px;
  1108. height:13px;
  1109. display:flex;
  1110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1111. font-weight:400;
  1112. font-style:normal;
  1113. font-size:8px;
  1114. color:rgba(255, 255, 255, 0.698039215686274);
  1115. }
  1116. #u31579 .text {
  1117. position:absolute;
  1118. align-self:center;
  1119. padding:0px 0px 2px 0px;
  1120. box-sizing:border-box;
  1121. width:100%;
  1122. }
  1123. #u31579_text {
  1124. border-width:0px;
  1125. word-wrap:break-word;
  1126. text-transform:none;
  1127. }
  1128. #u31580_div {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:17px;
  1134. height:21px;
  1135. background:inherit;
  1136. background-color:rgba(245, 154, 35, 0);
  1137. border:none;
  1138. border-left:0px;
  1139. border-top:0px;
  1140. border-right:0px;
  1141. border-radius:0px;
  1142. border-bottom-right-radius:0px;
  1143. border-bottom-left-radius:0px;
  1144. -moz-box-shadow:none;
  1145. -webkit-box-shadow:none;
  1146. box-shadow:none;
  1147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1148. font-weight:400;
  1149. font-style:normal;
  1150. font-size:12px;
  1151. color:#00BFBF;
  1152. text-align:left;
  1153. }
  1154. #u31580 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1453px;
  1158. top:682px;
  1159. width:17px;
  1160. height:21px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:12px;
  1166. color:#00BFBF;
  1167. text-align:left;
  1168. }
  1169. #u31580 .text {
  1170. position:absolute;
  1171. align-self:center;
  1172. padding:2px 2px 2px 2px;
  1173. box-sizing:border-box;
  1174. width:100%;
  1175. }
  1176. #u31580_text {
  1177. border-width:0px;
  1178. white-space:nowrap;
  1179. text-transform:none;
  1180. }
  1181. #u31581 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:0px;
  1185. top:0px;
  1186. width:0px;
  1187. height:0px;
  1188. }
  1189. #u31582_img {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:240px;
  1195. height:60px;
  1196. }
  1197. #u31582 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:1240px;
  1201. top:542px;
  1202. width:240px;
  1203. height:60px;
  1204. display:flex;
  1205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1206. font-weight:400;
  1207. font-style:normal;
  1208. font-size:12px;
  1209. color:#FFFFFF;
  1210. text-align:left;
  1211. }
  1212. #u31582 .text {
  1213. position:absolute;
  1214. align-self:center;
  1215. padding:2px 2px 2px 10px;
  1216. box-sizing:border-box;
  1217. width:100%;
  1218. }
  1219. #u31582_text {
  1220. border-width:0px;
  1221. word-wrap:break-word;
  1222. text-transform:none;
  1223. visibility:hidden;
  1224. }
  1225. #u31583_img {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:0px;
  1229. top:0px;
  1230. width:62px;
  1231. height:60px;
  1232. }
  1233. #u31583 {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:1240px;
  1237. top:542px;
  1238. width:62px;
  1239. height:60px;
  1240. display:flex;
  1241. }
  1242. #u31583 .text {
  1243. position:absolute;
  1244. align-self:center;
  1245. padding:2px 2px 2px 2px;
  1246. box-sizing:border-box;
  1247. width:100%;
  1248. }
  1249. #u31583_text {
  1250. border-width:0px;
  1251. word-wrap:break-word;
  1252. text-transform:none;
  1253. visibility:hidden;
  1254. }
  1255. #u31584_div {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:0px;
  1259. top:0px;
  1260. width:41px;
  1261. height:21px;
  1262. background:inherit;
  1263. background-color:rgba(245, 154, 35, 0);
  1264. border:none;
  1265. border-left:0px;
  1266. border-top:0px;
  1267. border-right:0px;
  1268. border-radius:0px;
  1269. border-bottom-right-radius:0px;
  1270. border-bottom-left-radius:0px;
  1271. -moz-box-shadow:none;
  1272. -webkit-box-shadow:none;
  1273. box-shadow:none;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:12px;
  1278. color:#FFFFFF;
  1279. text-align:left;
  1280. }
  1281. #u31584 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:1307px;
  1285. top:546px;
  1286. width:41px;
  1287. height:21px;
  1288. display:flex;
  1289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1290. font-weight:400;
  1291. font-style:normal;
  1292. font-size:12px;
  1293. color:#FFFFFF;
  1294. text-align:left;
  1295. }
  1296. #u31584 .text {
  1297. position:absolute;
  1298. align-self:center;
  1299. padding:2px 2px 2px 2px;
  1300. box-sizing:border-box;
  1301. width:100%;
  1302. }
  1303. #u31584_text {
  1304. border-width:0px;
  1305. white-space:nowrap;
  1306. text-transform:none;
  1307. }
  1308. #u31585_div {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:0px;
  1312. top:0px;
  1313. width:75px;
  1314. height:32px;
  1315. background:inherit;
  1316. background-color:rgba(245, 154, 35, 0);
  1317. border:none;
  1318. border-left:0px;
  1319. border-top:0px;
  1320. border-right:0px;
  1321. border-radius:0px;
  1322. border-bottom-right-radius:0px;
  1323. border-bottom-left-radius:0px;
  1324. -moz-box-shadow:none;
  1325. -webkit-box-shadow:none;
  1326. box-shadow:none;
  1327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1328. font-weight:400;
  1329. font-style:normal;
  1330. font-size:10px;
  1331. color:#FFFFFF;
  1332. text-align:left;
  1333. }
  1334. #u31585 {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:1307px;
  1338. top:567px;
  1339. width:75px;
  1340. height:32px;
  1341. display:flex;
  1342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1343. font-weight:400;
  1344. font-style:normal;
  1345. font-size:10px;
  1346. color:#FFFFFF;
  1347. text-align:left;
  1348. }
  1349. #u31585 .text {
  1350. position:absolute;
  1351. align-self:center;
  1352. padding:2px 2px 2px 2px;
  1353. box-sizing:border-box;
  1354. width:100%;
  1355. }
  1356. #u31585_text {
  1357. border-width:0px;
  1358. white-space:nowrap;
  1359. text-transform:none;
  1360. }
  1361. #u31586_div {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:24px;
  1367. height:13px;
  1368. background:inherit;
  1369. background-color:rgba(245, 154, 35, 1);
  1370. border:none;
  1371. border-radius:40px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:8px;
  1379. color:rgba(255, 255, 255, 0.698039215686274);
  1380. }
  1381. #u31586 {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:1360px;
  1385. top:550px;
  1386. width:24px;
  1387. height:13px;
  1388. display:flex;
  1389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1390. font-weight:400;
  1391. font-style:normal;
  1392. font-size:8px;
  1393. color:rgba(255, 255, 255, 0.698039215686274);
  1394. }
  1395. #u31586 .text {
  1396. position:absolute;
  1397. align-self:center;
  1398. padding:0px 0px 2px 0px;
  1399. box-sizing:border-box;
  1400. width:100%;
  1401. }
  1402. #u31586_text {
  1403. border-width:0px;
  1404. word-wrap:break-word;
  1405. text-transform:none;
  1406. }
  1407. #u31587_div {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:17px;
  1413. height:21px;
  1414. background:inherit;
  1415. background-color:rgba(245, 154, 35, 0);
  1416. border:none;
  1417. border-left:0px;
  1418. border-top:0px;
  1419. border-right:0px;
  1420. border-radius:0px;
  1421. border-bottom-right-radius:0px;
  1422. border-bottom-left-radius:0px;
  1423. -moz-box-shadow:none;
  1424. -webkit-box-shadow:none;
  1425. box-shadow:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. font-size:12px;
  1430. color:#00BFBF;
  1431. text-align:left;
  1432. }
  1433. #u31587 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:1453px;
  1437. top:542px;
  1438. width:17px;
  1439. height:21px;
  1440. display:flex;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. font-size:12px;
  1445. color:#00BFBF;
  1446. text-align:left;
  1447. }
  1448. #u31587 .text {
  1449. position:absolute;
  1450. align-self:center;
  1451. padding:2px 2px 2px 2px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u31587_text {
  1456. border-width:0px;
  1457. white-space:nowrap;
  1458. text-transform:none;
  1459. }
  1460. #u31588 {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:0px;
  1466. height:0px;
  1467. }
  1468. #u31589_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:240px;
  1474. height:60px;
  1475. }
  1476. #u31589 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:1240px;
  1480. top:612px;
  1481. width:240px;
  1482. height:60px;
  1483. display:flex;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:12px;
  1488. color:#FFFFFF;
  1489. text-align:left;
  1490. }
  1491. #u31589 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 10px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u31589_text {
  1499. border-width:0px;
  1500. word-wrap:break-word;
  1501. text-transform:none;
  1502. visibility:hidden;
  1503. }
  1504. #u31590_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:62px;
  1510. height:60px;
  1511. }
  1512. #u31590 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:1240px;
  1516. top:612px;
  1517. width:62px;
  1518. height:60px;
  1519. display:flex;
  1520. }
  1521. #u31590 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 2px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u31590_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. visibility:hidden;
  1533. }
  1534. #u31591_div {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:41px;
  1540. height:21px;
  1541. background:inherit;
  1542. background-color:rgba(245, 154, 35, 0);
  1543. border:none;
  1544. border-left:0px;
  1545. border-top:0px;
  1546. border-right:0px;
  1547. border-radius:0px;
  1548. border-bottom-right-radius:0px;
  1549. border-bottom-left-radius:0px;
  1550. -moz-box-shadow:none;
  1551. -webkit-box-shadow:none;
  1552. box-shadow:none;
  1553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1554. font-weight:400;
  1555. font-style:normal;
  1556. font-size:12px;
  1557. color:#FFFFFF;
  1558. text-align:left;
  1559. }
  1560. #u31591 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:1307px;
  1564. top:616px;
  1565. width:41px;
  1566. height:21px;
  1567. display:flex;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:12px;
  1572. color:#FFFFFF;
  1573. text-align:left;
  1574. }
  1575. #u31591 .text {
  1576. position:absolute;
  1577. align-self:center;
  1578. padding:2px 2px 2px 2px;
  1579. box-sizing:border-box;
  1580. width:100%;
  1581. }
  1582. #u31591_text {
  1583. border-width:0px;
  1584. white-space:nowrap;
  1585. text-transform:none;
  1586. }
  1587. #u31592_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:75px;
  1593. height:32px;
  1594. background:inherit;
  1595. background-color:rgba(245, 154, 35, 0);
  1596. border:none;
  1597. border-left:0px;
  1598. border-top:0px;
  1599. border-right:0px;
  1600. border-radius:0px;
  1601. border-bottom-right-radius:0px;
  1602. border-bottom-left-radius:0px;
  1603. -moz-box-shadow:none;
  1604. -webkit-box-shadow:none;
  1605. box-shadow:none;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:10px;
  1610. color:#FFFFFF;
  1611. text-align:left;
  1612. }
  1613. #u31592 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:1307px;
  1617. top:637px;
  1618. width:75px;
  1619. height:32px;
  1620. display:flex;
  1621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1622. font-weight:400;
  1623. font-style:normal;
  1624. font-size:10px;
  1625. color:#FFFFFF;
  1626. text-align:left;
  1627. }
  1628. #u31592 .text {
  1629. position:absolute;
  1630. align-self:center;
  1631. padding:2px 2px 2px 2px;
  1632. box-sizing:border-box;
  1633. width:100%;
  1634. }
  1635. #u31592_text {
  1636. border-width:0px;
  1637. white-space:nowrap;
  1638. text-transform:none;
  1639. }
  1640. #u31593_div {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:35px;
  1646. height:13px;
  1647. background:inherit;
  1648. background-color:rgba(217, 0, 27, 1);
  1649. border:none;
  1650. border-radius:40px;
  1651. -moz-box-shadow:none;
  1652. -webkit-box-shadow:none;
  1653. box-shadow:none;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:8px;
  1658. color:rgba(255, 255, 255, 0.698039215686274);
  1659. }
  1660. #u31593 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:1360px;
  1664. top:620px;
  1665. width:35px;
  1666. height:13px;
  1667. display:flex;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:8px;
  1672. color:rgba(255, 255, 255, 0.698039215686274);
  1673. }
  1674. #u31593 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:0px 0px 2px 0px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u31593_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. }
  1686. #u31594_div {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:17px;
  1692. height:21px;
  1693. background:inherit;
  1694. background-color:rgba(245, 154, 35, 0);
  1695. border:none;
  1696. border-left:0px;
  1697. border-top:0px;
  1698. border-right:0px;
  1699. border-radius:0px;
  1700. border-bottom-right-radius:0px;
  1701. border-bottom-left-radius:0px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:12px;
  1709. color:#F59A23;
  1710. text-align:left;
  1711. }
  1712. #u31594 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:1453px;
  1716. top:612px;
  1717. width:17px;
  1718. height:21px;
  1719. display:flex;
  1720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1721. font-weight:400;
  1722. font-style:normal;
  1723. font-size:12px;
  1724. color:#F59A23;
  1725. text-align:left;
  1726. }
  1727. #u31594 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 2px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u31594_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u31595 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:0px;
  1745. height:0px;
  1746. }
  1747. #u31596_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:240px;
  1753. height:60px;
  1754. }
  1755. #u31596 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:1240px;
  1759. top:752px;
  1760. width:240px;
  1761. height:60px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#FFFFFF;
  1768. text-align:left;
  1769. }
  1770. #u31596 .text {
  1771. position:absolute;
  1772. align-self:center;
  1773. padding:2px 2px 2px 10px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u31596_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. visibility:hidden;
  1782. }
  1783. #u31597_img {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:62px;
  1789. height:60px;
  1790. }
  1791. #u31597 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:1240px;
  1795. top:752px;
  1796. width:62px;
  1797. height:60px;
  1798. display:flex;
  1799. }
  1800. #u31597 .text {
  1801. position:absolute;
  1802. align-self:center;
  1803. padding:2px 2px 2px 2px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u31597_text {
  1808. border-width:0px;
  1809. word-wrap:break-word;
  1810. text-transform:none;
  1811. visibility:hidden;
  1812. }
  1813. #u31598_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:41px;
  1819. height:21px;
  1820. background:inherit;
  1821. background-color:rgba(245, 154, 35, 0);
  1822. border:none;
  1823. border-left:0px;
  1824. border-top:0px;
  1825. border-right:0px;
  1826. border-radius:0px;
  1827. border-bottom-right-radius:0px;
  1828. border-bottom-left-radius:0px;
  1829. -moz-box-shadow:none;
  1830. -webkit-box-shadow:none;
  1831. box-shadow:none;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:12px;
  1836. color:#FFFFFF;
  1837. text-align:left;
  1838. }
  1839. #u31598 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1307px;
  1843. top:756px;
  1844. width:41px;
  1845. height:21px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:12px;
  1851. color:#FFFFFF;
  1852. text-align:left;
  1853. }
  1854. #u31598 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 2px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u31598_text {
  1862. border-width:0px;
  1863. white-space:nowrap;
  1864. text-transform:none;
  1865. }
  1866. #u31599_div {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:75px;
  1872. height:32px;
  1873. background:inherit;
  1874. background-color:rgba(245, 154, 35, 0);
  1875. border:none;
  1876. border-left:0px;
  1877. border-top:0px;
  1878. border-right:0px;
  1879. border-radius:0px;
  1880. border-bottom-right-radius:0px;
  1881. border-bottom-left-radius:0px;
  1882. -moz-box-shadow:none;
  1883. -webkit-box-shadow:none;
  1884. box-shadow:none;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:10px;
  1889. color:#FFFFFF;
  1890. text-align:left;
  1891. }
  1892. #u31599 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:1307px;
  1896. top:777px;
  1897. width:75px;
  1898. height:32px;
  1899. display:flex;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:10px;
  1904. color:#FFFFFF;
  1905. text-align:left;
  1906. }
  1907. #u31599 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 2px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u31599_text {
  1915. border-width:0px;
  1916. white-space:nowrap;
  1917. text-transform:none;
  1918. }
  1919. #u31600_div {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:30px;
  1925. height:13px;
  1926. background:inherit;
  1927. background-color:rgba(112, 182, 3, 1);
  1928. border:none;
  1929. border-radius:40px;
  1930. -moz-box-shadow:none;
  1931. -webkit-box-shadow:none;
  1932. box-shadow:none;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:8px;
  1937. color:rgba(255, 255, 255, 0.698039215686274);
  1938. }
  1939. #u31600 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:1360px;
  1943. top:760px;
  1944. width:30px;
  1945. height:13px;
  1946. display:flex;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:8px;
  1951. color:rgba(255, 255, 255, 0.698039215686274);
  1952. }
  1953. #u31600 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:0px 0px 2px 0px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u31600_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u31601_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:17px;
  1971. height:21px;
  1972. background:inherit;
  1973. background-color:rgba(245, 154, 35, 0);
  1974. border:none;
  1975. border-left:0px;
  1976. border-top:0px;
  1977. border-right:0px;
  1978. border-radius:0px;
  1979. border-bottom-right-radius:0px;
  1980. border-bottom-left-radius:0px;
  1981. -moz-box-shadow:none;
  1982. -webkit-box-shadow:none;
  1983. box-shadow:none;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:12px;
  1988. color:#F59A23;
  1989. text-align:left;
  1990. }
  1991. #u31601 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:1453px;
  1995. top:752px;
  1996. width:17px;
  1997. height:21px;
  1998. display:flex;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:12px;
  2003. color:#F59A23;
  2004. text-align:left;
  2005. }
  2006. #u31601 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u31601_text {
  2014. border-width:0px;
  2015. white-space:nowrap;
  2016. text-transform:none;
  2017. }
  2018. #u31602_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:80px;
  2024. height:30px;
  2025. background:inherit;
  2026. background-color:rgba(245, 154, 35, 1);
  2027. box-sizing:border-box;
  2028. border-width:1px;
  2029. border-style:solid;
  2030. border-color:rgba(245, 154, 35, 1);
  2031. border-radius:4px;
  2032. border-top-right-radius:0px;
  2033. border-bottom-right-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. font-size:15px;
  2041. color:#FFFFFF;
  2042. }
  2043. #u31602 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:675px;
  2047. top:82px;
  2048. width:80px;
  2049. height:30px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:15px;
  2055. color:#FFFFFF;
  2056. }
  2057. #u31602 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u31602_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u31603_div {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:80px;
  2075. height:30px;
  2076. background:inherit;
  2077. background-color:rgba(245, 154, 35, 0.0980392156862745);
  2078. box-sizing:border-box;
  2079. border-width:1px;
  2080. border-style:solid;
  2081. border-color:rgba(245, 154, 35, 1);
  2082. border-radius:0px;
  2083. border-top-right-radius:0px;
  2084. border-bottom-right-radius:0px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:15px;
  2092. color:#FFFFFF;
  2093. }
  2094. #u31603 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:755px;
  2098. top:82px;
  2099. width:80px;
  2100. height:30px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:15px;
  2106. color:#FFFFFF;
  2107. }
  2108. #u31603 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 2px 2px 2px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u31603_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. }
  2120. #u31604_div {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:240px;
  2126. height:40px;
  2127. background:inherit;
  2128. background-color:rgba(245, 154, 35, 0.2);
  2129. box-sizing:border-box;
  2130. border-width:2px;
  2131. border-style:solid;
  2132. border-color:rgba(245, 154, 35, 1);
  2133. border-left:0px;
  2134. border-top:0px;
  2135. border-right:0px;
  2136. border-radius:0px;
  2137. border-bottom-right-radius:0px;
  2138. border-bottom-left-radius:0px;
  2139. -moz-box-shadow:none;
  2140. -webkit-box-shadow:none;
  2141. box-shadow:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:18px;
  2146. color:#FFFFFF;
  2147. text-align:left;
  2148. }
  2149. #u31604 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:31px;
  2153. top:137px;
  2154. width:240px;
  2155. height:40px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:18px;
  2161. color:#FFFFFF;
  2162. text-align:left;
  2163. }
  2164. #u31604 .text {
  2165. position:absolute;
  2166. align-self:center;
  2167. padding:2px 2px 2px 10px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u31604_text {
  2172. border-width:0px;
  2173. word-wrap:break-word;
  2174. text-transform:none;
  2175. }
  2176. #u31605_div {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:240px;
  2182. height:40px;
  2183. background:inherit;
  2184. background-color:rgba(245, 154, 35, 0.2);
  2185. box-sizing:border-box;
  2186. border-width:2px;
  2187. border-style:solid;
  2188. border-color:rgba(245, 154, 35, 1);
  2189. border-left:0px;
  2190. border-top:0px;
  2191. border-right:0px;
  2192. border-radius:0px;
  2193. border-bottom-right-radius:0px;
  2194. border-bottom-left-radius:0px;
  2195. -moz-box-shadow:none;
  2196. -webkit-box-shadow:none;
  2197. box-shadow:none;
  2198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:18px;
  2202. color:#FFFFFF;
  2203. text-align:left;
  2204. }
  2205. #u31605 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:31px;
  2209. top:605px;
  2210. width:240px;
  2211. height:40px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:18px;
  2217. color:#FFFFFF;
  2218. text-align:left;
  2219. }
  2220. #u31605 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 10px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u31605_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u31606 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:0px;
  2238. height:0px;
  2239. }
  2240. #u31607_div {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:14px;
  2246. height:11px;
  2247. background:inherit;
  2248. background-color:rgba(255, 255, 255, 0);
  2249. border:none;
  2250. border-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:8px;
  2258. color:rgba(255, 255, 255, 0.435294117647059);
  2259. }
  2260. #u31607 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:31px;
  2264. top:783px;
  2265. width:14px;
  2266. height:11px;
  2267. display:flex;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:8px;
  2272. color:rgba(255, 255, 255, 0.435294117647059);
  2273. }
  2274. #u31607 .text {
  2275. position:absolute;
  2276. align-self:flex-start;
  2277. padding:0px 0px 0px 0px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u31607_text {
  2282. border-width:0px;
  2283. white-space:nowrap;
  2284. text-transform:none;
  2285. }
  2286. #u31608_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:14px;
  2292. height:11px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 0);
  2295. border:none;
  2296. border-radius:0px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:8px;
  2304. color:rgba(255, 255, 255, 0.435294117647059);
  2305. }
  2306. #u31608 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:49px;
  2310. top:783px;
  2311. width:14px;
  2312. height:11px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:8px;
  2318. color:rgba(255, 255, 255, 0.435294117647059);
  2319. }
  2320. #u31608 .text {
  2321. position:absolute;
  2322. align-self:flex-start;
  2323. padding:0px 0px 0px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u31608_text {
  2328. border-width:0px;
  2329. white-space:nowrap;
  2330. text-transform:none;
  2331. }
  2332. #u31609_div {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:14px;
  2338. height:11px;
  2339. background:inherit;
  2340. background-color:rgba(255, 255, 255, 0);
  2341. border:none;
  2342. border-radius:0px;
  2343. -moz-box-shadow:none;
  2344. -webkit-box-shadow:none;
  2345. box-shadow:none;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:8px;
  2350. color:rgba(255, 255, 255, 0.435294117647059);
  2351. }
  2352. #u31609 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:68px;
  2356. top:783px;
  2357. width:14px;
  2358. height:11px;
  2359. display:flex;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:8px;
  2364. color:rgba(255, 255, 255, 0.435294117647059);
  2365. }
  2366. #u31609 .text {
  2367. position:absolute;
  2368. align-self:flex-start;
  2369. padding:0px 0px 0px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u31609_text {
  2374. border-width:0px;
  2375. white-space:nowrap;
  2376. text-transform:none;
  2377. }
  2378. #u31610_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:14px;
  2384. height:11px;
  2385. background:inherit;
  2386. background-color:rgba(255, 255, 255, 0);
  2387. border:none;
  2388. border-radius:0px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:8px;
  2396. color:rgba(255, 255, 255, 0.435294117647059);
  2397. }
  2398. #u31610 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:86px;
  2402. top:783px;
  2403. width:14px;
  2404. height:11px;
  2405. display:flex;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:8px;
  2410. color:rgba(255, 255, 255, 0.435294117647059);
  2411. }
  2412. #u31610 .text {
  2413. position:absolute;
  2414. align-self:flex-start;
  2415. padding:0px 0px 0px 0px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u31610_text {
  2420. border-width:0px;
  2421. white-space:nowrap;
  2422. text-transform:none;
  2423. }
  2424. #u31611_div {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:14px;
  2430. height:11px;
  2431. background:inherit;
  2432. background-color:rgba(255, 255, 255, 0);
  2433. border:none;
  2434. border-radius:0px;
  2435. -moz-box-shadow:none;
  2436. -webkit-box-shadow:none;
  2437. box-shadow:none;
  2438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:8px;
  2442. color:rgba(255, 255, 255, 0.435294117647059);
  2443. }
  2444. #u31611 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:104px;
  2448. top:783px;
  2449. width:14px;
  2450. height:11px;
  2451. display:flex;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:8px;
  2456. color:rgba(255, 255, 255, 0.435294117647059);
  2457. }
  2458. #u31611 .text {
  2459. position:absolute;
  2460. align-self:flex-start;
  2461. padding:0px 0px 0px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u31611_text {
  2466. border-width:0px;
  2467. white-space:nowrap;
  2468. text-transform:none;
  2469. }
  2470. #u31612_div {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:17px;
  2476. height:11px;
  2477. background:inherit;
  2478. background-color:rgba(255, 255, 255, 0);
  2479. border:none;
  2480. border-radius:0px;
  2481. -moz-box-shadow:none;
  2482. -webkit-box-shadow:none;
  2483. box-shadow:none;
  2484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2485. font-weight:400;
  2486. font-style:normal;
  2487. font-size:8px;
  2488. color:rgba(255, 255, 255, 0.435294117647059);
  2489. }
  2490. #u31612 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:123px;
  2494. top:783px;
  2495. width:17px;
  2496. height:11px;
  2497. display:flex;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:8px;
  2502. color:rgba(255, 255, 255, 0.435294117647059);
  2503. }
  2504. #u31612 .text {
  2505. position:absolute;
  2506. align-self:flex-start;
  2507. padding:0px 0px 0px 0px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u31612_text {
  2512. border-width:0px;
  2513. white-space:nowrap;
  2514. text-transform:none;
  2515. }
  2516. #u31613_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:17px;
  2522. height:11px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:8px;
  2534. color:rgba(255, 255, 255, 0.435294117647059);
  2535. }
  2536. #u31613 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:144px;
  2540. top:783px;
  2541. width:17px;
  2542. height:11px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:8px;
  2548. color:rgba(255, 255, 255, 0.435294117647059);
  2549. }
  2550. #u31613 .text {
  2551. position:absolute;
  2552. align-self:flex-start;
  2553. padding:0px 0px 0px 0px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u31613_text {
  2558. border-width:0px;
  2559. white-space:nowrap;
  2560. text-transform:none;
  2561. }
  2562. #u31614_div {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:17px;
  2568. height:11px;
  2569. background:inherit;
  2570. background-color:rgba(255, 255, 255, 0);
  2571. border:none;
  2572. border-radius:0px;
  2573. -moz-box-shadow:none;
  2574. -webkit-box-shadow:none;
  2575. box-shadow:none;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:8px;
  2580. color:rgba(255, 255, 255, 0.435294117647059);
  2581. }
  2582. #u31614 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:166px;
  2586. top:783px;
  2587. width:17px;
  2588. height:11px;
  2589. display:flex;
  2590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2591. font-weight:400;
  2592. font-style:normal;
  2593. font-size:8px;
  2594. color:rgba(255, 255, 255, 0.435294117647059);
  2595. }
  2596. #u31614 .text {
  2597. position:absolute;
  2598. align-self:flex-start;
  2599. padding:0px 0px 0px 0px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u31614_text {
  2604. border-width:0px;
  2605. white-space:nowrap;
  2606. text-transform:none;
  2607. }
  2608. #u31615_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:17px;
  2614. height:11px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 0);
  2617. border:none;
  2618. border-radius:0px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:8px;
  2626. color:rgba(255, 255, 255, 0.435294117647059);
  2627. }
  2628. #u31615 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:187px;
  2632. top:783px;
  2633. width:17px;
  2634. height:11px;
  2635. display:flex;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:8px;
  2640. color:rgba(255, 255, 255, 0.435294117647059);
  2641. }
  2642. #u31615 .text {
  2643. position:absolute;
  2644. align-self:flex-start;
  2645. padding:0px 0px 0px 0px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u31615_text {
  2650. border-width:0px;
  2651. white-space:nowrap;
  2652. text-transform:none;
  2653. }
  2654. #u31616_div {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:17px;
  2660. height:11px;
  2661. background:inherit;
  2662. background-color:rgba(255, 255, 255, 0);
  2663. border:none;
  2664. border-radius:0px;
  2665. -moz-box-shadow:none;
  2666. -webkit-box-shadow:none;
  2667. box-shadow:none;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:8px;
  2672. color:rgba(255, 255, 255, 0.435294117647059);
  2673. }
  2674. #u31616 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:208px;
  2678. top:783px;
  2679. width:17px;
  2680. height:11px;
  2681. display:flex;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:8px;
  2686. color:rgba(255, 255, 255, 0.435294117647059);
  2687. }
  2688. #u31616 .text {
  2689. position:absolute;
  2690. align-self:flex-start;
  2691. padding:0px 0px 0px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u31616_text {
  2696. border-width:0px;
  2697. white-space:nowrap;
  2698. text-transform:none;
  2699. }
  2700. #u31617_div {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:19px;
  2706. height:11px;
  2707. background:inherit;
  2708. background-color:rgba(255, 255, 255, 0);
  2709. border:none;
  2710. border-radius:0px;
  2711. -moz-box-shadow:none;
  2712. -webkit-box-shadow:none;
  2713. box-shadow:none;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:8px;
  2718. color:rgba(255, 255, 255, 0.435294117647059);
  2719. }
  2720. #u31617 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:230px;
  2724. top:783px;
  2725. width:19px;
  2726. height:11px;
  2727. display:flex;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:8px;
  2732. color:rgba(255, 255, 255, 0.435294117647059);
  2733. }
  2734. #u31617 .text {
  2735. position:absolute;
  2736. align-self:flex-start;
  2737. padding:0px 0px 0px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u31617_text {
  2742. border-width:0px;
  2743. white-space:nowrap;
  2744. text-transform:none;
  2745. }
  2746. #u31618_div {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:19px;
  2752. height:11px;
  2753. background:inherit;
  2754. background-color:rgba(255, 255, 255, 0);
  2755. border:none;
  2756. border-radius:0px;
  2757. -moz-box-shadow:none;
  2758. -webkit-box-shadow:none;
  2759. box-shadow:none;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:8px;
  2764. color:rgba(255, 255, 255, 0.435294117647059);
  2765. }
  2766. #u31618 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:253px;
  2770. top:783px;
  2771. width:19px;
  2772. height:11px;
  2773. display:flex;
  2774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:8px;
  2778. color:rgba(255, 255, 255, 0.435294117647059);
  2779. }
  2780. #u31618 .text {
  2781. position:absolute;
  2782. align-self:flex-start;
  2783. padding:0px 0px 0px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u31618_text {
  2788. border-width:0px;
  2789. white-space:nowrap;
  2790. text-transform:none;
  2791. }
  2792. #u31619 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:0px;
  2798. height:0px;
  2799. }
  2800. #u31620_img {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:240px;
  2806. height:85px;
  2807. }
  2808. #u31620 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:32px;
  2812. top:672px;
  2813. width:239px;
  2814. height:84px;
  2815. display:flex;
  2816. color:rgba(255, 255, 255, 0.435294117647059);
  2817. }
  2818. #u31620 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u31620_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. visibility:hidden;
  2830. }
  2831. #u31621_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:239px;
  2837. height:92px;
  2838. }
  2839. #u31621 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:31px;
  2843. top:687px;
  2844. width:238px;
  2845. height:91px;
  2846. display:flex;
  2847. color:rgba(255, 255, 255, 0.435294117647059);
  2848. }
  2849. #u31621 .text {
  2850. position:absolute;
  2851. align-self:center;
  2852. padding:2px 2px 2px 2px;
  2853. box-sizing:border-box;
  2854. width:100%;
  2855. }
  2856. #u31621_text {
  2857. border-width:0px;
  2858. word-wrap:break-word;
  2859. text-transform:none;
  2860. visibility:hidden;
  2861. }
  2862. #u31622_img {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:240px;
  2868. height:4px;
  2869. }
  2870. #u31622 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:31px;
  2874. top:777px;
  2875. width:239px;
  2876. height:3px;
  2877. display:flex;
  2878. }
  2879. #u31622 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 2px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u31622_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u31623 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:0px;
  2898. height:0px;
  2899. }
  2900. #u31624 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:0px;
  2906. height:0px;
  2907. }
  2908. #u31625_img {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:11px;
  2914. height:2px;
  2915. }
  2916. #u31625 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:185px;
  2920. top:664px;
  2921. width:10px;
  2922. height:1px;
  2923. display:flex;
  2924. }
  2925. #u31625 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u31625_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u31626_div {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:15px;
  2944. height:18px;
  2945. background:inherit;
  2946. background-color:rgba(255, 255, 255, 0);
  2947. border:none;
  2948. border-radius:0px;
  2949. -moz-box-shadow:none;
  2950. -webkit-box-shadow:none;
  2951. box-shadow:none;
  2952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2953. font-weight:400;
  2954. font-style:normal;
  2955. font-size:10px;
  2956. color:#FFFFFF;
  2957. text-align:left;
  2958. }
  2959. #u31626 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:198px;
  2963. top:655px;
  2964. width:15px;
  2965. height:18px;
  2966. display:flex;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:10px;
  2971. color:#FFFFFF;
  2972. text-align:left;
  2973. }
  2974. #u31626 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 2px 2px 2px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u31626_text {
  2982. border-width:0px;
  2983. white-space:nowrap;
  2984. text-transform:none;
  2985. }
  2986. #u31627 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:0px;
  2992. height:0px;
  2993. }
  2994. #u31628_img {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:11px;
  3000. height:2px;
  3001. }
  3002. #u31628 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:243px;
  3006. top:664px;
  3007. width:10px;
  3008. height:1px;
  3009. display:flex;
  3010. }
  3011. #u31628 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u31628_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u31629_div {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:15px;
  3030. height:18px;
  3031. background:inherit;
  3032. background-color:rgba(255, 255, 255, 0);
  3033. border:none;
  3034. border-radius:0px;
  3035. -moz-box-shadow:none;
  3036. -webkit-box-shadow:none;
  3037. box-shadow:none;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:10px;
  3042. color:#FFFFFF;
  3043. text-align:left;
  3044. }
  3045. #u31629 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:256px;
  3049. top:655px;
  3050. width:15px;
  3051. height:18px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:10px;
  3057. color:#FFFFFF;
  3058. text-align:left;
  3059. }
  3060. #u31629 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 2px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u31629_text {
  3068. border-width:0px;
  3069. white-space:nowrap;
  3070. text-transform:none;
  3071. }
  3072. #u31630_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:-5px;
  3076. top:-5px;
  3077. width:30px;
  3078. height:40px;
  3079. }
  3080. #u31630 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:826px;
  3084. top:616px;
  3085. width:20px;
  3086. height:30px;
  3087. display:flex;
  3088. }
  3089. #u31630 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u31630_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. visibility:hidden;
  3101. }
  3102. #u31631_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:-5px;
  3106. top:-5px;
  3107. width:30px;
  3108. height:40px;
  3109. }
  3110. #u31631 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:1010px;
  3114. top:316px;
  3115. width:20px;
  3116. height:30px;
  3117. display:flex;
  3118. }
  3119. #u31631 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u31631_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u31632 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:0px;
  3138. height:0px;
  3139. }
  3140. #u31633_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:360px;
  3146. height:154px;
  3147. background:inherit;
  3148. background-color:rgba(95, 72, 47, 1);
  3149. box-sizing:border-box;
  3150. border-width:2px;
  3151. border-style:solid;
  3152. border-color:rgba(245, 154, 35, 1);
  3153. border-radius:10px;
  3154. -moz-box-shadow:none;
  3155. -webkit-box-shadow:none;
  3156. box-shadow:none;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#FFFFFF;
  3162. text-align:left;
  3163. }
  3164. #u31633 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:816px;
  3168. top:439px;
  3169. width:360px;
  3170. height:154px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. color:#FFFFFF;
  3177. text-align:left;
  3178. }
  3179. #u31633 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:2px 2px 2px 10px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u31633_text {
  3187. border-width:0px;
  3188. word-wrap:break-word;
  3189. text-transform:none;
  3190. visibility:hidden;
  3191. }
  3192. #u31634 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:0px;
  3198. height:0px;
  3199. }
  3200. #u31635_div {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:360px;
  3206. height:40px;
  3207. background:inherit;
  3208. background-color:rgba(221, 142, 35, 1);
  3209. box-sizing:border-box;
  3210. border-width:2px;
  3211. border-style:solid;
  3212. border-color:rgba(245, 154, 35, 1);
  3213. border-radius:10px;
  3214. border-bottom-right-radius:0px;
  3215. border-bottom-left-radius:0px;
  3216. -moz-box-shadow:none;
  3217. -webkit-box-shadow:none;
  3218. box-shadow:none;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:12px;
  3223. color:#FFFFFF;
  3224. text-align:left;
  3225. }
  3226. #u31635 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:816px;
  3230. top:439px;
  3231. width:360px;
  3232. height:40px;
  3233. display:flex;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. font-size:12px;
  3238. color:#FFFFFF;
  3239. text-align:left;
  3240. }
  3241. #u31635 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 10px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u31635_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. visibility:hidden;
  3253. }
  3254. #u31636_div {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:167px;
  3260. height:29px;
  3261. background:inherit;
  3262. background-color:rgba(245, 154, 35, 0);
  3263. border:none;
  3264. border-left:0px;
  3265. border-top:0px;
  3266. border-right:0px;
  3267. border-radius:0px;
  3268. border-bottom-right-radius:0px;
  3269. border-bottom-left-radius:0px;
  3270. -moz-box-shadow:none;
  3271. -webkit-box-shadow:none;
  3272. box-shadow:none;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:18px;
  3277. color:#FFFFFF;
  3278. text-align:left;
  3279. }
  3280. #u31636 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:836px;
  3284. top:444px;
  3285. width:167px;
  3286. height:29px;
  3287. display:flex;
  3288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3289. font-weight:400;
  3290. font-style:normal;
  3291. font-size:18px;
  3292. color:#FFFFFF;
  3293. text-align:left;
  3294. }
  3295. #u31636 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u31636_text {
  3303. border-width:0px;
  3304. white-space:nowrap;
  3305. text-transform:none;
  3306. }
  3307. #u31637_div {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:41px;
  3313. height:29px;
  3314. background:inherit;
  3315. background-color:rgba(245, 154, 35, 0);
  3316. border:none;
  3317. border-left:0px;
  3318. border-top:0px;
  3319. border-right:0px;
  3320. border-radius:0px;
  3321. border-bottom-right-radius:0px;
  3322. border-bottom-left-radius:0px;
  3323. -moz-box-shadow:none;
  3324. -webkit-box-shadow:none;
  3325. box-shadow:none;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:18px;
  3330. color:#FFFFFF;
  3331. text-align:left;
  3332. }
  3333. #u31637 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:1124px;
  3337. top:444px;
  3338. width:41px;
  3339. height:29px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:18px;
  3345. color:#FFFFFF;
  3346. text-align:left;
  3347. }
  3348. #u31637 .text {
  3349. position:absolute;
  3350. align-self:center;
  3351. padding:2px 2px 2px 2px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u31637_text {
  3356. border-width:0px;
  3357. white-space:nowrap;
  3358. text-transform:none;
  3359. }
  3360. #u31638_div {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:75px;
  3366. height:34px;
  3367. background:inherit;
  3368. background-color:rgba(245, 154, 35, 0);
  3369. border:none;
  3370. border-left:0px;
  3371. border-top:0px;
  3372. border-right:0px;
  3373. border-radius:0px;
  3374. border-bottom-right-radius:0px;
  3375. border-bottom-left-radius:0px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:14px;
  3383. color:#FFFFFF;
  3384. text-align:left;
  3385. line-height:30px;
  3386. }
  3387. #u31638 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:836px;
  3391. top:492px;
  3392. width:75px;
  3393. height:34px;
  3394. display:flex;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:14px;
  3399. color:#FFFFFF;
  3400. text-align:left;
  3401. line-height:30px;
  3402. }
  3403. #u31638 .text {
  3404. position:absolute;
  3405. align-self:flex-start;
  3406. padding:2px 2px 2px 2px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u31638_text {
  3411. border-width:0px;
  3412. white-space:nowrap;
  3413. text-transform:none;
  3414. }
  3415. #u31639_div {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:98px;
  3421. height:34px;
  3422. background:inherit;
  3423. background-color:rgba(255, 255, 255, 0);
  3424. border:none;
  3425. border-radius:0px;
  3426. -moz-box-shadow:none;
  3427. -webkit-box-shadow:none;
  3428. box-shadow:none;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:12px;
  3433. color:rgba(255, 255, 255, 0.698039215686274);
  3434. text-align:left;
  3435. line-height:30px;
  3436. }
  3437. #u31639 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:904px;
  3441. top:536px;
  3442. width:98px;
  3443. height:34px;
  3444. display:flex;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:12px;
  3449. color:rgba(255, 255, 255, 0.698039215686274);
  3450. text-align:left;
  3451. line-height:30px;
  3452. }
  3453. #u31639 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 2px 2px 2px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u31639_text {
  3461. border-width:0px;
  3462. white-space:nowrap;
  3463. text-transform:none;
  3464. }
  3465. #u31640_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:63px;
  3471. height:34px;
  3472. background:inherit;
  3473. background-color:rgba(245, 154, 35, 0);
  3474. border:none;
  3475. border-left:0px;
  3476. border-top:0px;
  3477. border-right:0px;
  3478. border-radius:0px;
  3479. border-bottom-right-radius:0px;
  3480. border-bottom-left-radius:0px;
  3481. -moz-box-shadow:none;
  3482. -webkit-box-shadow:none;
  3483. box-shadow:none;
  3484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3485. font-weight:500;
  3486. font-style:normal;
  3487. font-size:24px;
  3488. color:#FFFFFF;
  3489. text-align:left;
  3490. line-height:30px;
  3491. }
  3492. #u31640 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:836px;
  3496. top:536px;
  3497. width:63px;
  3498. height:34px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3501. font-weight:500;
  3502. font-style:normal;
  3503. font-size:24px;
  3504. color:#FFFFFF;
  3505. text-align:left;
  3506. line-height:30px;
  3507. }
  3508. #u31640 .text {
  3509. position:absolute;
  3510. align-self:flex-start;
  3511. padding:2px 2px 2px 2px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u31640_text {
  3516. border-width:0px;
  3517. white-space:nowrap;
  3518. text-transform:none;
  3519. }
  3520. #u31641_div {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:98px;
  3526. height:34px;
  3527. background:inherit;
  3528. background-color:rgba(255, 255, 255, 0);
  3529. border:none;
  3530. border-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. color:rgba(255, 255, 255, 0.698039215686274);
  3539. text-align:left;
  3540. line-height:30px;
  3541. }
  3542. #u31641 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:989px;
  3546. top:536px;
  3547. width:98px;
  3548. height:34px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:12px;
  3554. color:rgba(255, 255, 255, 0.698039215686274);
  3555. text-align:left;
  3556. line-height:30px;
  3557. }
  3558. #u31641 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u31641_text {
  3566. border-width:0px;
  3567. white-space:nowrap;
  3568. text-transform:none;
  3569. }
  3570. #u31642_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:19px;
  3576. height:19px;
  3577. }
  3578. #u31642 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:1142px;
  3582. top:500px;
  3583. width:19px;
  3584. height:19px;
  3585. display:flex;
  3586. }
  3587. #u31642 .text {
  3588. position:absolute;
  3589. align-self:center;
  3590. padding:2px 2px 2px 2px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u31642_text {
  3595. border-width:0px;
  3596. word-wrap:break-word;
  3597. text-transform:none;
  3598. visibility:hidden;
  3599. }
  3600. #u31643_div {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:188px;
  3606. height:30px;
  3607. background:inherit;
  3608. background-color:rgba(245, 154, 35, 1);
  3609. box-sizing:border-box;
  3610. border-width:1px;
  3611. border-style:solid;
  3612. border-color:rgba(245, 154, 35, 1);
  3613. border-radius:53px;
  3614. -moz-box-shadow:none;
  3615. -webkit-box-shadow:none;
  3616. box-shadow:none;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:15px;
  3621. color:#FFFFFF;
  3622. }
  3623. #u31643 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:1027px;
  3627. top:287px;
  3628. width:188px;
  3629. height:30px;
  3630. display:flex;
  3631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:15px;
  3635. color:#FFFFFF;
  3636. }
  3637. #u31643 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:2px 2px 2px 2px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u31643_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. }
  3649. #u31644_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:105px;
  3655. height:17px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 0);
  3658. border:none;
  3659. border-top:0px;
  3660. border-right:0px;
  3661. border-bottom:0px;
  3662. border-radius:0px;
  3663. border-top-left-radius:0px;
  3664. border-bottom-left-radius:0px;
  3665. -moz-box-shadow:none;
  3666. -webkit-box-shadow:none;
  3667. box-shadow:none;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:12px;
  3672. color:rgba(255, 255, 255, 0.972549019607843);
  3673. }
  3674. #u31644 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:41px;
  3678. top:268px;
  3679. width:105px;
  3680. height:17px;
  3681. display:flex;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. color:rgba(255, 255, 255, 0.972549019607843);
  3687. }
  3688. #u31644 .text {
  3689. position:absolute;
  3690. align-self:flex-start;
  3691. padding:0px 0px 0px 0px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u31644_text {
  3696. border-width:0px;
  3697. white-space:nowrap;
  3698. text-transform:none;
  3699. }
  3700. #u31645_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:80px;
  3706. height:80px;
  3707. }
  3708. #u31645 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:1262px;
  3712. top:195px;
  3713. width:80px;
  3714. height:80px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3717. font-style:normal;
  3718. color:#FFFFFF;
  3719. }
  3720. #u31645 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u31645_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. }
  3732. #u31646_div {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:82px;
  3738. height:104px;
  3739. background:inherit;
  3740. background-color:rgba(255, 255, 255, 0);
  3741. border:none;
  3742. border-radius:0px;
  3743. -moz-box-shadow:none;
  3744. -webkit-box-shadow:none;
  3745. box-shadow:none;
  3746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:12px;
  3750. color:rgba(255, 255, 255, 0.698039215686274);
  3751. text-align:left;
  3752. line-height:25px;
  3753. }
  3754. #u31646 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:1374px;
  3758. top:183px;
  3759. width:82px;
  3760. height:104px;
  3761. display:flex;
  3762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. font-size:12px;
  3766. color:rgba(255, 255, 255, 0.698039215686274);
  3767. text-align:left;
  3768. line-height:25px;
  3769. }
  3770. #u31646 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 2px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u31646_text {
  3778. border-width:0px;
  3779. white-space:nowrap;
  3780. text-transform:none;
  3781. }
  3782. #u31647_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:115px;
  3788. height:66px;
  3789. }
  3790. #u31647 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:1246px;
  3794. top:408px;
  3795. width:115px;
  3796. height:66px;
  3797. display:flex;
  3798. }
  3799. #u31647 .text {
  3800. position:absolute;
  3801. align-self:center;
  3802. padding:2px 2px 2px 2px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u31647_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. visibility:hidden;
  3811. }
  3812. #u31648_img {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:115px;
  3818. height:66px;
  3819. }
  3820. #u31648 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:1371px;
  3824. top:408px;
  3825. width:115px;
  3826. height:66px;
  3827. display:flex;
  3828. }
  3829. #u31648 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u31648_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u31649_div {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:240px;
  3848. height:40px;
  3849. background:inherit;
  3850. background-color:rgba(245, 154, 35, 0.2);
  3851. box-sizing:border-box;
  3852. border-width:2px;
  3853. border-style:solid;
  3854. border-color:rgba(245, 154, 35, 1);
  3855. border-left:0px;
  3856. border-top:0px;
  3857. border-right:0px;
  3858. border-radius:0px;
  3859. border-bottom-right-radius:0px;
  3860. border-bottom-left-radius:0px;
  3861. -moz-box-shadow:none;
  3862. -webkit-box-shadow:none;
  3863. box-shadow:none;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:18px;
  3868. color:#FFFFFF;
  3869. text-align:left;
  3870. }
  3871. #u31649 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:31px;
  3875. top:406px;
  3876. width:240px;
  3877. height:40px;
  3878. display:flex;
  3879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:18px;
  3883. color:#FFFFFF;
  3884. text-align:left;
  3885. }
  3886. #u31649 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 10px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u31649_text {
  3894. border-width:0px;
  3895. word-wrap:break-word;
  3896. text-transform:none;
  3897. }
  3898. #u31650_img {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:96px;
  3904. height:96px;
  3905. }
  3906. #u31650 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:45px;
  3910. top:456px;
  3911. width:96px;
  3912. height:96px;
  3913. display:flex;
  3914. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3915. font-style:normal;
  3916. color:#FFFFFF;
  3917. }
  3918. #u31650 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 2px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u31650_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. }
  3930. #u31651_div {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:70px;
  3936. height:94px;
  3937. background:inherit;
  3938. background-color:rgba(255, 255, 255, 0);
  3939. border:none;
  3940. border-radius:0px;
  3941. -moz-box-shadow:none;
  3942. -webkit-box-shadow:none;
  3943. box-shadow:none;
  3944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:12px;
  3948. color:rgba(255, 255, 255, 0.698039215686274);
  3949. text-align:left;
  3950. line-height:30px;
  3951. }
  3952. #u31651 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:161px;
  3956. top:456px;
  3957. width:70px;
  3958. height:94px;
  3959. display:flex;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. font-size:12px;
  3964. color:rgba(255, 255, 255, 0.698039215686274);
  3965. text-align:left;
  3966. line-height:30px;
  3967. }
  3968. #u31651 .text {
  3969. position:absolute;
  3970. align-self:center;
  3971. padding:2px 2px 2px 2px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u31651_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u31652_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:98px;
  3986. height:34px;
  3987. background:inherit;
  3988. background-color:rgba(255, 255, 255, 0);
  3989. border:none;
  3990. border-radius:0px;
  3991. -moz-box-shadow:none;
  3992. -webkit-box-shadow:none;
  3993. box-shadow:none;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:12px;
  3998. color:rgba(255, 255, 255, 0.698039215686274);
  3999. text-align:left;
  4000. line-height:30px;
  4001. }
  4002. #u31652 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:38px;
  4006. top:561px;
  4007. width:98px;
  4008. height:34px;
  4009. display:flex;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:12px;
  4014. color:rgba(255, 255, 255, 0.698039215686274);
  4015. text-align:left;
  4016. line-height:30px;
  4017. }
  4018. #u31652 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u31652_text {
  4026. border-width:0px;
  4027. white-space:nowrap;
  4028. text-transform:none;
  4029. }
  4030. #u31653_div {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:98px;
  4036. height:34px;
  4037. background:inherit;
  4038. background-color:rgba(255, 255, 255, 0);
  4039. border:none;
  4040. border-radius:0px;
  4041. -moz-box-shadow:none;
  4042. -webkit-box-shadow:none;
  4043. box-shadow:none;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:rgba(255, 255, 255, 0.698039215686274);
  4049. text-align:left;
  4050. line-height:30px;
  4051. }
  4052. #u31653 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:153px;
  4056. top:561px;
  4057. width:98px;
  4058. height:34px;
  4059. display:flex;
  4060. opacity:0.9;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:12px;
  4065. color:rgba(255, 255, 255, 0.698039215686274);
  4066. text-align:left;
  4067. line-height:30px;
  4068. }
  4069. #u31653 .text {
  4070. position:absolute;
  4071. align-self:center;
  4072. padding:2px 2px 2px 2px;
  4073. box-sizing:border-box;
  4074. width:100%;
  4075. }
  4076. #u31653_text {
  4077. border-width:0px;
  4078. white-space:nowrap;
  4079. text-transform:none;
  4080. }
  4081. #u31654_div {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:105px;
  4087. height:17px;
  4088. background:inherit;
  4089. background-color:rgba(255, 255, 255, 0);
  4090. border:none;
  4091. border-top:0px;
  4092. border-right:0px;
  4093. border-bottom:0px;
  4094. border-radius:0px;
  4095. border-top-left-radius:0px;
  4096. border-bottom-left-radius:0px;
  4097. -moz-box-shadow:none;
  4098. -webkit-box-shadow:none;
  4099. box-shadow:none;
  4100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:12px;
  4104. color:rgba(255, 255, 255, 0.972549019607843);
  4105. }
  4106. #u31654 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:167px;
  4110. top:268px;
  4111. width:105px;
  4112. height:17px;
  4113. display:flex;
  4114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:rgba(255, 255, 255, 0.972549019607843);
  4119. }
  4120. #u31654 .text {
  4121. position:absolute;
  4122. align-self:flex-start;
  4123. padding:0px 0px 0px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u31654_text {
  4128. border-width:0px;
  4129. white-space:nowrap;
  4130. text-transform:none;
  4131. }
  4132. #u31655_div {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:68px;
  4138. height:17px;
  4139. background:inherit;
  4140. background-color:rgba(255, 255, 255, 0);
  4141. border:none;
  4142. border-radius:0px;
  4143. -moz-box-shadow:none;
  4144. -webkit-box-shadow:none;
  4145. box-shadow:none;
  4146. font-size:10px;
  4147. color:#95F204;
  4148. }
  4149. #u31655 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:196px;
  4153. top:183px;
  4154. width:68px;
  4155. height:17px;
  4156. display:flex;
  4157. font-size:10px;
  4158. color:#95F204;
  4159. }
  4160. #u31655 .text {
  4161. position:absolute;
  4162. align-self:flex-start;
  4163. padding:0px 0px 0px 0px;
  4164. box-sizing:border-box;
  4165. width:100%;
  4166. }
  4167. #u31655_text {
  4168. border-width:0px;
  4169. white-space:nowrap;
  4170. text-transform:none;
  4171. }
  4172. #u31656_div {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:49px;
  4178. height:17px;
  4179. background:inherit;
  4180. background-color:rgba(255, 255, 255, 0);
  4181. border:none;
  4182. border-top:0px;
  4183. border-right:0px;
  4184. border-bottom:0px;
  4185. border-radius:0px;
  4186. border-top-left-radius:0px;
  4187. border-bottom-left-radius:0px;
  4188. -moz-box-shadow:none;
  4189. -webkit-box-shadow:none;
  4190. box-shadow:none;
  4191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:12px;
  4195. color:rgba(255, 255, 255, 0.972549019607843);
  4196. }
  4197. #u31656 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:128px;
  4201. top:231px;
  4202. width:49px;
  4203. height:17px;
  4204. display:flex;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:12px;
  4209. color:rgba(255, 255, 255, 0.972549019607843);
  4210. }
  4211. #u31656 .text {
  4212. position:absolute;
  4213. align-self:flex-start;
  4214. padding:0px 0px 0px 0px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u31656_text {
  4219. border-width:0px;
  4220. white-space:nowrap;
  4221. text-transform:none;
  4222. }
  4223. #u31657_div {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:101px;
  4229. height:33px;
  4230. background:inherit;
  4231. background-color:rgba(255, 255, 255, 0);
  4232. border:none;
  4233. border-top:0px;
  4234. border-right:0px;
  4235. border-bottom:0px;
  4236. border-radius:0px;
  4237. border-top-left-radius:0px;
  4238. border-bottom-left-radius:0px;
  4239. -moz-box-shadow:none;
  4240. -webkit-box-shadow:none;
  4241. box-shadow:none;
  4242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4243. font-style:normal;
  4244. color:rgba(255, 255, 255, 0.972549019607843);
  4245. }
  4246. #u31657 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:102px;
  4250. top:193px;
  4251. width:101px;
  4252. height:33px;
  4253. display:flex;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-style:normal;
  4256. color:rgba(255, 255, 255, 0.972549019607843);
  4257. }
  4258. #u31657 .text {
  4259. position:absolute;
  4260. align-self:flex-start;
  4261. padding:0px 0px 0px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u31657_text {
  4266. border-width:0px;
  4267. white-space:nowrap;
  4268. text-transform:none;
  4269. }
  4270. #u31658_div {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:240px;
  4276. height:81px;
  4277. background:inherit;
  4278. background-color:rgba(255, 255, 255, 0.2);
  4279. border:none;
  4280. border-left:0px;
  4281. border-top:0px;
  4282. border-right:0px;
  4283. border-radius:0px;
  4284. border-bottom-right-radius:0px;
  4285. border-bottom-left-radius:0px;
  4286. -moz-box-shadow:none;
  4287. -webkit-box-shadow:none;
  4288. box-shadow:none;
  4289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:18px;
  4293. color:#FFFFFF;
  4294. text-align:left;
  4295. }
  4296. #u31658 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:31px;
  4300. top:305px;
  4301. width:240px;
  4302. height:81px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:18px;
  4308. color:#FFFFFF;
  4309. text-align:left;
  4310. }
  4311. #u31658 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 10px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u31658_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u31659_div {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:83px;
  4330. height:60px;
  4331. background:inherit;
  4332. background-color:rgba(255, 255, 255, 0);
  4333. border:none;
  4334. border-top:0px;
  4335. border-right:0px;
  4336. border-bottom:0px;
  4337. border-radius:0px;
  4338. border-top-left-radius:0px;
  4339. border-bottom-left-radius:0px;
  4340. -moz-box-shadow:none;
  4341. -webkit-box-shadow:none;
  4342. box-shadow:none;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:12px;
  4347. color:rgba(255, 255, 255, 0.972549019607843);
  4348. line-height:30px;
  4349. }
  4350. #u31659 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:157px;
  4354. top:315px;
  4355. width:83px;
  4356. height:60px;
  4357. display:flex;
  4358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. color:rgba(255, 255, 255, 0.972549019607843);
  4363. line-height:30px;
  4364. }
  4365. #u31659 .text {
  4366. position:absolute;
  4367. align-self:flex-start;
  4368. padding:0px 0px 0px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u31659_text {
  4373. border-width:0px;
  4374. white-space:nowrap;
  4375. text-transform:none;
  4376. }
  4377. #u31660_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:80px;
  4383. height:80px;
  4384. }
  4385. #u31660 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:31px;
  4389. top:305px;
  4390. width:80px;
  4391. height:80px;
  4392. display:flex;
  4393. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4394. font-style:normal;
  4395. color:#FFFFFF;
  4396. }
  4397. #u31660 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 2px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u31660_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. }
  4409. #u31661_div {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:30px;
  4415. height:17px;
  4416. background:inherit;
  4417. background-color:rgba(255, 255, 255, 0);
  4418. box-sizing:border-box;
  4419. border-width:1px;
  4420. border-style:solid;
  4421. border-color:rgba(245, 154, 35, 1);
  4422. border-radius:4px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. color:#F59A23;
  4431. text-align:center;
  4432. }
  4433. #u31661 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:94px;
  4437. top:315px;
  4438. width:30px;
  4439. height:17px;
  4440. display:flex;
  4441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4442. font-weight:400;
  4443. font-style:normal;
  4444. font-size:12px;
  4445. color:#F59A23;
  4446. text-align:center;
  4447. }
  4448. #u31661 .text {
  4449. position:absolute;
  4450. align-self:flex-start;
  4451. padding:0px 0px 0px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u31661_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. }
  4460. #u31662 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:2011px;
  4464. top:32px;
  4465. width:558px;
  4466. height:30px;
  4467. }
  4468. #u31662_state0 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:558px;
  4474. height:30px;
  4475. -ms-overflow-x:hidden;
  4476. overflow-x:hidden;
  4477. -ms-overflow-y:hidden;
  4478. overflow-y:hidden;
  4479. background-image:none;
  4480. border:none;
  4481. border-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. }
  4486. #u31662_state0_content {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:1px;
  4492. height:1px;
  4493. }
  4494. #u31663_div {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:660px;
  4500. height:30px;
  4501. background:inherit;
  4502. background-color:rgba(255, 255, 255, 0);
  4503. border:none;
  4504. border-left:0px;
  4505. border-top:0px;
  4506. border-right:0px;
  4507. border-radius:0px;
  4508. border-bottom-right-radius:0px;
  4509. border-bottom-left-radius:0px;
  4510. -moz-box-shadow:none;
  4511. -webkit-box-shadow:none;
  4512. box-shadow:none;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-style:normal;
  4515. font-size:12px;
  4516. line-height:30px;
  4517. }
  4518. #u31663 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:660px;
  4524. height:30px;
  4525. display:flex;
  4526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. line-height:30px;
  4530. }
  4531. #u31663 .text {
  4532. position:absolute;
  4533. align-self:flex-start;
  4534. padding:0px 0px 0px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u31663_text {
  4539. border-width:0px;
  4540. white-space:nowrap;
  4541. text-transform:none;
  4542. }
  4543. #u31664 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:0px;
  4549. height:0px;
  4550. }
  4551. #u31665_div {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:100px;
  4557. height:40px;
  4558. background:inherit;
  4559. background-color:rgba(245, 154, 35, 1);
  4560. box-sizing:border-box;
  4561. border-width:1px;
  4562. border-style:solid;
  4563. border-color:rgba(245, 154, 35, 1);
  4564. border-radius:4px;
  4565. -moz-box-shadow:none;
  4566. -webkit-box-shadow:none;
  4567. box-shadow:none;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. color:#FFFFFF;
  4573. }
  4574. #u31665 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:2843px;
  4578. top:87px;
  4579. width:100px;
  4580. height:40px;
  4581. display:flex;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. color:#FFFFFF;
  4587. }
  4588. #u31665 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 20px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u31665_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. }
  4600. #u31666_img {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:16px;
  4606. height:15px;
  4607. }
  4608. #u31666 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:2852px;
  4612. top:99px;
  4613. width:16px;
  4614. height:15px;
  4615. display:flex;
  4616. }
  4617. #u31666 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 2px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u31666_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u31667 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:0px;
  4636. height:0px;
  4637. }
  4638. #u31668_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:80px;
  4644. height:40px;
  4645. background:inherit;
  4646. background-color:rgba(245, 154, 35, 0.0980392156862745);
  4647. box-sizing:border-box;
  4648. border-width:1px;
  4649. border-style:solid;
  4650. border-color:rgba(245, 154, 35, 1);
  4651. border-radius:4px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:14px;
  4659. color:#F59A23;
  4660. }
  4661. #u31668 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:2953px;
  4665. top:87px;
  4666. width:80px;
  4667. height:40px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:14px;
  4673. color:#F59A23;
  4674. }
  4675. #u31668 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 10px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u31668_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. }
  4687. #u31669_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:7px;
  4693. height:4px;
  4694. }
  4695. #u31669 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:3020px;
  4699. top:105px;
  4700. width:7px;
  4701. height:4px;
  4702. display:flex;
  4703. }
  4704. #u31669 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 2px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u31669_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u31670_div {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:80px;
  4723. height:30px;
  4724. background:inherit;
  4725. background-color:rgba(245, 154, 35, 0);
  4726. box-sizing:border-box;
  4727. border-width:1px;
  4728. border-style:solid;
  4729. border-color:rgba(245, 154, 35, 1);
  4730. border-radius:4px;
  4731. border-top-right-radius:0px;
  4732. border-bottom-right-radius:0px;
  4733. -moz-box-shadow:none;
  4734. -webkit-box-shadow:none;
  4735. box-shadow:none;
  4736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. font-size:15px;
  4740. color:#FFFFFF;
  4741. }
  4742. #u31670 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:2228px;
  4746. top:82px;
  4747. width:80px;
  4748. height:30px;
  4749. display:flex;
  4750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:15px;
  4754. color:#FFFFFF;
  4755. }
  4756. #u31670 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:2px 2px 2px 2px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u31670_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. }
  4768. #u31671_div {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:80px;
  4774. height:30px;
  4775. background:inherit;
  4776. background-color:rgba(245, 154, 35, 1);
  4777. box-sizing:border-box;
  4778. border-width:1px;
  4779. border-style:solid;
  4780. border-color:rgba(245, 154, 35, 1);
  4781. border-radius:0px;
  4782. border-top-right-radius:0px;
  4783. border-bottom-right-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4788. font-weight:400;
  4789. font-style:normal;
  4790. font-size:15px;
  4791. color:#FFFFFF;
  4792. }
  4793. #u31671 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:2308px;
  4797. top:82px;
  4798. width:80px;
  4799. height:30px;
  4800. display:flex;
  4801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:15px;
  4805. color:#FFFFFF;
  4806. }
  4807. #u31671 .text {
  4808. position:absolute;
  4809. align-self:center;
  4810. padding:2px 2px 2px 2px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u31671_text {
  4815. border-width:0px;
  4816. word-wrap:break-word;
  4817. text-transform:none;
  4818. }
  4819. #u31672_img {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:-5px;
  4823. top:-5px;
  4824. width:30px;
  4825. height:40px;
  4826. }
  4827. #u31672 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:2348px;
  4831. top:620px;
  4832. width:20px;
  4833. height:30px;
  4834. display:flex;
  4835. }
  4836. #u31672 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 2px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u31672_text {
  4844. border-width:0px;
  4845. word-wrap:break-word;
  4846. text-transform:none;
  4847. visibility:hidden;
  4848. }
  4849. #u31673 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:0px;
  4855. height:0px;
  4856. }
  4857. #u31674_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:480px;
  4863. height:320px;
  4864. background:inherit;
  4865. background-color:rgba(95, 72, 47, 1);
  4866. box-sizing:border-box;
  4867. border-width:1px;
  4868. border-style:solid;
  4869. border-color:rgba(245, 154, 35, 1);
  4870. border-radius:4px;
  4871. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4872. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4873. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4874. font-family:'Microsoft YaHei', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. color:#FFFFFF;
  4878. }
  4879. #u31674 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:257px;
  4883. top:258px;
  4884. width:480px;
  4885. height:320px;
  4886. display:flex;
  4887. font-family:'Microsoft YaHei', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. color:#FFFFFF;
  4891. }
  4892. #u31674 .text {
  4893. position:absolute;
  4894. align-self:center;
  4895. padding:2px 2px 2px 2px;
  4896. box-sizing:border-box;
  4897. width:100%;
  4898. }
  4899. #u31674_text {
  4900. border-width:0px;
  4901. word-wrap:break-word;
  4902. text-transform:none;
  4903. visibility:hidden;
  4904. }
  4905. #u31675_div {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:73px;
  4911. height:21px;
  4912. background:inherit;
  4913. background-color:rgba(255, 255, 255, 0);
  4914. border:none;
  4915. border-radius:0px;
  4916. -moz-box-shadow:none;
  4917. -webkit-box-shadow:none;
  4918. box-shadow:none;
  4919. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4920. font-weight:650;
  4921. font-style:normal;
  4922. font-size:18px;
  4923. color:#FFFFFF;
  4924. line-height:22px;
  4925. }
  4926. #u31675 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:284px;
  4930. top:279px;
  4931. width:73px;
  4932. height:21px;
  4933. display:flex;
  4934. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4935. font-weight:650;
  4936. font-style:normal;
  4937. font-size:18px;
  4938. color:#FFFFFF;
  4939. line-height:22px;
  4940. }
  4941. #u31675 .text {
  4942. position:absolute;
  4943. align-self:flex-start;
  4944. padding:0px 0px 0px 0px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u31675_text {
  4949. border-width:0px;
  4950. white-space:nowrap;
  4951. text-transform:none;
  4952. }
  4953. #u31676 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:0px;
  4959. height:0px;
  4960. }
  4961. #u31677_div {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:80px;
  4967. height:30px;
  4968. background:inherit;
  4969. background-color:rgba(245, 154, 35, 1);
  4970. border:none;
  4971. border-radius:4px;
  4972. -moz-box-shadow:none;
  4973. -webkit-box-shadow:none;
  4974. box-shadow:none;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:14px;
  4979. color:#FFFFFF;
  4980. }
  4981. #u31677 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:627px;
  4985. top:528px;
  4986. width:80px;
  4987. height:30px;
  4988. display:flex;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:14px;
  4993. color:#FFFFFF;
  4994. }
  4995. #u31677 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 2px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u31677_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. }
  5007. #u31678_div {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:80px;
  5013. height:30px;
  5014. background:inherit;
  5015. background-color:rgba(255, 255, 255, 0.0588235294117647);
  5016. box-sizing:border-box;
  5017. border-width:1px;
  5018. border-style:solid;
  5019. border-color:rgba(245, 154, 35, 1);
  5020. border-radius:4px;
  5021. -moz-box-shadow:none;
  5022. -webkit-box-shadow:none;
  5023. box-shadow:none;
  5024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:14px;
  5028. color:#F59A23;
  5029. }
  5030. #u31678 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:528px;
  5034. top:528px;
  5035. width:80px;
  5036. height:30px;
  5037. display:flex;
  5038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:14px;
  5042. color:#F59A23;
  5043. }
  5044. #u31678 .text {
  5045. position:absolute;
  5046. align-self:center;
  5047. padding:2px 2px 2px 2px;
  5048. box-sizing:border-box;
  5049. width:100%;
  5050. }
  5051. #u31678_text {
  5052. border-width:0px;
  5053. word-wrap:break-word;
  5054. text-transform:none;
  5055. }
  5056. #u31679 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:0px;
  5062. height:0px;
  5063. }
  5064. #u31680_img {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:10px;
  5070. height:10px;
  5071. }
  5072. #u31680 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:676px;
  5076. top:273px;
  5077. width:10px;
  5078. height:10px;
  5079. display:flex;
  5080. }
  5081. #u31680 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 2px 2px 2px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u31680_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. visibility:hidden;
  5093. }
  5094. #u31681_div {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:33px;
  5100. height:40px;
  5101. background:inherit;
  5102. background-color:rgba(255, 255, 255, 0);
  5103. border:none;
  5104. border-left:0px;
  5105. border-top:0px;
  5106. border-right:0px;
  5107. border-radius:0px;
  5108. border-bottom-right-radius:0px;
  5109. border-bottom-left-radius:0px;
  5110. -moz-box-shadow:none;
  5111. -webkit-box-shadow:none;
  5112. box-shadow:none;
  5113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:14px;
  5117. color:#FFFFFF;
  5118. }
  5119. #u31681 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:694px;
  5123. top:258px;
  5124. width:33px;
  5125. height:40px;
  5126. display:flex;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:14px;
  5131. color:#FFFFFF;
  5132. }
  5133. #u31681 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 2px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u31681_text {
  5141. border-width:0px;
  5142. white-space:nowrap;
  5143. text-transform:none;
  5144. }
  5145. #u31682_div {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:95px;
  5151. height:40px;
  5152. background:inherit;
  5153. background-color:rgba(255, 255, 255, 0);
  5154. border:none;
  5155. border-top:0px;
  5156. border-right:0px;
  5157. border-bottom:0px;
  5158. border-radius:0px;
  5159. border-top-left-radius:0px;
  5160. border-bottom-left-radius:0px;
  5161. -moz-box-shadow:none;
  5162. -webkit-box-shadow:none;
  5163. box-shadow:none;
  5164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:14px;
  5168. color:#FFFFFF;
  5169. text-align:right;
  5170. }
  5171. #u31682 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:278px;
  5175. top:339px;
  5176. width:95px;
  5177. height:40px;
  5178. display:flex;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:14px;
  5183. color:#FFFFFF;
  5184. text-align:right;
  5185. }
  5186. #u31682 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:5px 10px 5px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u31682_text {
  5194. border-width:0px;
  5195. white-space:nowrap;
  5196. text-transform:none;
  5197. }
  5198. #u31683_div {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:81px;
  5204. height:40px;
  5205. background:inherit;
  5206. background-color:rgba(255, 255, 255, 0);
  5207. border:none;
  5208. border-top:0px;
  5209. border-right:0px;
  5210. border-bottom:0px;
  5211. border-radius:0px;
  5212. border-top-left-radius:0px;
  5213. border-bottom-left-radius:0px;
  5214. -moz-box-shadow:none;
  5215. -webkit-box-shadow:none;
  5216. box-shadow:none;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. color:#FFFFFF;
  5222. text-align:right;
  5223. }
  5224. #u31683 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:292px;
  5228. top:398px;
  5229. width:81px;
  5230. height:40px;
  5231. display:flex;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:14px;
  5236. color:#FFFFFF;
  5237. text-align:right;
  5238. }
  5239. #u31683 .text {
  5240. position:absolute;
  5241. align-self:center;
  5242. padding:5px 10px 5px 0px;
  5243. box-sizing:border-box;
  5244. width:100%;
  5245. }
  5246. #u31683_text {
  5247. border-width:0px;
  5248. white-space:nowrap;
  5249. text-transform:none;
  5250. }
  5251. #u31684_img {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:115px;
  5257. height:40px;
  5258. }
  5259. #u31684 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:377px;
  5263. top:339px;
  5264. width:115px;
  5265. height:40px;
  5266. display:flex;
  5267. font-size:18px;
  5268. color:#FFFFFF;
  5269. }
  5270. #u31684 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 2px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u31684_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. }
  5282. #u31685_div {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:0px;
  5286. top:0px;
  5287. width:81px;
  5288. height:40px;
  5289. background:inherit;
  5290. background-color:rgba(255, 255, 255, 0);
  5291. border:none;
  5292. border-top:0px;
  5293. border-right:0px;
  5294. border-bottom:0px;
  5295. border-radius:0px;
  5296. border-top-left-radius:0px;
  5297. border-bottom-left-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. color:#FFFFFF;
  5306. text-align:right;
  5307. }
  5308. #u31685 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:292px;
  5312. top:458px;
  5313. width:81px;
  5314. height:40px;
  5315. display:flex;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#FFFFFF;
  5321. text-align:right;
  5322. }
  5323. #u31685 .text {
  5324. position:absolute;
  5325. align-self:center;
  5326. padding:5px 10px 5px 0px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u31685_text {
  5331. border-width:0px;
  5332. white-space:nowrap;
  5333. text-transform:none;
  5334. }
  5335. #u31686_div {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:67px;
  5341. height:40px;
  5342. background:inherit;
  5343. background-color:rgba(255, 255, 255, 0);
  5344. border:none;
  5345. border-top:0px;
  5346. border-right:0px;
  5347. border-bottom:0px;
  5348. border-radius:0px;
  5349. border-top-left-radius:0px;
  5350. border-bottom-left-radius:0px;
  5351. -moz-box-shadow:none;
  5352. -webkit-box-shadow:none;
  5353. box-shadow:none;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:14px;
  5358. color:#FFFFFF;
  5359. }
  5360. #u31686 {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:502px;
  5364. top:339px;
  5365. width:67px;
  5366. height:40px;
  5367. display:flex;
  5368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:14px;
  5372. color:#FFFFFF;
  5373. }
  5374. #u31686 .text {
  5375. position:absolute;
  5376. align-self:center;
  5377. padding:5px 10px 5px 0px;
  5378. box-sizing:border-box;
  5379. width:100%;
  5380. }
  5381. #u31686_text {
  5382. border-width:0px;
  5383. white-space:nowrap;
  5384. text-transform:none;
  5385. }
  5386. #u31687_div {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:67px;
  5392. height:40px;
  5393. background:inherit;
  5394. background-color:rgba(255, 255, 255, 0);
  5395. border:none;
  5396. border-top:0px;
  5397. border-right:0px;
  5398. border-bottom:0px;
  5399. border-radius:0px;
  5400. border-top-left-radius:0px;
  5401. border-bottom-left-radius:0px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:14px;
  5409. color:#FFFFFF;
  5410. }
  5411. #u31687 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:502px;
  5415. top:398px;
  5416. width:67px;
  5417. height:40px;
  5418. display:flex;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:14px;
  5423. color:#FFFFFF;
  5424. }
  5425. #u31687 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:5px 10px 5px 0px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u31687_text {
  5433. border-width:0px;
  5434. white-space:nowrap;
  5435. text-transform:none;
  5436. }
  5437. #u31688 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:0px;
  5443. height:0px;
  5444. }
  5445. #u31689_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:115px;
  5451. height:40px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 0);
  5454. box-sizing:border-box;
  5455. border-width:1px;
  5456. border-style:solid;
  5457. border-color:rgba(245, 154, 35, 1);
  5458. border-radius:4px;
  5459. -moz-box-shadow:none;
  5460. -webkit-box-shadow:none;
  5461. box-shadow:none;
  5462. font-family:'Microsoft YaHei', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. color:#CCCCCC;
  5467. text-align:left;
  5468. }
  5469. #u31689 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:567px;
  5473. top:398px;
  5474. width:115px;
  5475. height:40px;
  5476. display:flex;
  5477. font-family:'Microsoft YaHei', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:14px;
  5481. color:#CCCCCC;
  5482. text-align:left;
  5483. }
  5484. #u31689 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:2px 8px 2px 8px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u31689_text {
  5492. border-width:0px;
  5493. word-wrap:break-word;
  5494. text-transform:none;
  5495. visibility:hidden;
  5496. }
  5497. #u31690_input {
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:111px;
  5502. height:38px;
  5503. padding:2px 2px 2px 2px;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:14px;
  5508. letter-spacing:normal;
  5509. color:#000000;
  5510. vertical-align:none;
  5511. text-align:left;
  5512. text-transform:none;
  5513. background-color:transparent;
  5514. border-color:transparent;
  5515. }
  5516. #u31690_input.disabled {
  5517. position:absolute;
  5518. left:0px;
  5519. top:0px;
  5520. width:111px;
  5521. height:38px;
  5522. padding:2px 2px 2px 2px;
  5523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5524. font-weight:400;
  5525. font-style:normal;
  5526. font-size:14px;
  5527. letter-spacing:normal;
  5528. color:#000000;
  5529. vertical-align:none;
  5530. text-align:left;
  5531. text-transform:none;
  5532. background-color:transparent;
  5533. border-color:transparent;
  5534. }
  5535. #u31690_div {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:111px;
  5541. height:38px;
  5542. background:inherit;
  5543. background-color:rgba(255, 255, 255, 0);
  5544. border:none;
  5545. border-radius:0px;
  5546. -moz-box-shadow:none;
  5547. -webkit-box-shadow:none;
  5548. box-shadow:none;
  5549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:14px;
  5553. }
  5554. #u31690 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:568px;
  5558. top:399px;
  5559. width:111px;
  5560. height:38px;
  5561. display:flex;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:14px;
  5566. }
  5567. #u31690 .text {
  5568. position:absolute;
  5569. align-self:center;
  5570. padding:2px 2px 2px 2px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u31690_div.disabled {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:111px;
  5580. height:38px;
  5581. background:inherit;
  5582. background-color:rgba(240, 240, 240, 1);
  5583. border:none;
  5584. border-radius:0px;
  5585. -moz-box-shadow:none;
  5586. -webkit-box-shadow:none;
  5587. box-shadow:none;
  5588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:14px;
  5592. }
  5593. #u31690.disabled {
  5594. }
  5595. #u31691_img {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:115px;
  5601. height:40px;
  5602. }
  5603. #u31691 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:567px;
  5607. top:339px;
  5608. width:115px;
  5609. height:40px;
  5610. display:flex;
  5611. font-size:14px;
  5612. }
  5613. #u31691 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 2px 2px 2px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u31691_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u31692_div {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:67px;
  5632. height:40px;
  5633. background:inherit;
  5634. background-color:rgba(255, 255, 255, 0);
  5635. border:none;
  5636. border-top:0px;
  5637. border-right:0px;
  5638. border-bottom:0px;
  5639. border-radius:0px;
  5640. border-top-left-radius:0px;
  5641. border-bottom-left-radius:0px;
  5642. -moz-box-shadow:none;
  5643. -webkit-box-shadow:none;
  5644. box-shadow:none;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:14px;
  5649. color:#FFFFFF;
  5650. }
  5651. #u31692 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:502px;
  5655. top:458px;
  5656. width:67px;
  5657. height:40px;
  5658. display:flex;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:14px;
  5663. color:#FFFFFF;
  5664. }
  5665. #u31692 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:5px 10px 5px 0px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u31692_text {
  5673. border-width:0px;
  5674. white-space:nowrap;
  5675. text-transform:none;
  5676. }
  5677. #u31693 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:0px;
  5683. height:0px;
  5684. }
  5685. #u31694_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:115px;
  5691. height:40px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 0);
  5694. box-sizing:border-box;
  5695. border-width:1px;
  5696. border-style:solid;
  5697. border-color:rgba(245, 154, 35, 1);
  5698. border-radius:4px;
  5699. -moz-box-shadow:none;
  5700. -webkit-box-shadow:none;
  5701. box-shadow:none;
  5702. font-family:'Microsoft YaHei', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:14px;
  5706. color:#CCCCCC;
  5707. text-align:left;
  5708. }
  5709. #u31694 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:567px;
  5713. top:458px;
  5714. width:115px;
  5715. height:40px;
  5716. display:flex;
  5717. font-family:'Microsoft YaHei', sans-serif;
  5718. font-weight:400;
  5719. font-style:normal;
  5720. font-size:14px;
  5721. color:#CCCCCC;
  5722. text-align:left;
  5723. }
  5724. #u31694 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:2px 8px 2px 8px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u31694_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. visibility:hidden;
  5736. }
  5737. #u31695_input {
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:111px;
  5742. height:38px;
  5743. padding:2px 2px 2px 2px;
  5744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:14px;
  5748. letter-spacing:normal;
  5749. color:#000000;
  5750. vertical-align:none;
  5751. text-align:left;
  5752. text-transform:none;
  5753. background-color:transparent;
  5754. border-color:transparent;
  5755. }
  5756. #u31695_input.disabled {
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:111px;
  5761. height:38px;
  5762. padding:2px 2px 2px 2px;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:14px;
  5767. letter-spacing:normal;
  5768. color:#000000;
  5769. vertical-align:none;
  5770. text-align:left;
  5771. text-transform:none;
  5772. background-color:transparent;
  5773. border-color:transparent;
  5774. }
  5775. #u31695_div {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:111px;
  5781. height:38px;
  5782. background:inherit;
  5783. background-color:rgba(255, 255, 255, 0);
  5784. border:none;
  5785. border-radius:0px;
  5786. -moz-box-shadow:none;
  5787. -webkit-box-shadow:none;
  5788. box-shadow:none;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:14px;
  5793. }
  5794. #u31695 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:568px;
  5798. top:459px;
  5799. width:111px;
  5800. height:38px;
  5801. display:flex;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:14px;
  5806. }
  5807. #u31695 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:2px 2px 2px 2px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u31695_div.disabled {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:111px;
  5820. height:38px;
  5821. background:inherit;
  5822. background-color:rgba(240, 240, 240, 1);
  5823. border:none;
  5824. border-radius:0px;
  5825. -moz-box-shadow:none;
  5826. -webkit-box-shadow:none;
  5827. box-shadow:none;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:14px;
  5832. }
  5833. #u31695.disabled {
  5834. }
  5835. #u31696_img {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:115px;
  5841. height:40px;
  5842. }
  5843. #u31696 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:377px;
  5847. top:398px;
  5848. width:115px;
  5849. height:40px;
  5850. display:flex;
  5851. font-size:18px;
  5852. color:#FFFFFF;
  5853. }
  5854. #u31696 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u31696_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. }
  5866. #u31697_img {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:115px;
  5872. height:40px;
  5873. }
  5874. #u31697 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:377px;
  5878. top:458px;
  5879. width:115px;
  5880. height:40px;
  5881. display:flex;
  5882. font-size:18px;
  5883. color:#FFFFFF;
  5884. }
  5885. #u31697 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u31697_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. }
  5897. #u31698 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:0px;
  5903. height:0px;
  5904. }
  5905. #u31699_div {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:200px;
  5911. height:30px;
  5912. background:inherit;
  5913. background-color:rgba(245, 154, 35, 0);
  5914. border:none;
  5915. border-left:0px;
  5916. border-top:0px;
  5917. border-right:0px;
  5918. border-radius:0px;
  5919. border-bottom-right-radius:0px;
  5920. border-bottom-left-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:12px;
  5928. color:#FFFFFF;
  5929. text-align:left;
  5930. }
  5931. #u31699 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:1583px;
  5935. top:272px;
  5936. width:200px;
  5937. height:30px;
  5938. display:flex;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:12px;
  5943. color:#FFFFFF;
  5944. text-align:left;
  5945. }
  5946. #u31699 .text {
  5947. position:absolute;
  5948. align-self:center;
  5949. padding:2px 2px 2px 30px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u31699_text {
  5954. border-width:0px;
  5955. word-wrap:break-word;
  5956. text-transform:none;
  5957. }
  5958. #u31700_div {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:200px;
  5964. height:30px;
  5965. background:inherit;
  5966. background-color:rgba(245, 154, 35, 0);
  5967. border:none;
  5968. border-left:0px;
  5969. border-top:0px;
  5970. border-right:0px;
  5971. border-radius:0px;
  5972. border-bottom-right-radius:0px;
  5973. border-bottom-left-radius:0px;
  5974. -moz-box-shadow:none;
  5975. -webkit-box-shadow:none;
  5976. box-shadow:none;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:12px;
  5981. color:#FFFFFF;
  5982. text-align:left;
  5983. }
  5984. #u31700 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:1583px;
  5988. top:302px;
  5989. width:200px;
  5990. height:30px;
  5991. display:flex;
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:12px;
  5996. color:#FFFFFF;
  5997. text-align:left;
  5998. }
  5999. #u31700 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 30px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u31700_text {
  6007. border-width:0px;
  6008. word-wrap:break-word;
  6009. text-transform:none;
  6010. }
  6011. #u31701_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:200px;
  6017. height:30px;
  6018. background:inherit;
  6019. background-color:rgba(245, 154, 35, 0);
  6020. border:none;
  6021. border-left:0px;
  6022. border-top:0px;
  6023. border-right:0px;
  6024. border-radius:0px;
  6025. border-bottom-right-radius:0px;
  6026. border-bottom-left-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:12px;
  6034. color:#FFFFFF;
  6035. text-align:left;
  6036. }
  6037. #u31701 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:1583px;
  6041. top:332px;
  6042. width:200px;
  6043. height:30px;
  6044. display:flex;
  6045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. font-size:12px;
  6049. color:#FFFFFF;
  6050. text-align:left;
  6051. }
  6052. #u31701 .text {
  6053. position:absolute;
  6054. align-self:center;
  6055. padding:2px 2px 2px 30px;
  6056. box-sizing:border-box;
  6057. width:100%;
  6058. }
  6059. #u31701_text {
  6060. border-width:0px;
  6061. word-wrap:break-word;
  6062. text-transform:none;
  6063. }
  6064. #u31702_div {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:200px;
  6070. height:30px;
  6071. background:inherit;
  6072. background-color:rgba(245, 154, 35, 0.0980392156862745);
  6073. border:none;
  6074. border-left:0px;
  6075. border-top:0px;
  6076. border-right:0px;
  6077. border-radius:0px;
  6078. border-bottom-right-radius:0px;
  6079. border-bottom-left-radius:0px;
  6080. -moz-box-shadow:none;
  6081. -webkit-box-shadow:none;
  6082. box-shadow:none;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:12px;
  6087. color:#F59A23;
  6088. text-align:left;
  6089. }
  6090. #u31702 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:1583px;
  6094. top:362px;
  6095. width:200px;
  6096. height:30px;
  6097. display:flex;
  6098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. font-size:12px;
  6102. color:#F59A23;
  6103. text-align:left;
  6104. }
  6105. #u31702 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 30px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u31702_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. }
  6117. #u31703_div {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:200px;
  6123. height:30px;
  6124. background:inherit;
  6125. background-color:rgba(245, 154, 35, 0);
  6126. border:none;
  6127. border-left:0px;
  6128. border-top:0px;
  6129. border-right:0px;
  6130. border-radius:0px;
  6131. border-bottom-right-radius:0px;
  6132. border-bottom-left-radius:0px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:12px;
  6140. color:#FFFFFF;
  6141. text-align:left;
  6142. }
  6143. #u31703 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:1583px;
  6147. top:392px;
  6148. width:200px;
  6149. height:30px;
  6150. display:flex;
  6151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:12px;
  6155. color:#FFFFFF;
  6156. text-align:left;
  6157. }
  6158. #u31703 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 30px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u31703_text {
  6166. border-width:0px;
  6167. word-wrap:break-word;
  6168. text-transform:none;
  6169. }
  6170. #u31704_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:200px;
  6176. height:30px;
  6177. background:inherit;
  6178. background-color:rgba(245, 154, 35, 0);
  6179. border:none;
  6180. border-left:0px;
  6181. border-top:0px;
  6182. border-right:0px;
  6183. border-radius:0px;
  6184. border-bottom-right-radius:0px;
  6185. border-bottom-left-radius:0px;
  6186. -moz-box-shadow:none;
  6187. -webkit-box-shadow:none;
  6188. box-shadow:none;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:12px;
  6193. color:#FFFFFF;
  6194. text-align:left;
  6195. }
  6196. #u31704 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:1583px;
  6200. top:422px;
  6201. width:200px;
  6202. height:30px;
  6203. display:flex;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:12px;
  6208. color:#FFFFFF;
  6209. text-align:left;
  6210. }
  6211. #u31704 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 30px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u31704_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. }
  6223. #u31705_div {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:200px;
  6229. height:30px;
  6230. background:inherit;
  6231. background-color:rgba(245, 154, 35, 0);
  6232. border:none;
  6233. border-left:0px;
  6234. border-top:0px;
  6235. border-right:0px;
  6236. border-radius:0px;
  6237. border-bottom-right-radius:0px;
  6238. border-bottom-left-radius:0px;
  6239. -moz-box-shadow:none;
  6240. -webkit-box-shadow:none;
  6241. box-shadow:none;
  6242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:12px;
  6246. color:#FFFFFF;
  6247. text-align:left;
  6248. }
  6249. #u31705 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:1583px;
  6253. top:452px;
  6254. width:200px;
  6255. height:30px;
  6256. display:flex;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:12px;
  6261. color:#FFFFFF;
  6262. text-align:left;
  6263. }
  6264. #u31705 .text {
  6265. position:absolute;
  6266. align-self:center;
  6267. padding:2px 2px 2px 30px;
  6268. box-sizing:border-box;
  6269. width:100%;
  6270. }
  6271. #u31705_text {
  6272. border-width:0px;
  6273. word-wrap:break-word;
  6274. text-transform:none;
  6275. }
  6276. #u31706_div {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:200px;
  6282. height:30px;
  6283. background:inherit;
  6284. background-color:rgba(245, 154, 35, 0);
  6285. border:none;
  6286. border-left:0px;
  6287. border-top:0px;
  6288. border-right:0px;
  6289. border-radius:0px;
  6290. border-bottom-right-radius:0px;
  6291. border-bottom-left-radius:0px;
  6292. -moz-box-shadow:none;
  6293. -webkit-box-shadow:none;
  6294. box-shadow:none;
  6295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:12px;
  6299. color:#FFFFFF;
  6300. text-align:left;
  6301. }
  6302. #u31706 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:1583px;
  6306. top:482px;
  6307. width:200px;
  6308. height:30px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:12px;
  6314. color:#FFFFFF;
  6315. text-align:left;
  6316. }
  6317. #u31706 .text {
  6318. position:absolute;
  6319. align-self:center;
  6320. padding:2px 2px 2px 30px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u31706_text {
  6325. border-width:0px;
  6326. word-wrap:break-word;
  6327. text-transform:none;
  6328. }
  6329. #u31707_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:200px;
  6335. height:30px;
  6336. background:inherit;
  6337. background-color:rgba(245, 154, 35, 0);
  6338. border:none;
  6339. border-left:0px;
  6340. border-top:0px;
  6341. border-right:0px;
  6342. border-radius:0px;
  6343. border-bottom-right-radius:0px;
  6344. border-bottom-left-radius:0px;
  6345. -moz-box-shadow:none;
  6346. -webkit-box-shadow:none;
  6347. box-shadow:none;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:12px;
  6352. color:#FFFFFF;
  6353. text-align:left;
  6354. }
  6355. #u31707 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:1583px;
  6359. top:512px;
  6360. width:200px;
  6361. height:30px;
  6362. display:flex;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:12px;
  6367. color:#FFFFFF;
  6368. text-align:left;
  6369. }
  6370. #u31707 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:2px 2px 2px 30px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u31707_text {
  6378. border-width:0px;
  6379. word-wrap:break-word;
  6380. text-transform:none;
  6381. }
  6382. #u31708_div {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:0px;
  6387. width:200px;
  6388. height:30px;
  6389. background:inherit;
  6390. background-color:rgba(245, 154, 35, 0);
  6391. border:none;
  6392. border-left:0px;
  6393. border-top:0px;
  6394. border-right:0px;
  6395. border-radius:0px;
  6396. border-bottom-right-radius:0px;
  6397. border-bottom-left-radius:0px;
  6398. -moz-box-shadow:none;
  6399. -webkit-box-shadow:none;
  6400. box-shadow:none;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:12px;
  6405. color:#FFFFFF;
  6406. text-align:left;
  6407. }
  6408. #u31708 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:1583px;
  6412. top:542px;
  6413. width:200px;
  6414. height:30px;
  6415. display:flex;
  6416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:12px;
  6420. color:#FFFFFF;
  6421. text-align:left;
  6422. }
  6423. #u31708 .text {
  6424. position:absolute;
  6425. align-self:center;
  6426. padding:2px 2px 2px 30px;
  6427. box-sizing:border-box;
  6428. width:100%;
  6429. }
  6430. #u31708_text {
  6431. border-width:0px;
  6432. word-wrap:break-word;
  6433. text-transform:none;
  6434. }
  6435. #u31709_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:200px;
  6441. height:30px;
  6442. background:inherit;
  6443. background-color:rgba(245, 154, 35, 0);
  6444. border:none;
  6445. border-left:0px;
  6446. border-top:0px;
  6447. border-right:0px;
  6448. border-radius:0px;
  6449. border-bottom-right-radius:0px;
  6450. border-bottom-left-radius:0px;
  6451. -moz-box-shadow:none;
  6452. -webkit-box-shadow:none;
  6453. box-shadow:none;
  6454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6455. font-weight:400;
  6456. font-style:normal;
  6457. font-size:12px;
  6458. color:#FFFFFF;
  6459. text-align:left;
  6460. }
  6461. #u31709 {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:1583px;
  6465. top:572px;
  6466. width:200px;
  6467. height:30px;
  6468. display:flex;
  6469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6470. font-weight:400;
  6471. font-style:normal;
  6472. font-size:12px;
  6473. color:#FFFFFF;
  6474. text-align:left;
  6475. }
  6476. #u31709 .text {
  6477. position:absolute;
  6478. align-self:center;
  6479. padding:2px 2px 2px 30px;
  6480. box-sizing:border-box;
  6481. width:100%;
  6482. }
  6483. #u31709_text {
  6484. border-width:0px;
  6485. word-wrap:break-word;
  6486. text-transform:none;
  6487. }
  6488. #u31710_div {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:200px;
  6494. height:30px;
  6495. background:inherit;
  6496. background-color:rgba(245, 154, 35, 0);
  6497. border:none;
  6498. border-left:0px;
  6499. border-top:0px;
  6500. border-right:0px;
  6501. border-radius:0px;
  6502. border-bottom-right-radius:0px;
  6503. border-bottom-left-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:12px;
  6511. color:#FFFFFF;
  6512. text-align:left;
  6513. }
  6514. #u31710 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:1583px;
  6518. top:602px;
  6519. width:200px;
  6520. height:30px;
  6521. display:flex;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:12px;
  6526. color:#FFFFFF;
  6527. text-align:left;
  6528. }
  6529. #u31710 .text {
  6530. position:absolute;
  6531. align-self:center;
  6532. padding:2px 2px 2px 30px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u31710_text {
  6537. border-width:0px;
  6538. word-wrap:break-word;
  6539. text-transform:none;
  6540. }
  6541. #u31711_div {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:200px;
  6547. height:30px;
  6548. background:inherit;
  6549. background-color:rgba(245, 154, 35, 0);
  6550. border:none;
  6551. border-left:0px;
  6552. border-top:0px;
  6553. border-right:0px;
  6554. border-radius:0px;
  6555. border-bottom-right-radius:0px;
  6556. border-bottom-left-radius:0px;
  6557. -moz-box-shadow:none;
  6558. -webkit-box-shadow:none;
  6559. box-shadow:none;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:12px;
  6564. color:#FFFFFF;
  6565. text-align:left;
  6566. }
  6567. #u31711 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:1583px;
  6571. top:632px;
  6572. width:200px;
  6573. height:30px;
  6574. display:flex;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. color:#FFFFFF;
  6580. text-align:left;
  6581. }
  6582. #u31711 .text {
  6583. position:absolute;
  6584. align-self:center;
  6585. padding:2px 2px 2px 30px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u31711_text {
  6590. border-width:0px;
  6591. word-wrap:break-word;
  6592. text-transform:none;
  6593. }
  6594. #u31712_img {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:200px;
  6600. height:526px;
  6601. }
  6602. #u31712 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:1583px;
  6606. top:262px;
  6607. width:200px;
  6608. height:526px;
  6609. display:flex;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:12px;
  6614. color:#FFFFFF;
  6615. text-align:left;
  6616. }
  6617. #u31712 .text {
  6618. position:absolute;
  6619. align-self:center;
  6620. padding:2px 2px 2px 10px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u31712_text {
  6625. border-width:0px;
  6626. word-wrap:break-word;
  6627. text-transform:none;
  6628. visibility:hidden;
  6629. }
  6630. #u31713 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:0px;
  6636. height:0px;
  6637. }
  6638. #u31714_div {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:200px;
  6644. height:40px;
  6645. background:inherit;
  6646. background-color:rgba(245, 154, 35, 0.2);
  6647. box-sizing:border-box;
  6648. border-width:2px;
  6649. border-style:solid;
  6650. border-color:rgba(245, 154, 35, 1);
  6651. border-left:0px;
  6652. border-top:0px;
  6653. border-right:0px;
  6654. border-radius:0px;
  6655. border-bottom-right-radius:0px;
  6656. border-bottom-left-radius:0px;
  6657. -moz-box-shadow:none;
  6658. -webkit-box-shadow:none;
  6659. box-shadow:none;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:18px;
  6664. color:#FFFFFF;
  6665. text-align:left;
  6666. }
  6667. #u31714 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:1583px;
  6671. top:172px;
  6672. width:200px;
  6673. height:40px;
  6674. display:flex;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:18px;
  6679. color:#FFFFFF;
  6680. text-align:left;
  6681. }
  6682. #u31714 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:2px 2px 2px 10px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u31714_text {
  6690. border-width:0px;
  6691. word-wrap:break-word;
  6692. text-transform:none;
  6693. }
  6694. #u31715_img {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:11px;
  6700. height:6px;
  6701. }
  6702. #u31715 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:1757px;
  6706. top:192px;
  6707. width:11px;
  6708. height:6px;
  6709. display:flex;
  6710. }
  6711. #u31715 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u31715_text {
  6719. border-width:0px;
  6720. word-wrap:break-word;
  6721. text-transform:none;
  6722. visibility:hidden;
  6723. }
  6724. #u31716 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:0px;
  6730. height:0px;
  6731. }
  6732. #u31717_img {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:200px;
  6738. height:30px;
  6739. }
  6740. #u31717 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:1583px;
  6744. top:222px;
  6745. width:200px;
  6746. height:30px;
  6747. display:flex;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:10px;
  6752. color:rgba(250, 205, 145, 0.498039215686275);
  6753. text-align:left;
  6754. }
  6755. #u31717 .text {
  6756. position:absolute;
  6757. align-self:center;
  6758. padding:2px 2px 2px 10px;
  6759. box-sizing:border-box;
  6760. width:100%;
  6761. }
  6762. #u31717_text {
  6763. border-width:0px;
  6764. word-wrap:break-word;
  6765. text-transform:none;
  6766. }
  6767. #u31718_img {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:15px;
  6773. height:15px;
  6774. }
  6775. #u31718 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:1753px;
  6779. top:228px;
  6780. width:15px;
  6781. height:15px;
  6782. display:flex;
  6783. }
  6784. #u31718 .text {
  6785. position:absolute;
  6786. align-self:center;
  6787. padding:2px 2px 2px 2px;
  6788. box-sizing:border-box;
  6789. width:100%;
  6790. }
  6791. #u31718_text {
  6792. border-width:0px;
  6793. word-wrap:break-word;
  6794. text-transform:none;
  6795. visibility:hidden;
  6796. }
  6797. #u31719 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:0px;
  6803. height:0px;
  6804. }
  6805. #u31720_div {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:80px;
  6811. height:30px;
  6812. background:inherit;
  6813. background-color:rgba(245, 154, 35, 1);
  6814. box-sizing:border-box;
  6815. border-width:1px;
  6816. border-style:solid;
  6817. border-color:rgba(245, 154, 35, 1);
  6818. border-radius:0px;
  6819. border-top-right-radius:0px;
  6820. border-bottom-right-radius:0px;
  6821. -moz-box-shadow:none;
  6822. -webkit-box-shadow:none;
  6823. box-shadow:none;
  6824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:15px;
  6828. color:#FFFFFF;
  6829. }
  6830. #u31720 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:2953px;
  6834. top:167px;
  6835. width:80px;
  6836. height:30px;
  6837. display:flex;
  6838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. font-size:15px;
  6842. color:#FFFFFF;
  6843. }
  6844. #u31720 .text {
  6845. position:absolute;
  6846. align-self:center;
  6847. padding:2px 2px 2px 2px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u31720_text {
  6852. border-width:0px;
  6853. word-wrap:break-word;
  6854. text-transform:none;
  6855. }
  6856. #u31721_div {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:80px;
  6862. height:30px;
  6863. background:inherit;
  6864. background-color:rgba(245, 154, 35, 0.0980392156862745);
  6865. box-sizing:border-box;
  6866. border-width:1px;
  6867. border-style:solid;
  6868. border-color:rgba(245, 154, 35, 1);
  6869. border-radius:0px;
  6870. border-top-right-radius:0px;
  6871. border-bottom-right-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:15px;
  6879. color:#FFFFFF;
  6880. }
  6881. #u31721 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:2953px;
  6885. top:197px;
  6886. width:80px;
  6887. height:30px;
  6888. display:flex;
  6889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:15px;
  6893. color:#FFFFFF;
  6894. }
  6895. #u31721 .text {
  6896. position:absolute;
  6897. align-self:center;
  6898. padding:2px 2px 2px 2px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u31721_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. }
  6907. #u31722_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:80px;
  6913. height:30px;
  6914. background:inherit;
  6915. background-color:rgba(245, 154, 35, 0.0980392156862745);
  6916. box-sizing:border-box;
  6917. border-width:1px;
  6918. border-style:solid;
  6919. border-color:rgba(245, 154, 35, 1);
  6920. border-radius:0px;
  6921. border-top-right-radius:0px;
  6922. border-bottom-right-radius:0px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:15px;
  6930. color:#FFFFFF;
  6931. }
  6932. #u31722 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:2953px;
  6936. top:227px;
  6937. width:80px;
  6938. height:30px;
  6939. display:flex;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:15px;
  6944. color:#FFFFFF;
  6945. }
  6946. #u31722 .text {
  6947. position:absolute;
  6948. align-self:center;
  6949. padding:2px 2px 2px 2px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u31722_text {
  6954. border-width:0px;
  6955. word-wrap:break-word;
  6956. text-transform:none;
  6957. }
  6958. #u31723_img {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:-5px;
  6962. top:-5px;
  6963. width:30px;
  6964. height:40px;
  6965. }
  6966. #u31723 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:2203px;
  6970. top:572px;
  6971. width:20px;
  6972. height:30px;
  6973. display:flex;
  6974. }
  6975. #u31723 .text {
  6976. position:absolute;
  6977. align-self:center;
  6978. padding:2px 2px 2px 2px;
  6979. box-sizing:border-box;
  6980. width:100%;
  6981. }
  6982. #u31723_text {
  6983. border-width:0px;
  6984. word-wrap:break-word;
  6985. text-transform:none;
  6986. visibility:hidden;
  6987. }
  6988. #u31724_img {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:-5px;
  6992. top:-5px;
  6993. width:30px;
  6994. height:40px;
  6995. }
  6996. #u31724 {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:2160px;
  7000. top:504px;
  7001. width:20px;
  7002. height:30px;
  7003. display:flex;
  7004. }
  7005. #u31724 .text {
  7006. position:absolute;
  7007. align-self:center;
  7008. padding:2px 2px 2px 2px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u31724_text {
  7013. border-width:0px;
  7014. word-wrap:break-word;
  7015. text-transform:none;
  7016. visibility:hidden;
  7017. }
  7018. #u31725_img {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:-5px;
  7022. top:-5px;
  7023. width:30px;
  7024. height:40px;
  7025. }
  7026. #u31725 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:2013px;
  7030. top:504px;
  7031. width:20px;
  7032. height:30px;
  7033. display:flex;
  7034. }
  7035. #u31725 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:2px 2px 2px 2px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u31725_text {
  7043. border-width:0px;
  7044. word-wrap:break-word;
  7045. text-transform:none;
  7046. visibility:hidden;
  7047. }
  7048. #u31726_img {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:-5px;
  7052. top:-5px;
  7053. width:30px;
  7054. height:40px;
  7055. }
  7056. #u31726 {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:1914px;
  7060. top:516px;
  7061. width:20px;
  7062. height:30px;
  7063. display:flex;
  7064. }
  7065. #u31726 .text {
  7066. position:absolute;
  7067. align-self:center;
  7068. padding:2px 2px 2px 2px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u31726_text {
  7073. border-width:0px;
  7074. word-wrap:break-word;
  7075. text-transform:none;
  7076. visibility:hidden;
  7077. }
  7078. #u31727_img {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:-5px;
  7082. top:-5px;
  7083. width:30px;
  7084. height:40px;
  7085. }
  7086. #u31727 {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:1914px;
  7090. top:424px;
  7091. width:20px;
  7092. height:30px;
  7093. display:flex;
  7094. }
  7095. #u31727 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:2px 2px 2px 2px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u31727_text {
  7103. border-width:0px;
  7104. word-wrap:break-word;
  7105. text-transform:none;
  7106. visibility:hidden;
  7107. }
  7108. #u31728_img {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:-5px;
  7112. top:-5px;
  7113. width:30px;
  7114. height:40px;
  7115. }
  7116. #u31728 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:1914px;
  7120. top:335px;
  7121. width:20px;
  7122. height:30px;
  7123. display:flex;
  7124. }
  7125. #u31728 .text {
  7126. position:absolute;
  7127. align-self:center;
  7128. padding:2px 2px 2px 2px;
  7129. box-sizing:border-box;
  7130. width:100%;
  7131. }
  7132. #u31728_text {
  7133. border-width:0px;
  7134. word-wrap:break-word;
  7135. text-transform:none;
  7136. visibility:hidden;
  7137. }
  7138. #u31729_img {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:-5px;
  7142. top:-5px;
  7143. width:30px;
  7144. height:40px;
  7145. }
  7146. #u31729 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:1991px;
  7150. top:281px;
  7151. width:20px;
  7152. height:30px;
  7153. display:flex;
  7154. }
  7155. #u31729 .text {
  7156. position:absolute;
  7157. align-self:center;
  7158. padding:2px 2px 2px 2px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u31729_text {
  7163. border-width:0px;
  7164. word-wrap:break-word;
  7165. text-transform:none;
  7166. visibility:hidden;
  7167. }
  7168. #u31730_img {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:-5px;
  7172. top:-5px;
  7173. width:30px;
  7174. height:40px;
  7175. }
  7176. #u31730 {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:2177px;
  7180. top:180px;
  7181. width:20px;
  7182. height:30px;
  7183. display:flex;
  7184. }
  7185. #u31730 .text {
  7186. position:absolute;
  7187. align-self:center;
  7188. padding:2px 2px 2px 2px;
  7189. box-sizing:border-box;
  7190. width:100%;
  7191. }
  7192. #u31730_text {
  7193. border-width:0px;
  7194. word-wrap:break-word;
  7195. text-transform:none;
  7196. visibility:hidden;
  7197. }
  7198. #u31731_img {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:-5px;
  7202. top:-5px;
  7203. width:30px;
  7204. height:40px;
  7205. }
  7206. #u31731 {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:2308px;
  7210. top:180px;
  7211. width:20px;
  7212. height:30px;
  7213. display:flex;
  7214. }
  7215. #u31731 .text {
  7216. position:absolute;
  7217. align-self:center;
  7218. padding:2px 2px 2px 2px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u31731_text {
  7223. border-width:0px;
  7224. word-wrap:break-word;
  7225. text-transform:none;
  7226. visibility:hidden;
  7227. }
  7228. #u31732_img {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:-5px;
  7232. top:-5px;
  7233. width:30px;
  7234. height:40px;
  7235. }
  7236. #u31732 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:2546px;
  7240. top:180px;
  7241. width:20px;
  7242. height:30px;
  7243. display:flex;
  7244. }
  7245. #u31732 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:2px 2px 2px 2px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u31732_text {
  7253. border-width:0px;
  7254. word-wrap:break-word;
  7255. text-transform:none;
  7256. visibility:hidden;
  7257. }
  7258. #u31733_img {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:-5px;
  7262. top:-5px;
  7263. width:30px;
  7264. height:40px;
  7265. }
  7266. #u31733 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:2316px;
  7270. top:300px;
  7271. width:20px;
  7272. height:30px;
  7273. display:flex;
  7274. }
  7275. #u31733 .text {
  7276. position:absolute;
  7277. align-self:center;
  7278. padding:2px 2px 2px 2px;
  7279. box-sizing:border-box;
  7280. width:100%;
  7281. }
  7282. #u31733_text {
  7283. border-width:0px;
  7284. word-wrap:break-word;
  7285. text-transform:none;
  7286. visibility:hidden;
  7287. }
  7288. #u31734_div {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:80px;
  7294. height:30px;
  7295. background:inherit;
  7296. background-color:rgba(245, 154, 35, 1);
  7297. box-sizing:border-box;
  7298. border-width:1px;
  7299. border-style:solid;
  7300. border-color:rgba(245, 154, 35, 1);
  7301. border-radius:4px;
  7302. border-top-right-radius:0px;
  7303. border-bottom-right-radius:0px;
  7304. -moz-box-shadow:none;
  7305. -webkit-box-shadow:none;
  7306. box-shadow:none;
  7307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:15px;
  7311. color:#FFFFFF;
  7312. }
  7313. #u31734 {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:1583px;
  7317. top:132px;
  7318. width:80px;
  7319. height:30px;
  7320. display:flex;
  7321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:15px;
  7325. color:#FFFFFF;
  7326. }
  7327. #u31734 .text {
  7328. position:absolute;
  7329. align-self:center;
  7330. padding:2px 2px 2px 2px;
  7331. box-sizing:border-box;
  7332. width:100%;
  7333. }
  7334. #u31734_text {
  7335. border-width:0px;
  7336. word-wrap:break-word;
  7337. text-transform:none;
  7338. }
  7339. #u31735_div {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:80px;
  7345. height:30px;
  7346. background:inherit;
  7347. background-color:rgba(245, 154, 35, 0);
  7348. box-sizing:border-box;
  7349. border-width:1px;
  7350. border-style:solid;
  7351. border-color:rgba(245, 154, 35, 1);
  7352. border-radius:0px;
  7353. border-top-right-radius:0px;
  7354. border-bottom-right-radius:0px;
  7355. -moz-box-shadow:none;
  7356. -webkit-box-shadow:none;
  7357. box-shadow:none;
  7358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:15px;
  7362. color:#FFFFFF;
  7363. }
  7364. #u31735 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:1663px;
  7368. top:132px;
  7369. width:80px;
  7370. height:30px;
  7371. display:flex;
  7372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:15px;
  7376. color:#FFFFFF;
  7377. }
  7378. #u31735 .text {
  7379. position:absolute;
  7380. align-self:center;
  7381. padding:2px 2px 2px 2px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u31735_text {
  7386. border-width:0px;
  7387. word-wrap:break-word;
  7388. text-transform:none;
  7389. }
  7390. #u31736 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:0px;
  7396. height:0px;
  7397. }
  7398. #u31737_img {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:0px;
  7402. top:0px;
  7403. width:1510px;
  7404. height:858px;
  7405. }
  7406. #u31737 {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:3113px;
  7410. top:0px;
  7411. width:1510px;
  7412. height:858px;
  7413. display:flex;
  7414. }
  7415. #u31737 .text {
  7416. position:absolute;
  7417. align-self:center;
  7418. padding:2px 2px 2px 2px;
  7419. box-sizing:border-box;
  7420. width:100%;
  7421. }
  7422. #u31737_text {
  7423. border-width:0px;
  7424. word-wrap:break-word;
  7425. text-transform:none;
  7426. visibility:hidden;
  7427. }
  7428. #u31738_img {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:106px;
  7434. height:40px;
  7435. }
  7436. #u31738 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:4500px;
  7440. top:87px;
  7441. width:106px;
  7442. height:40px;
  7443. display:flex;
  7444. }
  7445. #u31738 .text {
  7446. position:absolute;
  7447. align-self:center;
  7448. padding:2px 2px 2px 2px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u31738_text {
  7453. border-width:0px;
  7454. word-wrap:break-word;
  7455. text-transform:none;
  7456. visibility:hidden;
  7457. }
  7458. #u31739_img {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:547px;
  7464. height:34px;
  7465. }
  7466. #u31739 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:3579px;
  7470. top:29px;
  7471. width:547px;
  7472. height:34px;
  7473. display:flex;
  7474. }
  7475. #u31739 .text {
  7476. position:absolute;
  7477. align-self:center;
  7478. padding:2px 2px 2px 2px;
  7479. box-sizing:border-box;
  7480. width:100%;
  7481. }
  7482. #u31739_text {
  7483. border-width:0px;
  7484. word-wrap:break-word;
  7485. text-transform:none;
  7486. visibility:hidden;
  7487. }
  7488. #u31740_div {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:0px;
  7492. top:0px;
  7493. width:1510px;
  7494. height:677px;
  7495. background:inherit;
  7496. background-color:rgba(39, 57, 56, 1);
  7497. border:none;
  7498. border-radius:0px;
  7499. -moz-box-shadow:none;
  7500. -webkit-box-shadow:none;
  7501. box-shadow:none;
  7502. }
  7503. #u31740 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:3113px;
  7507. top:65px;
  7508. width:1510px;
  7509. height:677px;
  7510. display:flex;
  7511. }
  7512. #u31740 .text {
  7513. position:absolute;
  7514. align-self:center;
  7515. padding:2px 2px 2px 2px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u31740_text {
  7520. border-width:0px;
  7521. word-wrap:break-word;
  7522. text-transform:none;
  7523. visibility:hidden;
  7524. }
  7525. #u31741_img {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:1095px;
  7531. height:821px;
  7532. }
  7533. #u31741 {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:3303px;
  7537. top:2px;
  7538. width:1095px;
  7539. height:821px;
  7540. display:flex;
  7541. opacity:0.6;
  7542. }
  7543. #u31741 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 2px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u31741_text {
  7551. border-width:0px;
  7552. word-wrap:break-word;
  7553. text-transform:none;
  7554. visibility:hidden;
  7555. }
  7556. #u31742 {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:3571px;
  7560. top:32px;
  7561. width:558px;
  7562. height:30px;
  7563. }
  7564. #u31742_state0 {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:558px;
  7570. height:30px;
  7571. -ms-overflow-x:hidden;
  7572. overflow-x:hidden;
  7573. -ms-overflow-y:hidden;
  7574. overflow-y:hidden;
  7575. background-image:none;
  7576. border:none;
  7577. border-radius:0px;
  7578. -moz-box-shadow:none;
  7579. -webkit-box-shadow:none;
  7580. box-shadow:none;
  7581. }
  7582. #u31742_state0_content {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:1px;
  7588. height:1px;
  7589. }
  7590. #u31743_div {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:660px;
  7596. height:30px;
  7597. background:inherit;
  7598. background-color:rgba(255, 255, 255, 0);
  7599. border:none;
  7600. border-left:0px;
  7601. border-top:0px;
  7602. border-right:0px;
  7603. border-radius:0px;
  7604. border-bottom-right-radius:0px;
  7605. border-bottom-left-radius:0px;
  7606. -moz-box-shadow:none;
  7607. -webkit-box-shadow:none;
  7608. box-shadow:none;
  7609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7610. font-style:normal;
  7611. font-size:12px;
  7612. line-height:30px;
  7613. }
  7614. #u31743 {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:660px;
  7620. height:30px;
  7621. display:flex;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-style:normal;
  7624. font-size:12px;
  7625. line-height:30px;
  7626. }
  7627. #u31743 .text {
  7628. position:absolute;
  7629. align-self:flex-start;
  7630. padding:0px 0px 0px 0px;
  7631. box-sizing:border-box;
  7632. width:100%;
  7633. }
  7634. #u31743_text {
  7635. border-width:0px;
  7636. white-space:nowrap;
  7637. text-transform:none;
  7638. }
  7639. #u31744 {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:0px;
  7643. top:0px;
  7644. width:0px;
  7645. height:0px;
  7646. }
  7647. #u31745_div {
  7648. border-width:0px;
  7649. position:absolute;
  7650. left:0px;
  7651. top:0px;
  7652. width:100px;
  7653. height:40px;
  7654. background:inherit;
  7655. background-color:rgba(245, 154, 35, 1);
  7656. box-sizing:border-box;
  7657. border-width:1px;
  7658. border-style:solid;
  7659. border-color:rgba(245, 154, 35, 1);
  7660. border-radius:4px;
  7661. -moz-box-shadow:none;
  7662. -webkit-box-shadow:none;
  7663. box-shadow:none;
  7664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. font-size:14px;
  7668. color:#FFFFFF;
  7669. }
  7670. #u31745 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:4403px;
  7674. top:87px;
  7675. width:100px;
  7676. height:40px;
  7677. display:flex;
  7678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7679. font-weight:400;
  7680. font-style:normal;
  7681. font-size:14px;
  7682. color:#FFFFFF;
  7683. }
  7684. #u31745 .text {
  7685. position:absolute;
  7686. align-self:center;
  7687. padding:2px 2px 2px 20px;
  7688. box-sizing:border-box;
  7689. width:100%;
  7690. }
  7691. #u31745_text {
  7692. border-width:0px;
  7693. word-wrap:break-word;
  7694. text-transform:none;
  7695. }
  7696. #u31746_img {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:0px;
  7700. top:0px;
  7701. width:16px;
  7702. height:15px;
  7703. }
  7704. #u31746 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:4412px;
  7708. top:99px;
  7709. width:16px;
  7710. height:15px;
  7711. display:flex;
  7712. }
  7713. #u31746 .text {
  7714. position:absolute;
  7715. align-self:center;
  7716. padding:2px 2px 2px 2px;
  7717. box-sizing:border-box;
  7718. width:100%;
  7719. }
  7720. #u31746_text {
  7721. border-width:0px;
  7722. word-wrap:break-word;
  7723. text-transform:none;
  7724. visibility:hidden;
  7725. }
  7726. #u31747 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:0px;
  7732. height:0px;
  7733. }
  7734. #u31748_div {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:80px;
  7740. height:40px;
  7741. background:inherit;
  7742. background-color:rgba(245, 154, 35, 0.0980392156862745);
  7743. box-sizing:border-box;
  7744. border-width:1px;
  7745. border-style:solid;
  7746. border-color:rgba(245, 154, 35, 1);
  7747. border-radius:4px;
  7748. -moz-box-shadow:none;
  7749. -webkit-box-shadow:none;
  7750. box-shadow:none;
  7751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:14px;
  7755. color:#F59A23;
  7756. }
  7757. #u31748 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:4513px;
  7761. top:87px;
  7762. width:80px;
  7763. height:40px;
  7764. display:flex;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:14px;
  7769. color:#F59A23;
  7770. }
  7771. #u31748 .text {
  7772. position:absolute;
  7773. align-self:center;
  7774. padding:2px 10px 2px 2px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u31748_text {
  7779. border-width:0px;
  7780. word-wrap:break-word;
  7781. text-transform:none;
  7782. }
  7783. #u31749_img {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:0px;
  7787. top:0px;
  7788. width:7px;
  7789. height:4px;
  7790. }
  7791. #u31749 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:4580px;
  7795. top:105px;
  7796. width:7px;
  7797. height:4px;
  7798. display:flex;
  7799. }
  7800. #u31749 .text {
  7801. position:absolute;
  7802. align-self:center;
  7803. padding:2px 2px 2px 2px;
  7804. box-sizing:border-box;
  7805. width:100%;
  7806. }
  7807. #u31749_text {
  7808. border-width:0px;
  7809. word-wrap:break-word;
  7810. text-transform:none;
  7811. visibility:hidden;
  7812. }
  7813. #u31750_div {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:80px;
  7819. height:30px;
  7820. background:inherit;
  7821. background-color:rgba(245, 154, 35, 0);
  7822. box-sizing:border-box;
  7823. border-width:1px;
  7824. border-style:solid;
  7825. border-color:rgba(245, 154, 35, 1);
  7826. border-radius:4px;
  7827. border-top-right-radius:0px;
  7828. border-bottom-right-radius:0px;
  7829. -moz-box-shadow:none;
  7830. -webkit-box-shadow:none;
  7831. box-shadow:none;
  7832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7833. font-weight:400;
  7834. font-style:normal;
  7835. font-size:15px;
  7836. color:#FFFFFF;
  7837. }
  7838. #u31750 {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:3788px;
  7842. top:82px;
  7843. width:80px;
  7844. height:30px;
  7845. display:flex;
  7846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7847. font-weight:400;
  7848. font-style:normal;
  7849. font-size:15px;
  7850. color:#FFFFFF;
  7851. }
  7852. #u31750 .text {
  7853. position:absolute;
  7854. align-self:center;
  7855. padding:2px 2px 2px 2px;
  7856. box-sizing:border-box;
  7857. width:100%;
  7858. }
  7859. #u31750_text {
  7860. border-width:0px;
  7861. word-wrap:break-word;
  7862. text-transform:none;
  7863. }
  7864. #u31751_div {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:0px;
  7868. top:0px;
  7869. width:80px;
  7870. height:30px;
  7871. background:inherit;
  7872. background-color:rgba(245, 154, 35, 1);
  7873. box-sizing:border-box;
  7874. border-width:1px;
  7875. border-style:solid;
  7876. border-color:rgba(245, 154, 35, 1);
  7877. border-radius:0px;
  7878. border-top-right-radius:0px;
  7879. border-bottom-right-radius:0px;
  7880. -moz-box-shadow:none;
  7881. -webkit-box-shadow:none;
  7882. box-shadow:none;
  7883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7884. font-weight:400;
  7885. font-style:normal;
  7886. font-size:15px;
  7887. color:#FFFFFF;
  7888. }
  7889. #u31751 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:3868px;
  7893. top:82px;
  7894. width:80px;
  7895. height:30px;
  7896. display:flex;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:15px;
  7901. color:#FFFFFF;
  7902. }
  7903. #u31751 .text {
  7904. position:absolute;
  7905. align-self:center;
  7906. padding:2px 2px 2px 2px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u31751_text {
  7911. border-width:0px;
  7912. word-wrap:break-word;
  7913. text-transform:none;
  7914. }
  7915. #u31752_img {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:-5px;
  7919. top:-5px;
  7920. width:30px;
  7921. height:40px;
  7922. }
  7923. #u31752 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:3908px;
  7927. top:620px;
  7928. width:20px;
  7929. height:30px;
  7930. display:flex;
  7931. }
  7932. #u31752 .text {
  7933. position:absolute;
  7934. align-self:center;
  7935. padding:2px 2px 2px 2px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u31752_text {
  7940. border-width:0px;
  7941. word-wrap:break-word;
  7942. text-transform:none;
  7943. visibility:hidden;
  7944. }
  7945. #u31753 {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:0px;
  7949. top:0px;
  7950. width:0px;
  7951. height:0px;
  7952. }
  7953. #u31754_div {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:0px;
  7957. top:0px;
  7958. width:200px;
  7959. height:40px;
  7960. background:inherit;
  7961. background-color:rgba(245, 154, 35, 0.2);
  7962. box-sizing:border-box;
  7963. border-width:2px;
  7964. border-style:solid;
  7965. border-color:rgba(245, 154, 35, 1);
  7966. border-left:0px;
  7967. border-top:0px;
  7968. border-right:0px;
  7969. border-radius:0px;
  7970. border-bottom-right-radius:0px;
  7971. border-bottom-left-radius:0px;
  7972. -moz-box-shadow:none;
  7973. -webkit-box-shadow:none;
  7974. box-shadow:none;
  7975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7976. font-weight:400;
  7977. font-style:normal;
  7978. font-size:18px;
  7979. color:#FFFFFF;
  7980. text-align:left;
  7981. }
  7982. #u31754 {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:3143px;
  7986. top:172px;
  7987. width:200px;
  7988. height:40px;
  7989. display:flex;
  7990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7991. font-weight:400;
  7992. font-style:normal;
  7993. font-size:18px;
  7994. color:#FFFFFF;
  7995. text-align:left;
  7996. }
  7997. #u31754 .text {
  7998. position:absolute;
  7999. align-self:center;
  8000. padding:2px 2px 2px 10px;
  8001. box-sizing:border-box;
  8002. width:100%;
  8003. }
  8004. #u31754_text {
  8005. border-width:0px;
  8006. word-wrap:break-word;
  8007. text-transform:none;
  8008. }
  8009. #u31755_img {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:0px;
  8013. top:0px;
  8014. width:11px;
  8015. height:6px;
  8016. }
  8017. #u31755 {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:3317px;
  8021. top:192px;
  8022. width:11px;
  8023. height:6px;
  8024. display:flex;
  8025. }
  8026. #u31755 .text {
  8027. position:absolute;
  8028. align-self:center;
  8029. padding:2px 2px 2px 2px;
  8030. box-sizing:border-box;
  8031. width:100%;
  8032. }
  8033. #u31755_text {
  8034. border-width:0px;
  8035. word-wrap:break-word;
  8036. text-transform:none;
  8037. visibility:hidden;
  8038. }
  8039. #u31756 {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:0px;
  8043. top:0px;
  8044. width:0px;
  8045. height:0px;
  8046. }
  8047. #u31757_img {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:0px;
  8051. top:0px;
  8052. width:200px;
  8053. height:30px;
  8054. }
  8055. #u31757 {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:3143px;
  8059. top:222px;
  8060. width:200px;
  8061. height:30px;
  8062. display:flex;
  8063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8064. font-weight:400;
  8065. font-style:normal;
  8066. font-size:10px;
  8067. color:rgba(250, 205, 145, 0.498039215686275);
  8068. text-align:left;
  8069. }
  8070. #u31757 .text {
  8071. position:absolute;
  8072. align-self:center;
  8073. padding:2px 2px 2px 10px;
  8074. box-sizing:border-box;
  8075. width:100%;
  8076. }
  8077. #u31757_text {
  8078. border-width:0px;
  8079. word-wrap:break-word;
  8080. text-transform:none;
  8081. }
  8082. #u31758_img {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:0px;
  8086. top:0px;
  8087. width:15px;
  8088. height:15px;
  8089. }
  8090. #u31758 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:3313px;
  8094. top:228px;
  8095. width:15px;
  8096. height:15px;
  8097. display:flex;
  8098. }
  8099. #u31758 .text {
  8100. position:absolute;
  8101. align-self:center;
  8102. padding:2px 2px 2px 2px;
  8103. box-sizing:border-box;
  8104. width:100%;
  8105. }
  8106. #u31758_text {
  8107. border-width:0px;
  8108. word-wrap:break-word;
  8109. text-transform:none;
  8110. visibility:hidden;
  8111. }
  8112. #u31759 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:0px;
  8118. height:0px;
  8119. }
  8120. #u31760_div {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:80px;
  8126. height:30px;
  8127. background:inherit;
  8128. background-color:rgba(245, 154, 35, 1);
  8129. box-sizing:border-box;
  8130. border-width:1px;
  8131. border-style:solid;
  8132. border-color:rgba(245, 154, 35, 1);
  8133. border-radius:0px;
  8134. border-top-right-radius:0px;
  8135. border-bottom-right-radius:0px;
  8136. -moz-box-shadow:none;
  8137. -webkit-box-shadow:none;
  8138. box-shadow:none;
  8139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:15px;
  8143. color:#FFFFFF;
  8144. }
  8145. #u31760 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:4513px;
  8149. top:157px;
  8150. width:80px;
  8151. height:30px;
  8152. display:flex;
  8153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:15px;
  8157. color:#FFFFFF;
  8158. }
  8159. #u31760 .text {
  8160. position:absolute;
  8161. align-self:center;
  8162. padding:2px 2px 2px 2px;
  8163. box-sizing:border-box;
  8164. width:100%;
  8165. }
  8166. #u31760_text {
  8167. border-width:0px;
  8168. word-wrap:break-word;
  8169. text-transform:none;
  8170. }
  8171. #u31761_div {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:80px;
  8177. height:30px;
  8178. background:inherit;
  8179. background-color:rgba(245, 154, 35, 0.0980392156862745);
  8180. box-sizing:border-box;
  8181. border-width:1px;
  8182. border-style:solid;
  8183. border-color:rgba(245, 154, 35, 1);
  8184. border-radius:0px;
  8185. border-top-right-radius:0px;
  8186. border-bottom-right-radius:0px;
  8187. -moz-box-shadow:none;
  8188. -webkit-box-shadow:none;
  8189. box-shadow:none;
  8190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:15px;
  8194. color:#FFFFFF;
  8195. }
  8196. #u31761 {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:4513px;
  8200. top:187px;
  8201. width:80px;
  8202. height:30px;
  8203. display:flex;
  8204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8205. font-weight:400;
  8206. font-style:normal;
  8207. font-size:15px;
  8208. color:#FFFFFF;
  8209. }
  8210. #u31761 .text {
  8211. position:absolute;
  8212. align-self:center;
  8213. padding:2px 2px 2px 2px;
  8214. box-sizing:border-box;
  8215. width:100%;
  8216. }
  8217. #u31761_text {
  8218. border-width:0px;
  8219. word-wrap:break-word;
  8220. text-transform:none;
  8221. }
  8222. #u31762_div {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:0px;
  8226. top:0px;
  8227. width:80px;
  8228. height:30px;
  8229. background:inherit;
  8230. background-color:rgba(245, 154, 35, 0.0980392156862745);
  8231. box-sizing:border-box;
  8232. border-width:1px;
  8233. border-style:solid;
  8234. border-color:rgba(245, 154, 35, 1);
  8235. border-radius:0px;
  8236. border-top-right-radius:0px;
  8237. border-bottom-right-radius:0px;
  8238. -moz-box-shadow:none;
  8239. -webkit-box-shadow:none;
  8240. box-shadow:none;
  8241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8242. font-weight:400;
  8243. font-style:normal;
  8244. font-size:15px;
  8245. color:#FFFFFF;
  8246. }
  8247. #u31762 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:4513px;
  8251. top:217px;
  8252. width:80px;
  8253. height:30px;
  8254. display:flex;
  8255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8256. font-weight:400;
  8257. font-style:normal;
  8258. font-size:15px;
  8259. color:#FFFFFF;
  8260. }
  8261. #u31762 .text {
  8262. position:absolute;
  8263. align-self:center;
  8264. padding:2px 2px 2px 2px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u31762_text {
  8269. border-width:0px;
  8270. word-wrap:break-word;
  8271. text-transform:none;
  8272. }
  8273. #u31763_img {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:-5px;
  8277. top:-5px;
  8278. width:30px;
  8279. height:40px;
  8280. }
  8281. #u31763 {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:3763px;
  8285. top:572px;
  8286. width:20px;
  8287. height:30px;
  8288. display:flex;
  8289. }
  8290. #u31763 .text {
  8291. position:absolute;
  8292. align-self:center;
  8293. padding:2px 2px 2px 2px;
  8294. box-sizing:border-box;
  8295. width:100%;
  8296. }
  8297. #u31763_text {
  8298. border-width:0px;
  8299. word-wrap:break-word;
  8300. text-transform:none;
  8301. visibility:hidden;
  8302. }
  8303. #u31764_img {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:-5px;
  8307. top:-5px;
  8308. width:30px;
  8309. height:40px;
  8310. }
  8311. #u31764 {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:3720px;
  8315. top:504px;
  8316. width:20px;
  8317. height:30px;
  8318. display:flex;
  8319. }
  8320. #u31764 .text {
  8321. position:absolute;
  8322. align-self:center;
  8323. padding:2px 2px 2px 2px;
  8324. box-sizing:border-box;
  8325. width:100%;
  8326. }
  8327. #u31764_text {
  8328. border-width:0px;
  8329. word-wrap:break-word;
  8330. text-transform:none;
  8331. visibility:hidden;
  8332. }
  8333. #u31765_img {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:-5px;
  8337. top:-5px;
  8338. width:30px;
  8339. height:40px;
  8340. }
  8341. #u31765 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:3573px;
  8345. top:504px;
  8346. width:20px;
  8347. height:30px;
  8348. display:flex;
  8349. }
  8350. #u31765 .text {
  8351. position:absolute;
  8352. align-self:center;
  8353. padding:2px 2px 2px 2px;
  8354. box-sizing:border-box;
  8355. width:100%;
  8356. }
  8357. #u31765_text {
  8358. border-width:0px;
  8359. word-wrap:break-word;
  8360. text-transform:none;
  8361. visibility:hidden;
  8362. }
  8363. #u31766_img {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:-5px;
  8367. top:-5px;
  8368. width:30px;
  8369. height:40px;
  8370. }
  8371. #u31766 {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:3474px;
  8375. top:516px;
  8376. width:20px;
  8377. height:30px;
  8378. display:flex;
  8379. }
  8380. #u31766 .text {
  8381. position:absolute;
  8382. align-self:center;
  8383. padding:2px 2px 2px 2px;
  8384. box-sizing:border-box;
  8385. width:100%;
  8386. }
  8387. #u31766_text {
  8388. border-width:0px;
  8389. word-wrap:break-word;
  8390. text-transform:none;
  8391. visibility:hidden;
  8392. }
  8393. #u31767_img {
  8394. border-width:0px;
  8395. position:absolute;
  8396. left:-5px;
  8397. top:-5px;
  8398. width:30px;
  8399. height:40px;
  8400. }
  8401. #u31767 {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:3474px;
  8405. top:424px;
  8406. width:20px;
  8407. height:30px;
  8408. display:flex;
  8409. }
  8410. #u31767 .text {
  8411. position:absolute;
  8412. align-self:center;
  8413. padding:2px 2px 2px 2px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u31767_text {
  8418. border-width:0px;
  8419. word-wrap:break-word;
  8420. text-transform:none;
  8421. visibility:hidden;
  8422. }
  8423. #u31768_img {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:-5px;
  8427. top:-5px;
  8428. width:30px;
  8429. height:40px;
  8430. }
  8431. #u31768 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:3474px;
  8435. top:335px;
  8436. width:20px;
  8437. height:30px;
  8438. display:flex;
  8439. }
  8440. #u31768 .text {
  8441. position:absolute;
  8442. align-self:center;
  8443. padding:2px 2px 2px 2px;
  8444. box-sizing:border-box;
  8445. width:100%;
  8446. }
  8447. #u31768_text {
  8448. border-width:0px;
  8449. word-wrap:break-word;
  8450. text-transform:none;
  8451. visibility:hidden;
  8452. }
  8453. #u31769_img {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:-5px;
  8457. top:-5px;
  8458. width:30px;
  8459. height:40px;
  8460. }
  8461. #u31769 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:3551px;
  8465. top:281px;
  8466. width:20px;
  8467. height:30px;
  8468. display:flex;
  8469. }
  8470. #u31769 .text {
  8471. position:absolute;
  8472. align-self:center;
  8473. padding:2px 2px 2px 2px;
  8474. box-sizing:border-box;
  8475. width:100%;
  8476. }
  8477. #u31769_text {
  8478. border-width:0px;
  8479. word-wrap:break-word;
  8480. text-transform:none;
  8481. visibility:hidden;
  8482. }
  8483. #u31770_img {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:-5px;
  8487. top:-5px;
  8488. width:30px;
  8489. height:40px;
  8490. }
  8491. #u31770 {
  8492. border-width:0px;
  8493. position:absolute;
  8494. left:3737px;
  8495. top:180px;
  8496. width:20px;
  8497. height:30px;
  8498. display:flex;
  8499. }
  8500. #u31770 .text {
  8501. position:absolute;
  8502. align-self:center;
  8503. padding:2px 2px 2px 2px;
  8504. box-sizing:border-box;
  8505. width:100%;
  8506. }
  8507. #u31770_text {
  8508. border-width:0px;
  8509. word-wrap:break-word;
  8510. text-transform:none;
  8511. visibility:hidden;
  8512. }
  8513. #u31771_img {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:-5px;
  8517. top:-5px;
  8518. width:30px;
  8519. height:40px;
  8520. }
  8521. #u31771 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:3868px;
  8525. top:180px;
  8526. width:20px;
  8527. height:30px;
  8528. display:flex;
  8529. }
  8530. #u31771 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 2px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u31771_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. visibility:hidden;
  8542. }
  8543. #u31772_img {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:-5px;
  8547. top:-5px;
  8548. width:30px;
  8549. height:40px;
  8550. }
  8551. #u31772 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:4106px;
  8555. top:180px;
  8556. width:20px;
  8557. height:30px;
  8558. display:flex;
  8559. }
  8560. #u31772 .text {
  8561. position:absolute;
  8562. align-self:center;
  8563. padding:2px 2px 2px 2px;
  8564. box-sizing:border-box;
  8565. width:100%;
  8566. }
  8567. #u31772_text {
  8568. border-width:0px;
  8569. word-wrap:break-word;
  8570. text-transform:none;
  8571. visibility:hidden;
  8572. }
  8573. #u31773_img {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:-5px;
  8577. top:-5px;
  8578. width:30px;
  8579. height:40px;
  8580. }
  8581. #u31773 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:3876px;
  8585. top:300px;
  8586. width:20px;
  8587. height:30px;
  8588. display:flex;
  8589. }
  8590. #u31773 .text {
  8591. position:absolute;
  8592. align-self:center;
  8593. padding:2px 2px 2px 2px;
  8594. box-sizing:border-box;
  8595. width:100%;
  8596. }
  8597. #u31773_text {
  8598. border-width:0px;
  8599. word-wrap:break-word;
  8600. text-transform:none;
  8601. visibility:hidden;
  8602. }
  8603. #u31774_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:80px;
  8609. height:30px;
  8610. background:inherit;
  8611. background-color:rgba(245, 154, 35, 0);
  8612. box-sizing:border-box;
  8613. border-width:1px;
  8614. border-style:solid;
  8615. border-color:rgba(245, 154, 35, 1);
  8616. border-radius:4px;
  8617. border-top-right-radius:0px;
  8618. border-bottom-right-radius:0px;
  8619. -moz-box-shadow:none;
  8620. -webkit-box-shadow:none;
  8621. box-shadow:none;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:15px;
  8626. color:#FFFFFF;
  8627. }
  8628. #u31774 {
  8629. border-width:0px;
  8630. position:absolute;
  8631. left:3143px;
  8632. top:132px;
  8633. width:80px;
  8634. height:30px;
  8635. display:flex;
  8636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8637. font-weight:400;
  8638. font-style:normal;
  8639. font-size:15px;
  8640. color:#FFFFFF;
  8641. }
  8642. #u31774 .text {
  8643. position:absolute;
  8644. align-self:center;
  8645. padding:2px 2px 2px 2px;
  8646. box-sizing:border-box;
  8647. width:100%;
  8648. }
  8649. #u31774_text {
  8650. border-width:0px;
  8651. word-wrap:break-word;
  8652. text-transform:none;
  8653. }
  8654. #u31775_div {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:80px;
  8660. height:30px;
  8661. background:inherit;
  8662. background-color:rgba(245, 154, 35, 1);
  8663. box-sizing:border-box;
  8664. border-width:1px;
  8665. border-style:solid;
  8666. border-color:rgba(245, 154, 35, 1);
  8667. border-radius:0px;
  8668. border-top-right-radius:0px;
  8669. border-bottom-right-radius:0px;
  8670. -moz-box-shadow:none;
  8671. -webkit-box-shadow:none;
  8672. box-shadow:none;
  8673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8674. font-weight:400;
  8675. font-style:normal;
  8676. font-size:15px;
  8677. color:#FFFFFF;
  8678. }
  8679. #u31775 {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:3223px;
  8683. top:132px;
  8684. width:80px;
  8685. height:30px;
  8686. display:flex;
  8687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8688. font-weight:400;
  8689. font-style:normal;
  8690. font-size:15px;
  8691. color:#FFFFFF;
  8692. }
  8693. #u31775 .text {
  8694. position:absolute;
  8695. align-self:center;
  8696. padding:2px 2px 2px 2px;
  8697. box-sizing:border-box;
  8698. width:100%;
  8699. }
  8700. #u31775_text {
  8701. border-width:0px;
  8702. word-wrap:break-word;
  8703. text-transform:none;
  8704. }
  8705. #u31776 {
  8706. border-width:0px;
  8707. position:absolute;
  8708. left:0px;
  8709. top:0px;
  8710. width:0px;
  8711. height:0px;
  8712. }
  8713. #u31777 {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:0px;
  8719. height:0px;
  8720. }
  8721. #u31778_div {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:280px;
  8727. height:140px;
  8728. background:inherit;
  8729. background-color:rgba(95, 72, 47, 1);
  8730. box-sizing:border-box;
  8731. border-width:2px;
  8732. border-style:solid;
  8733. border-color:rgba(245, 154, 35, 1);
  8734. border-radius:10px;
  8735. -moz-box-shadow:none;
  8736. -webkit-box-shadow:none;
  8737. box-shadow:none;
  8738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8739. font-weight:400;
  8740. font-style:normal;
  8741. font-size:12px;
  8742. color:#FFFFFF;
  8743. text-align:left;
  8744. }
  8745. #u31778 {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:2019px;
  8749. top:341px;
  8750. width:280px;
  8751. height:140px;
  8752. display:flex;
  8753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8754. font-weight:400;
  8755. font-style:normal;
  8756. font-size:12px;
  8757. color:#FFFFFF;
  8758. text-align:left;
  8759. }
  8760. #u31778 .text {
  8761. position:absolute;
  8762. align-self:center;
  8763. padding:2px 2px 2px 10px;
  8764. box-sizing:border-box;
  8765. width:100%;
  8766. }
  8767. #u31778_text {
  8768. border-width:0px;
  8769. word-wrap:break-word;
  8770. text-transform:none;
  8771. visibility:hidden;
  8772. }
  8773. #u31779 {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:0px;
  8777. top:0px;
  8778. width:0px;
  8779. height:0px;
  8780. }
  8781. #u31780_div {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:0px;
  8785. top:0px;
  8786. width:280px;
  8787. height:40px;
  8788. background:inherit;
  8789. background-color:rgba(221, 142, 35, 1);
  8790. box-sizing:border-box;
  8791. border-width:2px;
  8792. border-style:solid;
  8793. border-color:rgba(245, 154, 35, 1);
  8794. border-radius:10px;
  8795. border-bottom-right-radius:0px;
  8796. border-bottom-left-radius:0px;
  8797. -moz-box-shadow:none;
  8798. -webkit-box-shadow:none;
  8799. box-shadow:none;
  8800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:12px;
  8804. color:#FFFFFF;
  8805. text-align:left;
  8806. }
  8807. #u31780 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:2019px;
  8811. top:341px;
  8812. width:280px;
  8813. height:40px;
  8814. display:flex;
  8815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. font-size:12px;
  8819. color:#FFFFFF;
  8820. text-align:left;
  8821. }
  8822. #u31780 .text {
  8823. position:absolute;
  8824. align-self:center;
  8825. padding:2px 2px 2px 10px;
  8826. box-sizing:border-box;
  8827. width:100%;
  8828. }
  8829. #u31780_text {
  8830. border-width:0px;
  8831. word-wrap:break-word;
  8832. text-transform:none;
  8833. visibility:hidden;
  8834. }
  8835. #u31781_div {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:0px;
  8839. top:0px;
  8840. width:160px;
  8841. height:29px;
  8842. background:inherit;
  8843. background-color:rgba(245, 154, 35, 0);
  8844. border:none;
  8845. border-left:0px;
  8846. border-top:0px;
  8847. border-right:0px;
  8848. border-radius:0px;
  8849. border-bottom-right-radius:0px;
  8850. border-bottom-left-radius:0px;
  8851. -moz-box-shadow:none;
  8852. -webkit-box-shadow:none;
  8853. box-shadow:none;
  8854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8855. font-weight:400;
  8856. font-style:normal;
  8857. font-size:18px;
  8858. color:#FFFFFF;
  8859. text-align:left;
  8860. }
  8861. #u31781 {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:2039px;
  8865. top:346px;
  8866. width:160px;
  8867. height:29px;
  8868. display:flex;
  8869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8870. font-weight:400;
  8871. font-style:normal;
  8872. font-size:18px;
  8873. color:#FFFFFF;
  8874. text-align:left;
  8875. }
  8876. #u31781 .text {
  8877. position:absolute;
  8878. align-self:center;
  8879. padding:2px 2px 2px 2px;
  8880. box-sizing:border-box;
  8881. width:100%;
  8882. }
  8883. #u31781_text {
  8884. border-width:0px;
  8885. white-space:nowrap;
  8886. text-transform:none;
  8887. }
  8888. #u31782_div {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:0px;
  8892. top:0px;
  8893. width:41px;
  8894. height:34px;
  8895. background:inherit;
  8896. background-color:rgba(255, 255, 255, 0);
  8897. border:none;
  8898. border-radius:0px;
  8899. -moz-box-shadow:none;
  8900. -webkit-box-shadow:none;
  8901. box-shadow:none;
  8902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8903. font-weight:400;
  8904. font-style:normal;
  8905. font-size:12px;
  8906. color:rgba(255, 255, 255, 0.698039215686274);
  8907. text-align:left;
  8908. line-height:30px;
  8909. }
  8910. #u31782 {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:2039px;
  8914. top:429px;
  8915. width:41px;
  8916. height:34px;
  8917. display:flex;
  8918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:12px;
  8922. color:rgba(255, 255, 255, 0.698039215686274);
  8923. text-align:left;
  8924. line-height:30px;
  8925. }
  8926. #u31782 .text {
  8927. position:absolute;
  8928. align-self:center;
  8929. padding:2px 2px 2px 2px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u31782_text {
  8934. border-width:0px;
  8935. white-space:nowrap;
  8936. text-transform:none;
  8937. }
  8938. #u31783_div {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:0px;
  8942. top:0px;
  8943. width:79px;
  8944. height:34px;
  8945. background:inherit;
  8946. background-color:rgba(245, 154, 35, 0);
  8947. border:none;
  8948. border-left:0px;
  8949. border-top:0px;
  8950. border-right:0px;
  8951. border-radius:0px;
  8952. border-bottom-right-radius:0px;
  8953. border-bottom-left-radius:0px;
  8954. -moz-box-shadow:none;
  8955. -webkit-box-shadow:none;
  8956. box-shadow:none;
  8957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8958. font-weight:500;
  8959. font-style:normal;
  8960. font-size:24px;
  8961. color:#FFFFFF;
  8962. text-align:left;
  8963. line-height:30px;
  8964. }
  8965. #u31783 {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:2039px;
  8969. top:393px;
  8970. width:79px;
  8971. height:34px;
  8972. display:flex;
  8973. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8974. font-weight:500;
  8975. font-style:normal;
  8976. font-size:24px;
  8977. color:#FFFFFF;
  8978. text-align:left;
  8979. line-height:30px;
  8980. }
  8981. #u31783 .text {
  8982. position:absolute;
  8983. align-self:flex-start;
  8984. padding:2px 2px 2px 2px;
  8985. box-sizing:border-box;
  8986. width:100%;
  8987. }
  8988. #u31783_text {
  8989. border-width:0px;
  8990. white-space:nowrap;
  8991. text-transform:none;
  8992. }
  8993. #u31784_div {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:102px;
  8999. height:34px;
  9000. background:inherit;
  9001. background-color:rgba(255, 255, 255, 0);
  9002. border:none;
  9003. border-radius:0px;
  9004. -moz-box-shadow:none;
  9005. -webkit-box-shadow:none;
  9006. box-shadow:none;
  9007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9008. font-weight:400;
  9009. font-style:normal;
  9010. font-size:12px;
  9011. color:rgba(255, 255, 255, 0.698039215686274);
  9012. text-align:left;
  9013. line-height:30px;
  9014. }
  9015. #u31784 {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:2095px;
  9019. top:429px;
  9020. width:102px;
  9021. height:34px;
  9022. display:flex;
  9023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9024. font-weight:400;
  9025. font-style:normal;
  9026. font-size:12px;
  9027. color:rgba(255, 255, 255, 0.698039215686274);
  9028. text-align:left;
  9029. line-height:30px;
  9030. }
  9031. #u31784 .text {
  9032. position:absolute;
  9033. align-self:center;
  9034. padding:2px 2px 2px 2px;
  9035. box-sizing:border-box;
  9036. width:100%;
  9037. }
  9038. #u31784_text {
  9039. border-width:0px;
  9040. white-space:nowrap;
  9041. text-transform:none;
  9042. }
  9043. #u31785_img {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:0px;
  9047. top:0px;
  9048. width:19px;
  9049. height:19px;
  9050. }
  9051. #u31785 {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:2262px;
  9055. top:397px;
  9056. width:19px;
  9057. height:19px;
  9058. display:flex;
  9059. }
  9060. #u31785 .text {
  9061. position:absolute;
  9062. align-self:center;
  9063. padding:2px 2px 2px 2px;
  9064. box-sizing:border-box;
  9065. width:100%;
  9066. }
  9067. #u31785_text {
  9068. border-width:0px;
  9069. word-wrap:break-word;
  9070. text-transform:none;
  9071. visibility:hidden;
  9072. }
  9073. #u31786_div {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:0px;
  9078. width:180px;
  9079. height:38px;
  9080. background:inherit;
  9081. background-color:rgba(245, 154, 35, 0);
  9082. border:none;
  9083. border-left:0px;
  9084. border-top:0px;
  9085. border-right:0px;
  9086. border-radius:0px;
  9087. border-bottom-right-radius:0px;
  9088. border-bottom-left-radius:0px;
  9089. -moz-box-shadow:none;
  9090. -webkit-box-shadow:none;
  9091. box-shadow:none;
  9092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. font-size:12px;
  9096. color:#D9001B;
  9097. text-align:left;
  9098. }
  9099. #u31786 {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:2119px;
  9103. top:381px;
  9104. width:180px;
  9105. height:38px;
  9106. display:flex;
  9107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9108. font-weight:400;
  9109. font-style:normal;
  9110. font-size:12px;
  9111. color:#D9001B;
  9112. text-align:left;
  9113. }
  9114. #u31786 .text {
  9115. position:absolute;
  9116. align-self:flex-start;
  9117. padding:2px 2px 2px 2px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u31786_text {
  9122. border-width:0px;
  9123. word-wrap:break-word;
  9124. text-transform:none;
  9125. }
  9126. #u31787_div {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:0px;
  9130. top:0px;
  9131. width:243px;
  9132. height:34px;
  9133. background:inherit;
  9134. background-color:rgba(245, 154, 35, 0);
  9135. border:none;
  9136. border-left:0px;
  9137. border-top:0px;
  9138. border-right:0px;
  9139. border-radius:0px;
  9140. border-bottom-right-radius:0px;
  9141. border-bottom-left-radius:0px;
  9142. -moz-box-shadow:none;
  9143. -webkit-box-shadow:none;
  9144. box-shadow:none;
  9145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9146. font-weight:400;
  9147. font-style:normal;
  9148. font-size:14px;
  9149. color:#D9001B;
  9150. text-align:left;
  9151. line-height:30px;
  9152. }
  9153. #u31787 {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:2019px;
  9157. top:306px;
  9158. width:243px;
  9159. height:34px;
  9160. display:flex;
  9161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9162. font-weight:400;
  9163. font-style:normal;
  9164. font-size:14px;
  9165. color:#D9001B;
  9166. text-align:left;
  9167. line-height:30px;
  9168. }
  9169. #u31787 .text {
  9170. position:absolute;
  9171. align-self:flex-start;
  9172. padding:2px 2px 2px 2px;
  9173. box-sizing:border-box;
  9174. width:100%;
  9175. }
  9176. #u31787_text {
  9177. border-width:0px;
  9178. white-space:nowrap;
  9179. text-transform:none;
  9180. }
  9181. #u31788 {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:0px;
  9187. height:0px;
  9188. }
  9189. #u31789_img {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:200px;
  9195. height:538px;
  9196. }
  9197. #u31789 {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:3143px;
  9201. top:262px;
  9202. width:200px;
  9203. height:538px;
  9204. display:flex;
  9205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9206. font-weight:400;
  9207. font-style:normal;
  9208. font-size:12px;
  9209. color:#FFFFFF;
  9210. text-align:left;
  9211. }
  9212. #u31789 .text {
  9213. position:absolute;
  9214. align-self:center;
  9215. padding:2px 2px 2px 10px;
  9216. box-sizing:border-box;
  9217. width:100%;
  9218. }
  9219. #u31789_text {
  9220. border-width:0px;
  9221. word-wrap:break-word;
  9222. text-transform:none;
  9223. visibility:hidden;
  9224. }
  9225. #u31790_div {
  9226. border-width:0px;
  9227. position:absolute;
  9228. left:0px;
  9229. top:0px;
  9230. width:49px;
  9231. height:17px;
  9232. background:inherit;
  9233. background-color:rgba(255, 255, 255, 0);
  9234. border:none;
  9235. border-radius:0px;
  9236. -moz-box-shadow:none;
  9237. -webkit-box-shadow:none;
  9238. box-shadow:none;
  9239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9240. font-weight:400;
  9241. font-style:normal;
  9242. font-size:12px;
  9243. color:#FFFFFF;
  9244. }
  9245. #u31790 {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:3167px;
  9249. top:269px;
  9250. width:49px;
  9251. height:17px;
  9252. display:flex;
  9253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9254. font-weight:400;
  9255. font-style:normal;
  9256. font-size:12px;
  9257. color:#FFFFFF;
  9258. }
  9259. #u31790 .text {
  9260. position:absolute;
  9261. align-self:flex-start;
  9262. padding:0px 0px 0px 0px;
  9263. box-sizing:border-box;
  9264. width:100%;
  9265. }
  9266. #u31790_text {
  9267. border-width:0px;
  9268. white-space:nowrap;
  9269. text-transform:none;
  9270. }
  9271. #u31791_div {
  9272. border-width:0px;
  9273. position:absolute;
  9274. left:0px;
  9275. top:0px;
  9276. width:54px;
  9277. height:17px;
  9278. background:inherit;
  9279. background-color:rgba(255, 255, 255, 0);
  9280. border:none;
  9281. border-radius:0px;
  9282. -moz-box-shadow:none;
  9283. -webkit-box-shadow:none;
  9284. box-shadow:none;
  9285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9286. font-weight:400;
  9287. font-style:normal;
  9288. font-size:12px;
  9289. color:#FFFFFF;
  9290. }
  9291. #u31791 {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:3178px;
  9295. top:296px;
  9296. width:54px;
  9297. height:17px;
  9298. display:flex;
  9299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9300. font-weight:400;
  9301. font-style:normal;
  9302. font-size:12px;
  9303. color:#FFFFFF;
  9304. }
  9305. #u31791 .text {
  9306. position:absolute;
  9307. align-self:flex-start;
  9308. padding:0px 0px 0px 0px;
  9309. box-sizing:border-box;
  9310. width:100%;
  9311. }
  9312. #u31791_text {
  9313. border-width:0px;
  9314. white-space:nowrap;
  9315. text-transform:none;
  9316. }
  9317. #u31792 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:0px;
  9321. top:0px;
  9322. width:0px;
  9323. height:0px;
  9324. }
  9325. #u31793_div {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:49px;
  9331. height:17px;
  9332. background:inherit;
  9333. background-color:rgba(255, 255, 255, 0);
  9334. border:none;
  9335. border-radius:0px;
  9336. -moz-box-shadow:none;
  9337. -webkit-box-shadow:none;
  9338. box-shadow:none;
  9339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9340. font-weight:400;
  9341. font-style:normal;
  9342. font-size:12px;
  9343. color:#FFFFFF;
  9344. }
  9345. #u31793 {
  9346. border-width:0px;
  9347. position:absolute;
  9348. left:3167px;
  9349. top:398px;
  9350. width:49px;
  9351. height:17px;
  9352. display:flex;
  9353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. font-size:12px;
  9357. color:#FFFFFF;
  9358. }
  9359. #u31793 .text {
  9360. position:absolute;
  9361. align-self:flex-start;
  9362. padding:0px 0px 0px 0px;
  9363. box-sizing:border-box;
  9364. width:100%;
  9365. }
  9366. #u31793_text {
  9367. border-width:0px;
  9368. white-space:nowrap;
  9369. text-transform:none;
  9370. }
  9371. #u31794_img {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:7px;
  9377. height:4px;
  9378. }
  9379. #u31794 {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:3157px;
  9383. top:405px;
  9384. width:7px;
  9385. height:4px;
  9386. display:flex;
  9387. -webkit-transform:rotate(270deg);
  9388. -moz-transform:rotate(270deg);
  9389. -ms-transform:rotate(270deg);
  9390. transform:rotate(270deg);
  9391. }
  9392. #u31794 .text {
  9393. position:absolute;
  9394. align-self:center;
  9395. padding:2px 2px 2px 2px;
  9396. box-sizing:border-box;
  9397. width:100%;
  9398. }
  9399. #u31794_text {
  9400. border-width:0px;
  9401. word-wrap:break-word;
  9402. text-transform:none;
  9403. visibility:hidden;
  9404. }
  9405. #u31795 {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:0px;
  9409. top:0px;
  9410. width:0px;
  9411. height:0px;
  9412. }
  9413. #u31796_div {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:49px;
  9419. height:17px;
  9420. background:inherit;
  9421. background-color:rgba(255, 255, 255, 0);
  9422. border:none;
  9423. border-radius:0px;
  9424. -moz-box-shadow:none;
  9425. -webkit-box-shadow:none;
  9426. box-shadow:none;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:12px;
  9431. color:#FFFFFF;
  9432. }
  9433. #u31796 {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:3167px;
  9437. top:425px;
  9438. width:49px;
  9439. height:17px;
  9440. display:flex;
  9441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9442. font-weight:400;
  9443. font-style:normal;
  9444. font-size:12px;
  9445. color:#FFFFFF;
  9446. }
  9447. #u31796 .text {
  9448. position:absolute;
  9449. align-self:flex-start;
  9450. padding:0px 0px 0px 0px;
  9451. box-sizing:border-box;
  9452. width:100%;
  9453. }
  9454. #u31796_text {
  9455. border-width:0px;
  9456. white-space:nowrap;
  9457. text-transform:none;
  9458. }
  9459. #u31797_img {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:0px;
  9463. top:0px;
  9464. width:7px;
  9465. height:4px;
  9466. }
  9467. #u31797 {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:3157px;
  9471. top:432px;
  9472. width:7px;
  9473. height:4px;
  9474. display:flex;
  9475. -webkit-transform:rotate(270deg);
  9476. -moz-transform:rotate(270deg);
  9477. -ms-transform:rotate(270deg);
  9478. transform:rotate(270deg);
  9479. }
  9480. #u31797 .text {
  9481. position:absolute;
  9482. align-self:center;
  9483. padding:2px 2px 2px 2px;
  9484. box-sizing:border-box;
  9485. width:100%;
  9486. }
  9487. #u31797_text {
  9488. border-width:0px;
  9489. word-wrap:break-word;
  9490. text-transform:none;
  9491. visibility:hidden;
  9492. }
  9493. #u31798_img {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:0px;
  9497. top:0px;
  9498. width:7px;
  9499. height:4px;
  9500. }
  9501. #u31798 {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:3157px;
  9505. top:276px;
  9506. width:7px;
  9507. height:4px;
  9508. display:flex;
  9509. }
  9510. #u31798 .text {
  9511. position:absolute;
  9512. align-self:center;
  9513. padding:2px 2px 2px 2px;
  9514. box-sizing:border-box;
  9515. width:100%;
  9516. }
  9517. #u31798_text {
  9518. border-width:0px;
  9519. word-wrap:break-word;
  9520. text-transform:none;
  9521. visibility:hidden;
  9522. }
  9523. #u31799_img {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:0px;
  9527. top:0px;
  9528. width:7px;
  9529. height:4px;
  9530. }
  9531. #u31799 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:3169px;
  9535. top:303px;
  9536. width:7px;
  9537. height:4px;
  9538. display:flex;
  9539. -webkit-transform:rotate(270deg);
  9540. -moz-transform:rotate(270deg);
  9541. -ms-transform:rotate(270deg);
  9542. transform:rotate(270deg);
  9543. }
  9544. #u31799 .text {
  9545. position:absolute;
  9546. align-self:center;
  9547. padding:2px 2px 2px 2px;
  9548. box-sizing:border-box;
  9549. width:100%;
  9550. }
  9551. #u31799_text {
  9552. border-width:0px;
  9553. word-wrap:break-word;
  9554. text-transform:none;
  9555. visibility:hidden;
  9556. }
  9557. #u31800_div {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:61px;
  9563. height:51px;
  9564. background:inherit;
  9565. background-color:rgba(255, 255, 255, 0);
  9566. border:none;
  9567. border-radius:0px;
  9568. -moz-box-shadow:none;
  9569. -webkit-box-shadow:none;
  9570. box-shadow:none;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. font-size:12px;
  9575. }
  9576. #u31800 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:3192px;
  9580. top:313px;
  9581. width:61px;
  9582. height:51px;
  9583. display:flex;
  9584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9585. font-weight:400;
  9586. font-style:normal;
  9587. font-size:12px;
  9588. }
  9589. #u31800 .text {
  9590. position:absolute;
  9591. align-self:flex-start;
  9592. padding:0px 0px 0px 0px;
  9593. box-sizing:border-box;
  9594. width:100%;
  9595. }
  9596. #u31800_text {
  9597. border-width:0px;
  9598. white-space:nowrap;
  9599. text-transform:none;
  9600. }
  9601. #u31801 {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:0px;
  9605. top:0px;
  9606. width:0px;
  9607. height:0px;
  9608. }
  9609. #u31802_img {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:0px;
  9613. top:0px;
  9614. width:7px;
  9615. height:4px;
  9616. }
  9617. #u31802 {
  9618. border-width:0px;
  9619. position:absolute;
  9620. left:3169px;
  9621. top:378px;
  9622. width:7px;
  9623. height:4px;
  9624. display:flex;
  9625. -webkit-transform:rotate(270deg);
  9626. -moz-transform:rotate(270deg);
  9627. -ms-transform:rotate(270deg);
  9628. transform:rotate(270deg);
  9629. }
  9630. #u31802 .text {
  9631. position:absolute;
  9632. align-self:center;
  9633. padding:2px 2px 2px 2px;
  9634. box-sizing:border-box;
  9635. width:100%;
  9636. }
  9637. #u31802_text {
  9638. border-width:0px;
  9639. word-wrap:break-word;
  9640. text-transform:none;
  9641. visibility:hidden;
  9642. }
  9643. #u31803_div {
  9644. border-width:0px;
  9645. position:absolute;
  9646. left:0px;
  9647. top:0px;
  9648. width:54px;
  9649. height:17px;
  9650. background:inherit;
  9651. background-color:rgba(255, 255, 255, 0);
  9652. border:none;
  9653. border-radius:0px;
  9654. -moz-box-shadow:none;
  9655. -webkit-box-shadow:none;
  9656. box-shadow:none;
  9657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9658. font-weight:400;
  9659. font-style:normal;
  9660. font-size:12px;
  9661. color:#FFFFFF;
  9662. }
  9663. #u31803 {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:3178px;
  9667. top:371px;
  9668. width:54px;
  9669. height:17px;
  9670. display:flex;
  9671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9672. font-weight:400;
  9673. font-style:normal;
  9674. font-size:12px;
  9675. color:#FFFFFF;
  9676. }
  9677. #u31803 .text {
  9678. position:absolute;
  9679. align-self:flex-start;
  9680. padding:0px 0px 0px 0px;
  9681. box-sizing:border-box;
  9682. width:100%;
  9683. }
  9684. #u31803_text {
  9685. border-width:0px;
  9686. white-space:nowrap;
  9687. text-transform:none;
  9688. }
  9689. #u31804_div {
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:0px;
  9693. top:0px;
  9694. width:182px;
  9695. height:38px;
  9696. background:inherit;
  9697. background-color:rgba(245, 154, 35, 0);
  9698. border:none;
  9699. border-left:0px;
  9700. border-top:0px;
  9701. border-right:0px;
  9702. border-radius:0px;
  9703. border-bottom-right-radius:0px;
  9704. border-bottom-left-radius:0px;
  9705. -moz-box-shadow:none;
  9706. -webkit-box-shadow:none;
  9707. box-shadow:none;
  9708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9709. font-weight:400;
  9710. font-style:normal;
  9711. font-size:12px;
  9712. color:#D9001B;
  9713. text-align:left;
  9714. }
  9715. #u31804 {
  9716. border-width:0px;
  9717. position:absolute;
  9718. left:2792px;
  9719. top:298px;
  9720. width:182px;
  9721. height:38px;
  9722. display:flex;
  9723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9724. font-weight:400;
  9725. font-style:normal;
  9726. font-size:12px;
  9727. color:#D9001B;
  9728. text-align:left;
  9729. }
  9730. #u31804 .text {
  9731. position:absolute;
  9732. align-self:flex-start;
  9733. padding:2px 2px 2px 2px;
  9734. box-sizing:border-box;
  9735. width:100%;
  9736. }
  9737. #u31804_text {
  9738. border-width:0px;
  9739. word-wrap:break-word;
  9740. text-transform:none;
  9741. }
  9742. #u31805 {
  9743. border-width:0px;
  9744. position:absolute;
  9745. left:2993px;
  9746. top:257px;
  9747. width:0px;
  9748. height:0px;
  9749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:12px;
  9753. color:#333333;
  9754. }
  9755. #u31805_seg0 {
  9756. border-width:0px;
  9757. position:absolute;
  9758. left:-5px;
  9759. top:0px;
  9760. width:10px;
  9761. height:65px;
  9762. }
  9763. #u31805_seg1 {
  9764. border-width:0px;
  9765. position:absolute;
  9766. left:-19px;
  9767. top:55px;
  9768. width:24px;
  9769. height:10px;
  9770. }
  9771. #u31805_seg2 {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:-27px;
  9775. top:51px;
  9776. width:18px;
  9777. height:18px;
  9778. }
  9779. #u31805_text {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:-50px;
  9783. top:32px;
  9784. width:100px;
  9785. word-wrap:break-word;
  9786. text-transform:none;
  9787. visibility:hidden;
  9788. }
  9789. #u31806_div {
  9790. border-width:0px;
  9791. position:absolute;
  9792. left:0px;
  9793. top:0px;
  9794. width:101px;
  9795. height:34px;
  9796. background:inherit;
  9797. background-color:rgba(255, 255, 255, 0);
  9798. border:none;
  9799. border-radius:0px;
  9800. -moz-box-shadow:none;
  9801. -webkit-box-shadow:none;
  9802. box-shadow:none;
  9803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9804. font-weight:400;
  9805. font-style:normal;
  9806. font-size:12px;
  9807. color:#FB2B2B;
  9808. text-align:left;
  9809. line-height:30px;
  9810. }
  9811. #u31806 {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:404px;
  9815. top:756px;
  9816. width:101px;
  9817. height:34px;
  9818. display:flex;
  9819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9820. font-weight:400;
  9821. font-style:normal;
  9822. font-size:12px;
  9823. color:#FB2B2B;
  9824. text-align:left;
  9825. line-height:30px;
  9826. }
  9827. #u31806 .text {
  9828. position:absolute;
  9829. align-self:center;
  9830. padding:2px 2px 2px 2px;
  9831. box-sizing:border-box;
  9832. width:100%;
  9833. }
  9834. #u31806_text {
  9835. border-width:0px;
  9836. white-space:nowrap;
  9837. text-transform:none;
  9838. }
  9839. #u31807 {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:0px;
  9843. top:0px;
  9844. width:0px;
  9845. height:0px;
  9846. }
  9847. #u31808_div {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:0px;
  9851. top:0px;
  9852. width:80px;
  9853. height:40px;
  9854. background:inherit;
  9855. background-color:rgba(245, 154, 35, 0.0980392156862745);
  9856. box-sizing:border-box;
  9857. border-width:1px;
  9858. border-style:solid;
  9859. border-color:rgba(245, 154, 35, 1);
  9860. border-radius:4px;
  9861. -moz-box-shadow:none;
  9862. -webkit-box-shadow:none;
  9863. box-shadow:none;
  9864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9865. font-weight:400;
  9866. font-style:normal;
  9867. font-size:14px;
  9868. color:#F59A23;
  9869. }
  9870. #u31808 {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:1310px;
  9874. top:87px;
  9875. width:80px;
  9876. height:40px;
  9877. display:flex;
  9878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9879. font-weight:400;
  9880. font-style:normal;
  9881. font-size:14px;
  9882. color:#F59A23;
  9883. }
  9884. #u31808 .text {
  9885. position:absolute;
  9886. align-self:center;
  9887. padding:2px 10px 2px 2px;
  9888. box-sizing:border-box;
  9889. width:100%;
  9890. }
  9891. #u31808_text {
  9892. border-width:0px;
  9893. word-wrap:break-word;
  9894. text-transform:none;
  9895. }
  9896. #u31809_img {
  9897. border-width:0px;
  9898. position:absolute;
  9899. left:0px;
  9900. top:0px;
  9901. width:7px;
  9902. height:4px;
  9903. }
  9904. #u31809 {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:1377px;
  9908. top:105px;
  9909. width:7px;
  9910. height:4px;
  9911. display:flex;
  9912. }
  9913. #u31809 .text {
  9914. position:absolute;
  9915. align-self:center;
  9916. padding:2px 2px 2px 2px;
  9917. box-sizing:border-box;
  9918. width:100%;
  9919. }
  9920. #u31809_text {
  9921. border-width:0px;
  9922. word-wrap:break-word;
  9923. text-transform:none;
  9924. visibility:hidden;
  9925. }
  9926. #u31810 {
  9927. border-width:0px;
  9928. position:absolute;
  9929. left:0px;
  9930. top:0px;
  9931. width:0px;
  9932. height:0px;
  9933. }
  9934. #u31811 {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:0px;
  9940. height:0px;
  9941. }
  9942. #u31812_div {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:57px;
  9948. height:20px;
  9949. background:inherit;
  9950. background-color:rgba(28, 33, 30, 1);
  9951. border:none;
  9952. border-radius:0px;
  9953. -moz-box-shadow:none;
  9954. -webkit-box-shadow:none;
  9955. box-shadow:none;
  9956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9957. font-weight:500;
  9958. font-style:normal;
  9959. font-size:14px;
  9960. color:#FFFFFF;
  9961. }
  9962. #u31812 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:1980px;
  9966. top:831px;
  9967. width:57px;
  9968. height:20px;
  9969. display:flex;
  9970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9971. font-weight:500;
  9972. font-style:normal;
  9973. font-size:14px;
  9974. color:#FFFFFF;
  9975. }
  9976. #u31812 .text {
  9977. position:absolute;
  9978. align-self:flex-start;
  9979. padding:0px 0px 0px 0px;
  9980. box-sizing:border-box;
  9981. width:100%;
  9982. }
  9983. #u31812_text {
  9984. border-width:0px;
  9985. white-space:nowrap;
  9986. text-transform:none;
  9987. }
  9988. #u31813_img {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:0px;
  9992. top:0px;
  9993. width:33px;
  9994. height:39px;
  9995. }
  9996. #u31813 {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:1992px;
  10000. top:790px;
  10001. width:33px;
  10002. height:39px;
  10003. display:flex;
  10004. color:#FFFFFF;
  10005. }
  10006. #u31813 .text {
  10007. position:absolute;
  10008. align-self:center;
  10009. padding:2px 2px 2px 2px;
  10010. box-sizing:border-box;
  10011. width:100%;
  10012. }
  10013. #u31813_text {
  10014. border-width:0px;
  10015. word-wrap:break-word;
  10016. text-transform:none;
  10017. }
  10018. #u31814 {
  10019. border-width:0px;
  10020. position:absolute;
  10021. left:0px;
  10022. top:0px;
  10023. width:0px;
  10024. height:0px;
  10025. }
  10026. #u31815_div {
  10027. border-width:0px;
  10028. position:absolute;
  10029. left:0px;
  10030. top:0px;
  10031. width:57px;
  10032. height:20px;
  10033. background:inherit;
  10034. background-color:rgba(28, 33, 30, 1);
  10035. border:none;
  10036. border-radius:0px;
  10037. -moz-box-shadow:none;
  10038. -webkit-box-shadow:none;
  10039. box-shadow:none;
  10040. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10041. font-weight:500;
  10042. font-style:normal;
  10043. font-size:14px;
  10044. color:#FFFFFF;
  10045. }
  10046. #u31815 {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:2056px;
  10050. top:831px;
  10051. width:57px;
  10052. height:20px;
  10053. display:flex;
  10054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10055. font-weight:500;
  10056. font-style:normal;
  10057. font-size:14px;
  10058. color:#FFFFFF;
  10059. }
  10060. #u31815 .text {
  10061. position:absolute;
  10062. align-self:flex-start;
  10063. padding:0px 0px 0px 0px;
  10064. box-sizing:border-box;
  10065. width:100%;
  10066. }
  10067. #u31815_text {
  10068. border-width:0px;
  10069. white-space:nowrap;
  10070. text-transform:none;
  10071. }
  10072. #u31816_img {
  10073. border-width:0px;
  10074. position:absolute;
  10075. left:0px;
  10076. top:0px;
  10077. width:33px;
  10078. height:39px;
  10079. }
  10080. #u31816 {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:2068px;
  10084. top:790px;
  10085. width:33px;
  10086. height:39px;
  10087. display:flex;
  10088. color:#FFFFFF;
  10089. }
  10090. #u31816 .text {
  10091. position:absolute;
  10092. align-self:center;
  10093. padding:2px 2px 2px 2px;
  10094. box-sizing:border-box;
  10095. width:100%;
  10096. }
  10097. #u31816_text {
  10098. border-width:0px;
  10099. word-wrap:break-word;
  10100. text-transform:none;
  10101. }
  10102. #u31817 {
  10103. border-width:0px;
  10104. position:absolute;
  10105. left:0px;
  10106. top:0px;
  10107. width:0px;
  10108. height:0px;
  10109. }
  10110. #u31818_div {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:57px;
  10116. height:20px;
  10117. background:inherit;
  10118. background-color:rgba(28, 33, 30, 1);
  10119. border:none;
  10120. border-radius:0px;
  10121. -moz-box-shadow:none;
  10122. -webkit-box-shadow:none;
  10123. box-shadow:none;
  10124. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10125. font-weight:500;
  10126. font-style:normal;
  10127. font-size:14px;
  10128. color:#FFFFFF;
  10129. }
  10130. #u31818 {
  10131. border-width:0px;
  10132. position:absolute;
  10133. left:1906px;
  10134. top:831px;
  10135. width:57px;
  10136. height:20px;
  10137. display:flex;
  10138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10139. font-weight:500;
  10140. font-style:normal;
  10141. font-size:14px;
  10142. color:#FFFFFF;
  10143. }
  10144. #u31818 .text {
  10145. position:absolute;
  10146. align-self:flex-start;
  10147. padding:0px 0px 0px 0px;
  10148. box-sizing:border-box;
  10149. width:100%;
  10150. }
  10151. #u31818_text {
  10152. border-width:0px;
  10153. white-space:nowrap;
  10154. text-transform:none;
  10155. }
  10156. #u31819_img {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:0px;
  10160. top:0px;
  10161. width:33px;
  10162. height:39px;
  10163. }
  10164. #u31819 {
  10165. border-width:0px;
  10166. position:absolute;
  10167. left:1918px;
  10168. top:790px;
  10169. width:33px;
  10170. height:39px;
  10171. display:flex;
  10172. color:#FFFFFF;
  10173. }
  10174. #u31819 .text {
  10175. position:absolute;
  10176. align-self:center;
  10177. padding:2px 2px 2px 2px;
  10178. box-sizing:border-box;
  10179. width:100%;
  10180. }
  10181. #u31819_text {
  10182. border-width:0px;
  10183. word-wrap:break-word;
  10184. text-transform:none;
  10185. }
  10186. #u31820_div {
  10187. border-width:0px;
  10188. position:absolute;
  10189. left:0px;
  10190. top:0px;
  10191. width:59px;
  10192. height:20px;
  10193. background:inherit;
  10194. background-color:rgba(28, 33, 30, 1);
  10195. border:none;
  10196. border-radius:0px;
  10197. -moz-box-shadow:none;
  10198. -webkit-box-shadow:none;
  10199. box-shadow:none;
  10200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10201. font-weight:500;
  10202. font-style:normal;
  10203. font-size:14px;
  10204. color:#F59A23;
  10205. }
  10206. #u31820 {
  10207. border-width:0px;
  10208. position:absolute;
  10209. left:1906px;
  10210. top:831px;
  10211. width:59px;
  10212. height:20px;
  10213. display:flex;
  10214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10215. font-weight:500;
  10216. font-style:normal;
  10217. font-size:14px;
  10218. color:#F59A23;
  10219. }
  10220. #u31820 .text {
  10221. position:absolute;
  10222. align-self:flex-start;
  10223. padding:0px 0px 0px 0px;
  10224. box-sizing:border-box;
  10225. width:100%;
  10226. }
  10227. #u31820_text {
  10228. border-width:0px;
  10229. word-wrap:break-word;
  10230. text-transform:none;
  10231. }
  10232. #u31821 {
  10233. border-width:0px;
  10234. position:absolute;
  10235. left:0px;
  10236. top:0px;
  10237. width:0px;
  10238. height:0px;
  10239. }
  10240. #u31822_div {
  10241. border-width:0px;
  10242. position:absolute;
  10243. left:0px;
  10244. top:0px;
  10245. width:57px;
  10246. height:20px;
  10247. background:inherit;
  10248. background-color:rgba(28, 33, 30, 1);
  10249. border:none;
  10250. border-radius:0px;
  10251. -moz-box-shadow:none;
  10252. -webkit-box-shadow:none;
  10253. box-shadow:none;
  10254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10255. font-weight:500;
  10256. font-style:normal;
  10257. font-size:14px;
  10258. color:#FFFFFF;
  10259. }
  10260. #u31822 {
  10261. border-width:0px;
  10262. position:absolute;
  10263. left:2134px;
  10264. top:831px;
  10265. width:57px;
  10266. height:20px;
  10267. display:flex;
  10268. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10269. font-weight:500;
  10270. font-style:normal;
  10271. font-size:14px;
  10272. color:#FFFFFF;
  10273. }
  10274. #u31822 .text {
  10275. position:absolute;
  10276. align-self:flex-start;
  10277. padding:0px 0px 0px 0px;
  10278. box-sizing:border-box;
  10279. width:100%;
  10280. }
  10281. #u31822_text {
  10282. border-width:0px;
  10283. white-space:nowrap;
  10284. text-transform:none;
  10285. }
  10286. #u31823_img {
  10287. border-width:0px;
  10288. position:absolute;
  10289. left:0px;
  10290. top:0px;
  10291. width:33px;
  10292. height:39px;
  10293. }
  10294. #u31823 {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:2146px;
  10298. top:790px;
  10299. width:33px;
  10300. height:39px;
  10301. display:flex;
  10302. color:#FFFFFF;
  10303. }
  10304. #u31823 .text {
  10305. position:absolute;
  10306. align-self:center;
  10307. padding:2px 2px 2px 2px;
  10308. box-sizing:border-box;
  10309. width:100%;
  10310. }
  10311. #u31823_text {
  10312. border-width:0px;
  10313. word-wrap:break-word;
  10314. text-transform:none;
  10315. }
  10316. #u31824 {
  10317. border-width:0px;
  10318. position:absolute;
  10319. left:0px;
  10320. top:0px;
  10321. width:0px;
  10322. height:0px;
  10323. }
  10324. #u31825_div {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:57px;
  10330. height:20px;
  10331. background:inherit;
  10332. background-color:rgba(28, 33, 30, 1);
  10333. border:none;
  10334. border-radius:0px;
  10335. -moz-box-shadow:none;
  10336. -webkit-box-shadow:none;
  10337. box-shadow:none;
  10338. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10339. font-weight:500;
  10340. font-style:normal;
  10341. font-size:14px;
  10342. color:#FFFFFF;
  10343. }
  10344. #u31825 {
  10345. border-width:0px;
  10346. position:absolute;
  10347. left:2282px;
  10348. top:831px;
  10349. width:57px;
  10350. height:20px;
  10351. display:flex;
  10352. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10353. font-weight:500;
  10354. font-style:normal;
  10355. font-size:14px;
  10356. color:#FFFFFF;
  10357. }
  10358. #u31825 .text {
  10359. position:absolute;
  10360. align-self:flex-start;
  10361. padding:0px 0px 0px 0px;
  10362. box-sizing:border-box;
  10363. width:100%;
  10364. }
  10365. #u31825_text {
  10366. border-width:0px;
  10367. white-space:nowrap;
  10368. text-transform:none;
  10369. }
  10370. #u31826_img {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:0px;
  10374. top:0px;
  10375. width:33px;
  10376. height:39px;
  10377. }
  10378. #u31826 {
  10379. border-width:0px;
  10380. position:absolute;
  10381. left:2294px;
  10382. top:790px;
  10383. width:33px;
  10384. height:39px;
  10385. display:flex;
  10386. color:#FFFFFF;
  10387. }
  10388. #u31826 .text {
  10389. position:absolute;
  10390. align-self:center;
  10391. padding:2px 2px 2px 2px;
  10392. box-sizing:border-box;
  10393. width:100%;
  10394. }
  10395. #u31826_text {
  10396. border-width:0px;
  10397. word-wrap:break-word;
  10398. text-transform:none;
  10399. }
  10400. #u31827 {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:0px;
  10404. top:0px;
  10405. width:0px;
  10406. height:0px;
  10407. }
  10408. #u31828_div {
  10409. border-width:0px;
  10410. position:absolute;
  10411. left:0px;
  10412. top:0px;
  10413. width:57px;
  10414. height:20px;
  10415. background:inherit;
  10416. background-color:rgba(28, 33, 30, 1);
  10417. border:none;
  10418. border-radius:0px;
  10419. -moz-box-shadow:none;
  10420. -webkit-box-shadow:none;
  10421. box-shadow:none;
  10422. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10423. font-weight:500;
  10424. font-style:normal;
  10425. font-size:14px;
  10426. color:#FFFFFF;
  10427. }
  10428. #u31828 {
  10429. border-width:0px;
  10430. position:absolute;
  10431. left:2357px;
  10432. top:831px;
  10433. width:57px;
  10434. height:20px;
  10435. display:flex;
  10436. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10437. font-weight:500;
  10438. font-style:normal;
  10439. font-size:14px;
  10440. color:#FFFFFF;
  10441. }
  10442. #u31828 .text {
  10443. position:absolute;
  10444. align-self:flex-start;
  10445. padding:0px 0px 0px 0px;
  10446. box-sizing:border-box;
  10447. width:100%;
  10448. }
  10449. #u31828_text {
  10450. border-width:0px;
  10451. white-space:nowrap;
  10452. text-transform:none;
  10453. }
  10454. #u31829_img {
  10455. border-width:0px;
  10456. position:absolute;
  10457. left:0px;
  10458. top:0px;
  10459. width:33px;
  10460. height:39px;
  10461. }
  10462. #u31829 {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:2369px;
  10466. top:790px;
  10467. width:33px;
  10468. height:39px;
  10469. display:flex;
  10470. color:#FFFFFF;
  10471. }
  10472. #u31829 .text {
  10473. position:absolute;
  10474. align-self:center;
  10475. padding:2px 2px 2px 2px;
  10476. box-sizing:border-box;
  10477. width:100%;
  10478. }
  10479. #u31829_text {
  10480. border-width:0px;
  10481. word-wrap:break-word;
  10482. text-transform:none;
  10483. }
  10484. #u31830 {
  10485. border-width:0px;
  10486. position:absolute;
  10487. left:0px;
  10488. top:0px;
  10489. width:0px;
  10490. height:0px;
  10491. }
  10492. #u31831_div {
  10493. border-width:0px;
  10494. position:absolute;
  10495. left:0px;
  10496. top:0px;
  10497. width:59px;
  10498. height:20px;
  10499. background:inherit;
  10500. background-color:rgba(28, 33, 30, 1);
  10501. border:none;
  10502. border-radius:0px;
  10503. -moz-box-shadow:none;
  10504. -webkit-box-shadow:none;
  10505. box-shadow:none;
  10506. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10507. font-weight:500;
  10508. font-style:normal;
  10509. font-size:14px;
  10510. color:#FFFFFF;
  10511. }
  10512. #u31831 {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:2209px;
  10516. top:831px;
  10517. width:59px;
  10518. height:20px;
  10519. display:flex;
  10520. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10521. font-weight:500;
  10522. font-style:normal;
  10523. font-size:14px;
  10524. color:#FFFFFF;
  10525. }
  10526. #u31831 .text {
  10527. position:absolute;
  10528. align-self:flex-start;
  10529. padding:0px 0px 0px 0px;
  10530. box-sizing:border-box;
  10531. width:100%;
  10532. }
  10533. #u31831_text {
  10534. border-width:0px;
  10535. word-wrap:break-word;
  10536. text-transform:none;
  10537. }
  10538. #u31832_img {
  10539. border-width:0px;
  10540. position:absolute;
  10541. left:0px;
  10542. top:0px;
  10543. width:33px;
  10544. height:39px;
  10545. }
  10546. #u31832 {
  10547. border-width:0px;
  10548. position:absolute;
  10549. left:2220px;
  10550. top:790px;
  10551. width:33px;
  10552. height:39px;
  10553. display:flex;
  10554. color:#FFFFFF;
  10555. }
  10556. #u31832 .text {
  10557. position:absolute;
  10558. align-self:center;
  10559. padding:2px 2px 2px 2px;
  10560. box-sizing:border-box;
  10561. width:100%;
  10562. }
  10563. #u31832_text {
  10564. border-width:0px;
  10565. word-wrap:break-word;
  10566. text-transform:none;
  10567. }
  10568. #u31833 {
  10569. border-width:0px;
  10570. position:absolute;
  10571. left:0px;
  10572. top:0px;
  10573. width:0px;
  10574. height:0px;
  10575. }
  10576. #u31834_div {
  10577. border-width:0px;
  10578. position:absolute;
  10579. left:0px;
  10580. top:0px;
  10581. width:71px;
  10582. height:20px;
  10583. background:inherit;
  10584. background-color:rgba(28, 33, 30, 1);
  10585. border:none;
  10586. border-radius:0px;
  10587. -moz-box-shadow:none;
  10588. -webkit-box-shadow:none;
  10589. box-shadow:none;
  10590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10591. font-weight:500;
  10592. font-style:normal;
  10593. font-size:14px;
  10594. color:#FFFFFF;
  10595. }
  10596. #u31834 {
  10597. border-width:0px;
  10598. position:absolute;
  10599. left:2425px;
  10600. top:831px;
  10601. width:71px;
  10602. height:20px;
  10603. display:flex;
  10604. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10605. font-weight:500;
  10606. font-style:normal;
  10607. font-size:14px;
  10608. color:#FFFFFF;
  10609. }
  10610. #u31834 .text {
  10611. position:absolute;
  10612. align-self:flex-start;
  10613. padding:0px 0px 0px 0px;
  10614. box-sizing:border-box;
  10615. width:100%;
  10616. }
  10617. #u31834_text {
  10618. border-width:0px;
  10619. white-space:nowrap;
  10620. text-transform:none;
  10621. }
  10622. #u31835_img {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:33px;
  10628. height:39px;
  10629. }
  10630. #u31835 {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:2443px;
  10634. top:790px;
  10635. width:33px;
  10636. height:39px;
  10637. display:flex;
  10638. color:#FFFFFF;
  10639. }
  10640. #u31835 .text {
  10641. position:absolute;
  10642. align-self:center;
  10643. padding:2px 2px 2px 2px;
  10644. box-sizing:border-box;
  10645. width:100%;
  10646. }
  10647. #u31835_text {
  10648. border-width:0px;
  10649. word-wrap:break-word;
  10650. text-transform:none;
  10651. }
  10652. #u31836 {
  10653. border-width:0px;
  10654. position:absolute;
  10655. left:0px;
  10656. top:0px;
  10657. width:0px;
  10658. height:0px;
  10659. }
  10660. #u31837_div {
  10661. border-width:0px;
  10662. position:absolute;
  10663. left:0px;
  10664. top:0px;
  10665. width:68px;
  10666. height:20px;
  10667. background:inherit;
  10668. background-color:rgba(28, 33, 30, 1);
  10669. border:none;
  10670. border-radius:0px;
  10671. -moz-box-shadow:none;
  10672. -webkit-box-shadow:none;
  10673. box-shadow:none;
  10674. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10675. font-weight:500;
  10676. font-style:normal;
  10677. font-size:14px;
  10678. color:#FFFFFF;
  10679. text-align:center;
  10680. }
  10681. #u31837 {
  10682. border-width:0px;
  10683. position:absolute;
  10684. left:2502px;
  10685. top:831px;
  10686. width:68px;
  10687. height:20px;
  10688. display:flex;
  10689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10690. font-weight:500;
  10691. font-style:normal;
  10692. font-size:14px;
  10693. color:#FFFFFF;
  10694. text-align:center;
  10695. }
  10696. #u31837 .text {
  10697. position:absolute;
  10698. align-self:flex-start;
  10699. padding:0px 0px 0px 0px;
  10700. box-sizing:border-box;
  10701. width:100%;
  10702. }
  10703. #u31837_text {
  10704. border-width:0px;
  10705. word-wrap:break-word;
  10706. text-transform:none;
  10707. }
  10708. #u31838_img {
  10709. border-width:0px;
  10710. position:absolute;
  10711. left:0px;
  10712. top:0px;
  10713. width:33px;
  10714. height:39px;
  10715. }
  10716. #u31838 {
  10717. border-width:0px;
  10718. position:absolute;
  10719. left:2516px;
  10720. top:790px;
  10721. width:33px;
  10722. height:39px;
  10723. display:flex;
  10724. color:#FFFFFF;
  10725. }
  10726. #u31838 .text {
  10727. position:absolute;
  10728. align-self:center;
  10729. padding:2px 2px 2px 2px;
  10730. box-sizing:border-box;
  10731. width:100%;
  10732. }
  10733. #u31838_text {
  10734. border-width:0px;
  10735. word-wrap:break-word;
  10736. text-transform:none;
  10737. }
  10738. #u31839 {
  10739. border-width:0px;
  10740. position:absolute;
  10741. left:0px;
  10742. top:0px;
  10743. width:0px;
  10744. height:0px;
  10745. }
  10746. #u31840_div {
  10747. border-width:0px;
  10748. position:absolute;
  10749. left:0px;
  10750. top:0px;
  10751. width:60px;
  10752. height:20px;
  10753. background:inherit;
  10754. background-color:rgba(28, 33, 30, 1);
  10755. border:none;
  10756. border-radius:0px;
  10757. -moz-box-shadow:none;
  10758. -webkit-box-shadow:none;
  10759. box-shadow:none;
  10760. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10761. font-weight:500;
  10762. font-style:normal;
  10763. font-size:14px;
  10764. color:#FFFFFF;
  10765. }
  10766. #u31840 {
  10767. border-width:0px;
  10768. position:absolute;
  10769. left:2579px;
  10770. top:831px;
  10771. width:60px;
  10772. height:20px;
  10773. display:flex;
  10774. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10775. font-weight:500;
  10776. font-style:normal;
  10777. font-size:14px;
  10778. color:#FFFFFF;
  10779. }
  10780. #u31840 .text {
  10781. position:absolute;
  10782. align-self:flex-start;
  10783. padding:0px 0px 0px 0px;
  10784. box-sizing:border-box;
  10785. width:100%;
  10786. }
  10787. #u31840_text {
  10788. border-width:0px;
  10789. word-wrap:break-word;
  10790. text-transform:none;
  10791. }
  10792. #u31841_img {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:0px;
  10796. top:0px;
  10797. width:33px;
  10798. height:39px;
  10799. }
  10800. #u31841 {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:2591px;
  10804. top:790px;
  10805. width:33px;
  10806. height:39px;
  10807. display:flex;
  10808. color:#FFFFFF;
  10809. }
  10810. #u31841 .text {
  10811. position:absolute;
  10812. align-self:center;
  10813. padding:2px 2px 2px 2px;
  10814. box-sizing:border-box;
  10815. width:100%;
  10816. }
  10817. #u31841_text {
  10818. border-width:0px;
  10819. word-wrap:break-word;
  10820. text-transform:none;
  10821. }
  10822. #u31842 {
  10823. border-width:0px;
  10824. position:absolute;
  10825. left:0px;
  10826. top:0px;
  10827. width:0px;
  10828. height:0px;
  10829. }
  10830. #u31843_div {
  10831. border-width:0px;
  10832. position:absolute;
  10833. left:0px;
  10834. top:0px;
  10835. width:60px;
  10836. height:20px;
  10837. background:inherit;
  10838. background-color:rgba(28, 33, 30, 1);
  10839. border:none;
  10840. border-radius:0px;
  10841. -moz-box-shadow:none;
  10842. -webkit-box-shadow:none;
  10843. box-shadow:none;
  10844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10845. font-weight:500;
  10846. font-style:normal;
  10847. font-size:14px;
  10848. color:#FFFFFF;
  10849. }
  10850. #u31843 {
  10851. border-width:0px;
  10852. position:absolute;
  10853. left:2652px;
  10854. top:831px;
  10855. width:60px;
  10856. height:20px;
  10857. display:flex;
  10858. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10859. font-weight:500;
  10860. font-style:normal;
  10861. font-size:14px;
  10862. color:#FFFFFF;
  10863. }
  10864. #u31843 .text {
  10865. position:absolute;
  10866. align-self:flex-start;
  10867. padding:0px 0px 0px 0px;
  10868. box-sizing:border-box;
  10869. width:100%;
  10870. }
  10871. #u31843_text {
  10872. border-width:0px;
  10873. word-wrap:break-word;
  10874. text-transform:none;
  10875. }
  10876. #u31844_img {
  10877. border-width:0px;
  10878. position:absolute;
  10879. left:0px;
  10880. top:0px;
  10881. width:33px;
  10882. height:39px;
  10883. }
  10884. #u31844 {
  10885. border-width:0px;
  10886. position:absolute;
  10887. left:2665px;
  10888. top:790px;
  10889. width:33px;
  10890. height:39px;
  10891. display:flex;
  10892. color:#FFFFFF;
  10893. }
  10894. #u31844 .text {
  10895. position:absolute;
  10896. align-self:center;
  10897. padding:2px 2px 2px 2px;
  10898. box-sizing:border-box;
  10899. width:100%;
  10900. }
  10901. #u31844_text {
  10902. border-width:0px;
  10903. word-wrap:break-word;
  10904. text-transform:none;
  10905. }
  10906. #u31845 {
  10907. border-width:0px;
  10908. position:absolute;
  10909. left:0px;
  10910. top:0px;
  10911. width:0px;
  10912. height:0px;
  10913. }
  10914. #u31846 {
  10915. border-width:0px;
  10916. position:absolute;
  10917. left:0px;
  10918. top:0px;
  10919. width:0px;
  10920. height:0px;
  10921. }
  10922. #u31847_div {
  10923. border-width:0px;
  10924. position:absolute;
  10925. left:0px;
  10926. top:0px;
  10927. width:57px;
  10928. height:20px;
  10929. background:inherit;
  10930. background-color:rgba(28, 33, 30, 1);
  10931. border:none;
  10932. border-radius:0px;
  10933. -moz-box-shadow:none;
  10934. -webkit-box-shadow:none;
  10935. box-shadow:none;
  10936. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10937. font-weight:500;
  10938. font-style:normal;
  10939. font-size:14px;
  10940. color:#FFFFFF;
  10941. }
  10942. #u31847 {
  10943. border-width:0px;
  10944. position:absolute;
  10945. left:3540px;
  10946. top:831px;
  10947. width:57px;
  10948. height:20px;
  10949. display:flex;
  10950. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10951. font-weight:500;
  10952. font-style:normal;
  10953. font-size:14px;
  10954. color:#FFFFFF;
  10955. }
  10956. #u31847 .text {
  10957. position:absolute;
  10958. align-self:flex-start;
  10959. padding:0px 0px 0px 0px;
  10960. box-sizing:border-box;
  10961. width:100%;
  10962. }
  10963. #u31847_text {
  10964. border-width:0px;
  10965. white-space:nowrap;
  10966. text-transform:none;
  10967. }
  10968. #u31848_img {
  10969. border-width:0px;
  10970. position:absolute;
  10971. left:0px;
  10972. top:0px;
  10973. width:33px;
  10974. height:39px;
  10975. }
  10976. #u31848 {
  10977. border-width:0px;
  10978. position:absolute;
  10979. left:3552px;
  10980. top:790px;
  10981. width:33px;
  10982. height:39px;
  10983. display:flex;
  10984. color:#FFFFFF;
  10985. }
  10986. #u31848 .text {
  10987. position:absolute;
  10988. align-self:center;
  10989. padding:2px 2px 2px 2px;
  10990. box-sizing:border-box;
  10991. width:100%;
  10992. }
  10993. #u31848_text {
  10994. border-width:0px;
  10995. word-wrap:break-word;
  10996. text-transform:none;
  10997. }
  10998. #u31849 {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:0px;
  11002. top:0px;
  11003. width:0px;
  11004. height:0px;
  11005. }
  11006. #u31850_div {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:0px;
  11010. top:0px;
  11011. width:57px;
  11012. height:20px;
  11013. background:inherit;
  11014. background-color:rgba(28, 33, 30, 1);
  11015. border:none;
  11016. border-radius:0px;
  11017. -moz-box-shadow:none;
  11018. -webkit-box-shadow:none;
  11019. box-shadow:none;
  11020. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11021. font-weight:500;
  11022. font-style:normal;
  11023. font-size:14px;
  11024. color:#FFFFFF;
  11025. }
  11026. #u31850 {
  11027. border-width:0px;
  11028. position:absolute;
  11029. left:3616px;
  11030. top:831px;
  11031. width:57px;
  11032. height:20px;
  11033. display:flex;
  11034. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11035. font-weight:500;
  11036. font-style:normal;
  11037. font-size:14px;
  11038. color:#FFFFFF;
  11039. }
  11040. #u31850 .text {
  11041. position:absolute;
  11042. align-self:flex-start;
  11043. padding:0px 0px 0px 0px;
  11044. box-sizing:border-box;
  11045. width:100%;
  11046. }
  11047. #u31850_text {
  11048. border-width:0px;
  11049. white-space:nowrap;
  11050. text-transform:none;
  11051. }
  11052. #u31851_img {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:0px;
  11056. top:0px;
  11057. width:33px;
  11058. height:39px;
  11059. }
  11060. #u31851 {
  11061. border-width:0px;
  11062. position:absolute;
  11063. left:3628px;
  11064. top:790px;
  11065. width:33px;
  11066. height:39px;
  11067. display:flex;
  11068. color:#FFFFFF;
  11069. }
  11070. #u31851 .text {
  11071. position:absolute;
  11072. align-self:center;
  11073. padding:2px 2px 2px 2px;
  11074. box-sizing:border-box;
  11075. width:100%;
  11076. }
  11077. #u31851_text {
  11078. border-width:0px;
  11079. word-wrap:break-word;
  11080. text-transform:none;
  11081. }
  11082. #u31852 {
  11083. border-width:0px;
  11084. position:absolute;
  11085. left:0px;
  11086. top:0px;
  11087. width:0px;
  11088. height:0px;
  11089. }
  11090. #u31853_div {
  11091. border-width:0px;
  11092. position:absolute;
  11093. left:0px;
  11094. top:0px;
  11095. width:57px;
  11096. height:20px;
  11097. background:inherit;
  11098. background-color:rgba(28, 33, 30, 1);
  11099. border:none;
  11100. border-radius:0px;
  11101. -moz-box-shadow:none;
  11102. -webkit-box-shadow:none;
  11103. box-shadow:none;
  11104. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11105. font-weight:500;
  11106. font-style:normal;
  11107. font-size:14px;
  11108. color:#FFFFFF;
  11109. }
  11110. #u31853 {
  11111. border-width:0px;
  11112. position:absolute;
  11113. left:3466px;
  11114. top:831px;
  11115. width:57px;
  11116. height:20px;
  11117. display:flex;
  11118. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11119. font-weight:500;
  11120. font-style:normal;
  11121. font-size:14px;
  11122. color:#FFFFFF;
  11123. }
  11124. #u31853 .text {
  11125. position:absolute;
  11126. align-self:flex-start;
  11127. padding:0px 0px 0px 0px;
  11128. box-sizing:border-box;
  11129. width:100%;
  11130. }
  11131. #u31853_text {
  11132. border-width:0px;
  11133. white-space:nowrap;
  11134. text-transform:none;
  11135. }
  11136. #u31854_img {
  11137. border-width:0px;
  11138. position:absolute;
  11139. left:0px;
  11140. top:0px;
  11141. width:33px;
  11142. height:39px;
  11143. }
  11144. #u31854 {
  11145. border-width:0px;
  11146. position:absolute;
  11147. left:3478px;
  11148. top:790px;
  11149. width:33px;
  11150. height:39px;
  11151. display:flex;
  11152. color:#FFFFFF;
  11153. }
  11154. #u31854 .text {
  11155. position:absolute;
  11156. align-self:center;
  11157. padding:2px 2px 2px 2px;
  11158. box-sizing:border-box;
  11159. width:100%;
  11160. }
  11161. #u31854_text {
  11162. border-width:0px;
  11163. word-wrap:break-word;
  11164. text-transform:none;
  11165. }
  11166. #u31855_div {
  11167. border-width:0px;
  11168. position:absolute;
  11169. left:0px;
  11170. top:0px;
  11171. width:59px;
  11172. height:20px;
  11173. background:inherit;
  11174. background-color:rgba(28, 33, 30, 1);
  11175. border:none;
  11176. border-radius:0px;
  11177. -moz-box-shadow:none;
  11178. -webkit-box-shadow:none;
  11179. box-shadow:none;
  11180. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11181. font-weight:500;
  11182. font-style:normal;
  11183. font-size:14px;
  11184. color:#F59A23;
  11185. }
  11186. #u31855 {
  11187. border-width:0px;
  11188. position:absolute;
  11189. left:3466px;
  11190. top:831px;
  11191. width:59px;
  11192. height:20px;
  11193. display:flex;
  11194. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11195. font-weight:500;
  11196. font-style:normal;
  11197. font-size:14px;
  11198. color:#F59A23;
  11199. }
  11200. #u31855 .text {
  11201. position:absolute;
  11202. align-self:flex-start;
  11203. padding:0px 0px 0px 0px;
  11204. box-sizing:border-box;
  11205. width:100%;
  11206. }
  11207. #u31855_text {
  11208. border-width:0px;
  11209. word-wrap:break-word;
  11210. text-transform:none;
  11211. }
  11212. #u31856 {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:0px;
  11216. top:0px;
  11217. width:0px;
  11218. height:0px;
  11219. }
  11220. #u31857_div {
  11221. border-width:0px;
  11222. position:absolute;
  11223. left:0px;
  11224. top:0px;
  11225. width:57px;
  11226. height:20px;
  11227. background:inherit;
  11228. background-color:rgba(28, 33, 30, 1);
  11229. border:none;
  11230. border-radius:0px;
  11231. -moz-box-shadow:none;
  11232. -webkit-box-shadow:none;
  11233. box-shadow:none;
  11234. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11235. font-weight:500;
  11236. font-style:normal;
  11237. font-size:14px;
  11238. color:#FFFFFF;
  11239. }
  11240. #u31857 {
  11241. border-width:0px;
  11242. position:absolute;
  11243. left:3694px;
  11244. top:831px;
  11245. width:57px;
  11246. height:20px;
  11247. display:flex;
  11248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11249. font-weight:500;
  11250. font-style:normal;
  11251. font-size:14px;
  11252. color:#FFFFFF;
  11253. }
  11254. #u31857 .text {
  11255. position:absolute;
  11256. align-self:flex-start;
  11257. padding:0px 0px 0px 0px;
  11258. box-sizing:border-box;
  11259. width:100%;
  11260. }
  11261. #u31857_text {
  11262. border-width:0px;
  11263. white-space:nowrap;
  11264. text-transform:none;
  11265. }
  11266. #u31858_img {
  11267. border-width:0px;
  11268. position:absolute;
  11269. left:0px;
  11270. top:0px;
  11271. width:33px;
  11272. height:39px;
  11273. }
  11274. #u31858 {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:3706px;
  11278. top:790px;
  11279. width:33px;
  11280. height:39px;
  11281. display:flex;
  11282. color:#FFFFFF;
  11283. }
  11284. #u31858 .text {
  11285. position:absolute;
  11286. align-self:center;
  11287. padding:2px 2px 2px 2px;
  11288. box-sizing:border-box;
  11289. width:100%;
  11290. }
  11291. #u31858_text {
  11292. border-width:0px;
  11293. word-wrap:break-word;
  11294. text-transform:none;
  11295. }
  11296. #u31859 {
  11297. border-width:0px;
  11298. position:absolute;
  11299. left:0px;
  11300. top:0px;
  11301. width:0px;
  11302. height:0px;
  11303. }
  11304. #u31860_div {
  11305. border-width:0px;
  11306. position:absolute;
  11307. left:0px;
  11308. top:0px;
  11309. width:57px;
  11310. height:20px;
  11311. background:inherit;
  11312. background-color:rgba(28, 33, 30, 1);
  11313. border:none;
  11314. border-radius:0px;
  11315. -moz-box-shadow:none;
  11316. -webkit-box-shadow:none;
  11317. box-shadow:none;
  11318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11319. font-weight:500;
  11320. font-style:normal;
  11321. font-size:14px;
  11322. color:#FFFFFF;
  11323. }
  11324. #u31860 {
  11325. border-width:0px;
  11326. position:absolute;
  11327. left:3842px;
  11328. top:831px;
  11329. width:57px;
  11330. height:20px;
  11331. display:flex;
  11332. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11333. font-weight:500;
  11334. font-style:normal;
  11335. font-size:14px;
  11336. color:#FFFFFF;
  11337. }
  11338. #u31860 .text {
  11339. position:absolute;
  11340. align-self:flex-start;
  11341. padding:0px 0px 0px 0px;
  11342. box-sizing:border-box;
  11343. width:100%;
  11344. }
  11345. #u31860_text {
  11346. border-width:0px;
  11347. white-space:nowrap;
  11348. text-transform:none;
  11349. }
  11350. #u31861_img {
  11351. border-width:0px;
  11352. position:absolute;
  11353. left:0px;
  11354. top:0px;
  11355. width:33px;
  11356. height:39px;
  11357. }
  11358. #u31861 {
  11359. border-width:0px;
  11360. position:absolute;
  11361. left:3854px;
  11362. top:790px;
  11363. width:33px;
  11364. height:39px;
  11365. display:flex;
  11366. color:#FFFFFF;
  11367. }
  11368. #u31861 .text {
  11369. position:absolute;
  11370. align-self:center;
  11371. padding:2px 2px 2px 2px;
  11372. box-sizing:border-box;
  11373. width:100%;
  11374. }
  11375. #u31861_text {
  11376. border-width:0px;
  11377. word-wrap:break-word;
  11378. text-transform:none;
  11379. }
  11380. #u31862 {
  11381. border-width:0px;
  11382. position:absolute;
  11383. left:0px;
  11384. top:0px;
  11385. width:0px;
  11386. height:0px;
  11387. }
  11388. #u31863_div {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:0px;
  11392. top:0px;
  11393. width:57px;
  11394. height:20px;
  11395. background:inherit;
  11396. background-color:rgba(28, 33, 30, 1);
  11397. border:none;
  11398. border-radius:0px;
  11399. -moz-box-shadow:none;
  11400. -webkit-box-shadow:none;
  11401. box-shadow:none;
  11402. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11403. font-weight:500;
  11404. font-style:normal;
  11405. font-size:14px;
  11406. color:#FFFFFF;
  11407. }
  11408. #u31863 {
  11409. border-width:0px;
  11410. position:absolute;
  11411. left:3917px;
  11412. top:831px;
  11413. width:57px;
  11414. height:20px;
  11415. display:flex;
  11416. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11417. font-weight:500;
  11418. font-style:normal;
  11419. font-size:14px;
  11420. color:#FFFFFF;
  11421. }
  11422. #u31863 .text {
  11423. position:absolute;
  11424. align-self:flex-start;
  11425. padding:0px 0px 0px 0px;
  11426. box-sizing:border-box;
  11427. width:100%;
  11428. }
  11429. #u31863_text {
  11430. border-width:0px;
  11431. white-space:nowrap;
  11432. text-transform:none;
  11433. }
  11434. #u31864_img {
  11435. border-width:0px;
  11436. position:absolute;
  11437. left:0px;
  11438. top:0px;
  11439. width:33px;
  11440. height:39px;
  11441. }
  11442. #u31864 {
  11443. border-width:0px;
  11444. position:absolute;
  11445. left:3929px;
  11446. top:790px;
  11447. width:33px;
  11448. height:39px;
  11449. display:flex;
  11450. color:#FFFFFF;
  11451. }
  11452. #u31864 .text {
  11453. position:absolute;
  11454. align-self:center;
  11455. padding:2px 2px 2px 2px;
  11456. box-sizing:border-box;
  11457. width:100%;
  11458. }
  11459. #u31864_text {
  11460. border-width:0px;
  11461. word-wrap:break-word;
  11462. text-transform:none;
  11463. }
  11464. #u31865 {
  11465. border-width:0px;
  11466. position:absolute;
  11467. left:0px;
  11468. top:0px;
  11469. width:0px;
  11470. height:0px;
  11471. }
  11472. #u31866_div {
  11473. border-width:0px;
  11474. position:absolute;
  11475. left:0px;
  11476. top:0px;
  11477. width:59px;
  11478. height:20px;
  11479. background:inherit;
  11480. background-color:rgba(28, 33, 30, 1);
  11481. border:none;
  11482. border-radius:0px;
  11483. -moz-box-shadow:none;
  11484. -webkit-box-shadow:none;
  11485. box-shadow:none;
  11486. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11487. font-weight:500;
  11488. font-style:normal;
  11489. font-size:14px;
  11490. color:#FFFFFF;
  11491. }
  11492. #u31866 {
  11493. border-width:0px;
  11494. position:absolute;
  11495. left:3769px;
  11496. top:831px;
  11497. width:59px;
  11498. height:20px;
  11499. display:flex;
  11500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11501. font-weight:500;
  11502. font-style:normal;
  11503. font-size:14px;
  11504. color:#FFFFFF;
  11505. }
  11506. #u31866 .text {
  11507. position:absolute;
  11508. align-self:flex-start;
  11509. padding:0px 0px 0px 0px;
  11510. box-sizing:border-box;
  11511. width:100%;
  11512. }
  11513. #u31866_text {
  11514. border-width:0px;
  11515. word-wrap:break-word;
  11516. text-transform:none;
  11517. }
  11518. #u31867_img {
  11519. border-width:0px;
  11520. position:absolute;
  11521. left:0px;
  11522. top:0px;
  11523. width:33px;
  11524. height:39px;
  11525. }
  11526. #u31867 {
  11527. border-width:0px;
  11528. position:absolute;
  11529. left:3780px;
  11530. top:790px;
  11531. width:33px;
  11532. height:39px;
  11533. display:flex;
  11534. color:#FFFFFF;
  11535. }
  11536. #u31867 .text {
  11537. position:absolute;
  11538. align-self:center;
  11539. padding:2px 2px 2px 2px;
  11540. box-sizing:border-box;
  11541. width:100%;
  11542. }
  11543. #u31867_text {
  11544. border-width:0px;
  11545. word-wrap:break-word;
  11546. text-transform:none;
  11547. }
  11548. #u31868 {
  11549. border-width:0px;
  11550. position:absolute;
  11551. left:0px;
  11552. top:0px;
  11553. width:0px;
  11554. height:0px;
  11555. }
  11556. #u31869_div {
  11557. border-width:0px;
  11558. position:absolute;
  11559. left:0px;
  11560. top:0px;
  11561. width:71px;
  11562. height:20px;
  11563. background:inherit;
  11564. background-color:rgba(28, 33, 30, 1);
  11565. border:none;
  11566. border-radius:0px;
  11567. -moz-box-shadow:none;
  11568. -webkit-box-shadow:none;
  11569. box-shadow:none;
  11570. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11571. font-weight:500;
  11572. font-style:normal;
  11573. font-size:14px;
  11574. color:#FFFFFF;
  11575. }
  11576. #u31869 {
  11577. border-width:0px;
  11578. position:absolute;
  11579. left:3985px;
  11580. top:831px;
  11581. width:71px;
  11582. height:20px;
  11583. display:flex;
  11584. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11585. font-weight:500;
  11586. font-style:normal;
  11587. font-size:14px;
  11588. color:#FFFFFF;
  11589. }
  11590. #u31869 .text {
  11591. position:absolute;
  11592. align-self:flex-start;
  11593. padding:0px 0px 0px 0px;
  11594. box-sizing:border-box;
  11595. width:100%;
  11596. }
  11597. #u31869_text {
  11598. border-width:0px;
  11599. white-space:nowrap;
  11600. text-transform:none;
  11601. }
  11602. #u31870_img {
  11603. border-width:0px;
  11604. position:absolute;
  11605. left:0px;
  11606. top:0px;
  11607. width:33px;
  11608. height:39px;
  11609. }
  11610. #u31870 {
  11611. border-width:0px;
  11612. position:absolute;
  11613. left:4003px;
  11614. top:790px;
  11615. width:33px;
  11616. height:39px;
  11617. display:flex;
  11618. color:#FFFFFF;
  11619. }
  11620. #u31870 .text {
  11621. position:absolute;
  11622. align-self:center;
  11623. padding:2px 2px 2px 2px;
  11624. box-sizing:border-box;
  11625. width:100%;
  11626. }
  11627. #u31870_text {
  11628. border-width:0px;
  11629. word-wrap:break-word;
  11630. text-transform:none;
  11631. }
  11632. #u31871 {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:0px;
  11636. top:0px;
  11637. width:0px;
  11638. height:0px;
  11639. }
  11640. #u31872_div {
  11641. border-width:0px;
  11642. position:absolute;
  11643. left:0px;
  11644. top:0px;
  11645. width:68px;
  11646. height:20px;
  11647. background:inherit;
  11648. background-color:rgba(28, 33, 30, 1);
  11649. border:none;
  11650. border-radius:0px;
  11651. -moz-box-shadow:none;
  11652. -webkit-box-shadow:none;
  11653. box-shadow:none;
  11654. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11655. font-weight:500;
  11656. font-style:normal;
  11657. font-size:14px;
  11658. color:#FFFFFF;
  11659. text-align:center;
  11660. }
  11661. #u31872 {
  11662. border-width:0px;
  11663. position:absolute;
  11664. left:4062px;
  11665. top:831px;
  11666. width:68px;
  11667. height:20px;
  11668. display:flex;
  11669. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11670. font-weight:500;
  11671. font-style:normal;
  11672. font-size:14px;
  11673. color:#FFFFFF;
  11674. text-align:center;
  11675. }
  11676. #u31872 .text {
  11677. position:absolute;
  11678. align-self:flex-start;
  11679. padding:0px 0px 0px 0px;
  11680. box-sizing:border-box;
  11681. width:100%;
  11682. }
  11683. #u31872_text {
  11684. border-width:0px;
  11685. word-wrap:break-word;
  11686. text-transform:none;
  11687. }
  11688. #u31873_img {
  11689. border-width:0px;
  11690. position:absolute;
  11691. left:0px;
  11692. top:0px;
  11693. width:33px;
  11694. height:39px;
  11695. }
  11696. #u31873 {
  11697. border-width:0px;
  11698. position:absolute;
  11699. left:4076px;
  11700. top:790px;
  11701. width:33px;
  11702. height:39px;
  11703. display:flex;
  11704. color:#FFFFFF;
  11705. }
  11706. #u31873 .text {
  11707. position:absolute;
  11708. align-self:center;
  11709. padding:2px 2px 2px 2px;
  11710. box-sizing:border-box;
  11711. width:100%;
  11712. }
  11713. #u31873_text {
  11714. border-width:0px;
  11715. word-wrap:break-word;
  11716. text-transform:none;
  11717. }
  11718. #u31874 {
  11719. border-width:0px;
  11720. position:absolute;
  11721. left:0px;
  11722. top:0px;
  11723. width:0px;
  11724. height:0px;
  11725. }
  11726. #u31875_div {
  11727. border-width:0px;
  11728. position:absolute;
  11729. left:0px;
  11730. top:0px;
  11731. width:60px;
  11732. height:20px;
  11733. background:inherit;
  11734. background-color:rgba(28, 33, 30, 1);
  11735. border:none;
  11736. border-radius:0px;
  11737. -moz-box-shadow:none;
  11738. -webkit-box-shadow:none;
  11739. box-shadow:none;
  11740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11741. font-weight:500;
  11742. font-style:normal;
  11743. font-size:14px;
  11744. color:#FFFFFF;
  11745. }
  11746. #u31875 {
  11747. border-width:0px;
  11748. position:absolute;
  11749. left:4139px;
  11750. top:831px;
  11751. width:60px;
  11752. height:20px;
  11753. display:flex;
  11754. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11755. font-weight:500;
  11756. font-style:normal;
  11757. font-size:14px;
  11758. color:#FFFFFF;
  11759. }
  11760. #u31875 .text {
  11761. position:absolute;
  11762. align-self:flex-start;
  11763. padding:0px 0px 0px 0px;
  11764. box-sizing:border-box;
  11765. width:100%;
  11766. }
  11767. #u31875_text {
  11768. border-width:0px;
  11769. word-wrap:break-word;
  11770. text-transform:none;
  11771. }
  11772. #u31876_img {
  11773. border-width:0px;
  11774. position:absolute;
  11775. left:0px;
  11776. top:0px;
  11777. width:33px;
  11778. height:39px;
  11779. }
  11780. #u31876 {
  11781. border-width:0px;
  11782. position:absolute;
  11783. left:4151px;
  11784. top:790px;
  11785. width:33px;
  11786. height:39px;
  11787. display:flex;
  11788. color:#FFFFFF;
  11789. }
  11790. #u31876 .text {
  11791. position:absolute;
  11792. align-self:center;
  11793. padding:2px 2px 2px 2px;
  11794. box-sizing:border-box;
  11795. width:100%;
  11796. }
  11797. #u31876_text {
  11798. border-width:0px;
  11799. word-wrap:break-word;
  11800. text-transform:none;
  11801. }
  11802. #u31877 {
  11803. border-width:0px;
  11804. position:absolute;
  11805. left:0px;
  11806. top:0px;
  11807. width:0px;
  11808. height:0px;
  11809. }
  11810. #u31878_div {
  11811. border-width:0px;
  11812. position:absolute;
  11813. left:0px;
  11814. top:0px;
  11815. width:60px;
  11816. height:20px;
  11817. background:inherit;
  11818. background-color:rgba(28, 33, 30, 1);
  11819. border:none;
  11820. border-radius:0px;
  11821. -moz-box-shadow:none;
  11822. -webkit-box-shadow:none;
  11823. box-shadow:none;
  11824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11825. font-weight:500;
  11826. font-style:normal;
  11827. font-size:14px;
  11828. color:#FFFFFF;
  11829. }
  11830. #u31878 {
  11831. border-width:0px;
  11832. position:absolute;
  11833. left:4212px;
  11834. top:831px;
  11835. width:60px;
  11836. height:20px;
  11837. display:flex;
  11838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11839. font-weight:500;
  11840. font-style:normal;
  11841. font-size:14px;
  11842. color:#FFFFFF;
  11843. }
  11844. #u31878 .text {
  11845. position:absolute;
  11846. align-self:flex-start;
  11847. padding:0px 0px 0px 0px;
  11848. box-sizing:border-box;
  11849. width:100%;
  11850. }
  11851. #u31878_text {
  11852. border-width:0px;
  11853. word-wrap:break-word;
  11854. text-transform:none;
  11855. }
  11856. #u31879_img {
  11857. border-width:0px;
  11858. position:absolute;
  11859. left:0px;
  11860. top:0px;
  11861. width:33px;
  11862. height:39px;
  11863. }
  11864. #u31879 {
  11865. border-width:0px;
  11866. position:absolute;
  11867. left:4225px;
  11868. top:790px;
  11869. width:33px;
  11870. height:39px;
  11871. display:flex;
  11872. color:#FFFFFF;
  11873. }
  11874. #u31879 .text {
  11875. position:absolute;
  11876. align-self:center;
  11877. padding:2px 2px 2px 2px;
  11878. box-sizing:border-box;
  11879. width:100%;
  11880. }
  11881. #u31879_text {
  11882. border-width:0px;
  11883. word-wrap:break-word;
  11884. text-transform:none;
  11885. }
  11886. #u31880 {
  11887. border-width:0px;
  11888. position:absolute;
  11889. left:0px;
  11890. top:0px;
  11891. width:0px;
  11892. height:0px;
  11893. }
  11894. #u31881 {
  11895. border-width:0px;
  11896. position:absolute;
  11897. left:0px;
  11898. top:0px;
  11899. width:0px;
  11900. height:0px;
  11901. }
  11902. #u31882_div {
  11903. border-width:0px;
  11904. position:absolute;
  11905. left:0px;
  11906. top:0px;
  11907. width:57px;
  11908. height:20px;
  11909. background:inherit;
  11910. background-color:rgba(28, 33, 30, 1);
  11911. border:none;
  11912. border-radius:0px;
  11913. -moz-box-shadow:none;
  11914. -webkit-box-shadow:none;
  11915. box-shadow:none;
  11916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11917. font-weight:500;
  11918. font-style:normal;
  11919. font-size:14px;
  11920. color:#FFFFFF;
  11921. }
  11922. #u31882 {
  11923. border-width:0px;
  11924. position:absolute;
  11925. left:427px;
  11926. top:831px;
  11927. width:57px;
  11928. height:20px;
  11929. display:flex;
  11930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11931. font-weight:500;
  11932. font-style:normal;
  11933. font-size:14px;
  11934. color:#FFFFFF;
  11935. }
  11936. #u31882 .text {
  11937. position:absolute;
  11938. align-self:flex-start;
  11939. padding:0px 0px 0px 0px;
  11940. box-sizing:border-box;
  11941. width:100%;
  11942. }
  11943. #u31882_text {
  11944. border-width:0px;
  11945. white-space:nowrap;
  11946. text-transform:none;
  11947. }
  11948. #u31883_img {
  11949. border-width:0px;
  11950. position:absolute;
  11951. left:0px;
  11952. top:0px;
  11953. width:33px;
  11954. height:39px;
  11955. }
  11956. #u31883 {
  11957. border-width:0px;
  11958. position:absolute;
  11959. left:439px;
  11960. top:790px;
  11961. width:33px;
  11962. height:39px;
  11963. display:flex;
  11964. color:#FFFFFF;
  11965. }
  11966. #u31883 .text {
  11967. position:absolute;
  11968. align-self:center;
  11969. padding:2px 2px 2px 2px;
  11970. box-sizing:border-box;
  11971. width:100%;
  11972. }
  11973. #u31883_text {
  11974. border-width:0px;
  11975. word-wrap:break-word;
  11976. text-transform:none;
  11977. }
  11978. #u31884 {
  11979. border-width:0px;
  11980. position:absolute;
  11981. left:0px;
  11982. top:0px;
  11983. width:0px;
  11984. height:0px;
  11985. }
  11986. #u31885_div {
  11987. border-width:0px;
  11988. position:absolute;
  11989. left:0px;
  11990. top:0px;
  11991. width:57px;
  11992. height:20px;
  11993. background:inherit;
  11994. background-color:rgba(28, 33, 30, 1);
  11995. border:none;
  11996. border-radius:0px;
  11997. -moz-box-shadow:none;
  11998. -webkit-box-shadow:none;
  11999. box-shadow:none;
  12000. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12001. font-weight:500;
  12002. font-style:normal;
  12003. font-size:14px;
  12004. color:#FFFFFF;
  12005. }
  12006. #u31885 {
  12007. border-width:0px;
  12008. position:absolute;
  12009. left:503px;
  12010. top:831px;
  12011. width:57px;
  12012. height:20px;
  12013. display:flex;
  12014. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12015. font-weight:500;
  12016. font-style:normal;
  12017. font-size:14px;
  12018. color:#FFFFFF;
  12019. }
  12020. #u31885 .text {
  12021. position:absolute;
  12022. align-self:flex-start;
  12023. padding:0px 0px 0px 0px;
  12024. box-sizing:border-box;
  12025. width:100%;
  12026. }
  12027. #u31885_text {
  12028. border-width:0px;
  12029. white-space:nowrap;
  12030. text-transform:none;
  12031. }
  12032. #u31886_img {
  12033. border-width:0px;
  12034. position:absolute;
  12035. left:0px;
  12036. top:0px;
  12037. width:33px;
  12038. height:39px;
  12039. }
  12040. #u31886 {
  12041. border-width:0px;
  12042. position:absolute;
  12043. left:515px;
  12044. top:790px;
  12045. width:33px;
  12046. height:39px;
  12047. display:flex;
  12048. color:#FFFFFF;
  12049. }
  12050. #u31886 .text {
  12051. position:absolute;
  12052. align-self:center;
  12053. padding:2px 2px 2px 2px;
  12054. box-sizing:border-box;
  12055. width:100%;
  12056. }
  12057. #u31886_text {
  12058. border-width:0px;
  12059. word-wrap:break-word;
  12060. text-transform:none;
  12061. }
  12062. #u31887 {
  12063. border-width:0px;
  12064. position:absolute;
  12065. left:0px;
  12066. top:0px;
  12067. width:0px;
  12068. height:0px;
  12069. }
  12070. #u31888_div {
  12071. border-width:0px;
  12072. position:absolute;
  12073. left:0px;
  12074. top:0px;
  12075. width:57px;
  12076. height:20px;
  12077. background:inherit;
  12078. background-color:rgba(28, 33, 30, 1);
  12079. border:none;
  12080. border-radius:0px;
  12081. -moz-box-shadow:none;
  12082. -webkit-box-shadow:none;
  12083. box-shadow:none;
  12084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12085. font-weight:500;
  12086. font-style:normal;
  12087. font-size:14px;
  12088. color:#FFFFFF;
  12089. }
  12090. #u31888 {
  12091. border-width:0px;
  12092. position:absolute;
  12093. left:353px;
  12094. top:831px;
  12095. width:57px;
  12096. height:20px;
  12097. display:flex;
  12098. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12099. font-weight:500;
  12100. font-style:normal;
  12101. font-size:14px;
  12102. color:#FFFFFF;
  12103. }
  12104. #u31888 .text {
  12105. position:absolute;
  12106. align-self:flex-start;
  12107. padding:0px 0px 0px 0px;
  12108. box-sizing:border-box;
  12109. width:100%;
  12110. }
  12111. #u31888_text {
  12112. border-width:0px;
  12113. white-space:nowrap;
  12114. text-transform:none;
  12115. }
  12116. #u31889_img {
  12117. border-width:0px;
  12118. position:absolute;
  12119. left:0px;
  12120. top:0px;
  12121. width:33px;
  12122. height:39px;
  12123. }
  12124. #u31889 {
  12125. border-width:0px;
  12126. position:absolute;
  12127. left:365px;
  12128. top:790px;
  12129. width:33px;
  12130. height:39px;
  12131. display:flex;
  12132. color:#FFFFFF;
  12133. }
  12134. #u31889 .text {
  12135. position:absolute;
  12136. align-self:center;
  12137. padding:2px 2px 2px 2px;
  12138. box-sizing:border-box;
  12139. width:100%;
  12140. }
  12141. #u31889_text {
  12142. border-width:0px;
  12143. word-wrap:break-word;
  12144. text-transform:none;
  12145. }
  12146. #u31890_div {
  12147. border-width:0px;
  12148. position:absolute;
  12149. left:0px;
  12150. top:0px;
  12151. width:59px;
  12152. height:20px;
  12153. background:inherit;
  12154. background-color:rgba(28, 33, 30, 1);
  12155. border:none;
  12156. border-radius:0px;
  12157. -moz-box-shadow:none;
  12158. -webkit-box-shadow:none;
  12159. box-shadow:none;
  12160. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12161. font-weight:500;
  12162. font-style:normal;
  12163. font-size:14px;
  12164. color:#F59A23;
  12165. }
  12166. #u31890 {
  12167. border-width:0px;
  12168. position:absolute;
  12169. left:353px;
  12170. top:831px;
  12171. width:59px;
  12172. height:20px;
  12173. display:flex;
  12174. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12175. font-weight:500;
  12176. font-style:normal;
  12177. font-size:14px;
  12178. color:#F59A23;
  12179. }
  12180. #u31890 .text {
  12181. position:absolute;
  12182. align-self:flex-start;
  12183. padding:0px 0px 0px 0px;
  12184. box-sizing:border-box;
  12185. width:100%;
  12186. }
  12187. #u31890_text {
  12188. border-width:0px;
  12189. word-wrap:break-word;
  12190. text-transform:none;
  12191. }
  12192. #u31891 {
  12193. border-width:0px;
  12194. position:absolute;
  12195. left:0px;
  12196. top:0px;
  12197. width:0px;
  12198. height:0px;
  12199. }
  12200. #u31892_div {
  12201. border-width:0px;
  12202. position:absolute;
  12203. left:0px;
  12204. top:0px;
  12205. width:57px;
  12206. height:20px;
  12207. background:inherit;
  12208. background-color:rgba(28, 33, 30, 1);
  12209. border:none;
  12210. border-radius:0px;
  12211. -moz-box-shadow:none;
  12212. -webkit-box-shadow:none;
  12213. box-shadow:none;
  12214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12215. font-weight:500;
  12216. font-style:normal;
  12217. font-size:14px;
  12218. color:#FFFFFF;
  12219. }
  12220. #u31892 {
  12221. border-width:0px;
  12222. position:absolute;
  12223. left:581px;
  12224. top:831px;
  12225. width:57px;
  12226. height:20px;
  12227. display:flex;
  12228. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12229. font-weight:500;
  12230. font-style:normal;
  12231. font-size:14px;
  12232. color:#FFFFFF;
  12233. }
  12234. #u31892 .text {
  12235. position:absolute;
  12236. align-self:flex-start;
  12237. padding:0px 0px 0px 0px;
  12238. box-sizing:border-box;
  12239. width:100%;
  12240. }
  12241. #u31892_text {
  12242. border-width:0px;
  12243. white-space:nowrap;
  12244. text-transform:none;
  12245. }
  12246. #u31893_img {
  12247. border-width:0px;
  12248. position:absolute;
  12249. left:0px;
  12250. top:0px;
  12251. width:33px;
  12252. height:39px;
  12253. }
  12254. #u31893 {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:593px;
  12258. top:790px;
  12259. width:33px;
  12260. height:39px;
  12261. display:flex;
  12262. color:#FFFFFF;
  12263. }
  12264. #u31893 .text {
  12265. position:absolute;
  12266. align-self:center;
  12267. padding:2px 2px 2px 2px;
  12268. box-sizing:border-box;
  12269. width:100%;
  12270. }
  12271. #u31893_text {
  12272. border-width:0px;
  12273. word-wrap:break-word;
  12274. text-transform:none;
  12275. }
  12276. #u31894 {
  12277. border-width:0px;
  12278. position:absolute;
  12279. left:0px;
  12280. top:0px;
  12281. width:0px;
  12282. height:0px;
  12283. }
  12284. #u31895_div {
  12285. border-width:0px;
  12286. position:absolute;
  12287. left:0px;
  12288. top:0px;
  12289. width:57px;
  12290. height:20px;
  12291. background:inherit;
  12292. background-color:rgba(28, 33, 30, 1);
  12293. border:none;
  12294. border-radius:0px;
  12295. -moz-box-shadow:none;
  12296. -webkit-box-shadow:none;
  12297. box-shadow:none;
  12298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12299. font-weight:500;
  12300. font-style:normal;
  12301. font-size:14px;
  12302. color:#FFFFFF;
  12303. }
  12304. #u31895 {
  12305. border-width:0px;
  12306. position:absolute;
  12307. left:729px;
  12308. top:831px;
  12309. width:57px;
  12310. height:20px;
  12311. display:flex;
  12312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12313. font-weight:500;
  12314. font-style:normal;
  12315. font-size:14px;
  12316. color:#FFFFFF;
  12317. }
  12318. #u31895 .text {
  12319. position:absolute;
  12320. align-self:flex-start;
  12321. padding:0px 0px 0px 0px;
  12322. box-sizing:border-box;
  12323. width:100%;
  12324. }
  12325. #u31895_text {
  12326. border-width:0px;
  12327. white-space:nowrap;
  12328. text-transform:none;
  12329. }
  12330. #u31896_img {
  12331. border-width:0px;
  12332. position:absolute;
  12333. left:0px;
  12334. top:0px;
  12335. width:33px;
  12336. height:39px;
  12337. }
  12338. #u31896 {
  12339. border-width:0px;
  12340. position:absolute;
  12341. left:741px;
  12342. top:790px;
  12343. width:33px;
  12344. height:39px;
  12345. display:flex;
  12346. color:#FFFFFF;
  12347. }
  12348. #u31896 .text {
  12349. position:absolute;
  12350. align-self:center;
  12351. padding:2px 2px 2px 2px;
  12352. box-sizing:border-box;
  12353. width:100%;
  12354. }
  12355. #u31896_text {
  12356. border-width:0px;
  12357. word-wrap:break-word;
  12358. text-transform:none;
  12359. }
  12360. #u31897 {
  12361. border-width:0px;
  12362. position:absolute;
  12363. left:0px;
  12364. top:0px;
  12365. width:0px;
  12366. height:0px;
  12367. }
  12368. #u31898_div {
  12369. border-width:0px;
  12370. position:absolute;
  12371. left:0px;
  12372. top:0px;
  12373. width:57px;
  12374. height:20px;
  12375. background:inherit;
  12376. background-color:rgba(28, 33, 30, 1);
  12377. border:none;
  12378. border-radius:0px;
  12379. -moz-box-shadow:none;
  12380. -webkit-box-shadow:none;
  12381. box-shadow:none;
  12382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12383. font-weight:500;
  12384. font-style:normal;
  12385. font-size:14px;
  12386. color:#FFFFFF;
  12387. }
  12388. #u31898 {
  12389. border-width:0px;
  12390. position:absolute;
  12391. left:804px;
  12392. top:831px;
  12393. width:57px;
  12394. height:20px;
  12395. display:flex;
  12396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12397. font-weight:500;
  12398. font-style:normal;
  12399. font-size:14px;
  12400. color:#FFFFFF;
  12401. }
  12402. #u31898 .text {
  12403. position:absolute;
  12404. align-self:flex-start;
  12405. padding:0px 0px 0px 0px;
  12406. box-sizing:border-box;
  12407. width:100%;
  12408. }
  12409. #u31898_text {
  12410. border-width:0px;
  12411. white-space:nowrap;
  12412. text-transform:none;
  12413. }
  12414. #u31899_img {
  12415. border-width:0px;
  12416. position:absolute;
  12417. left:0px;
  12418. top:0px;
  12419. width:33px;
  12420. height:39px;
  12421. }
  12422. #u31899 {
  12423. border-width:0px;
  12424. position:absolute;
  12425. left:816px;
  12426. top:790px;
  12427. width:33px;
  12428. height:39px;
  12429. display:flex;
  12430. color:#FFFFFF;
  12431. }
  12432. #u31899 .text {
  12433. position:absolute;
  12434. align-self:center;
  12435. padding:2px 2px 2px 2px;
  12436. box-sizing:border-box;
  12437. width:100%;
  12438. }
  12439. #u31899_text {
  12440. border-width:0px;
  12441. word-wrap:break-word;
  12442. text-transform:none;
  12443. }
  12444. #u31900 {
  12445. border-width:0px;
  12446. position:absolute;
  12447. left:0px;
  12448. top:0px;
  12449. width:0px;
  12450. height:0px;
  12451. }
  12452. #u31901_div {
  12453. border-width:0px;
  12454. position:absolute;
  12455. left:0px;
  12456. top:0px;
  12457. width:59px;
  12458. height:20px;
  12459. background:inherit;
  12460. background-color:rgba(28, 33, 30, 1);
  12461. border:none;
  12462. border-radius:0px;
  12463. -moz-box-shadow:none;
  12464. -webkit-box-shadow:none;
  12465. box-shadow:none;
  12466. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12467. font-weight:500;
  12468. font-style:normal;
  12469. font-size:14px;
  12470. color:#FFFFFF;
  12471. }
  12472. #u31901 {
  12473. border-width:0px;
  12474. position:absolute;
  12475. left:656px;
  12476. top:831px;
  12477. width:59px;
  12478. height:20px;
  12479. display:flex;
  12480. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12481. font-weight:500;
  12482. font-style:normal;
  12483. font-size:14px;
  12484. color:#FFFFFF;
  12485. }
  12486. #u31901 .text {
  12487. position:absolute;
  12488. align-self:flex-start;
  12489. padding:0px 0px 0px 0px;
  12490. box-sizing:border-box;
  12491. width:100%;
  12492. }
  12493. #u31901_text {
  12494. border-width:0px;
  12495. word-wrap:break-word;
  12496. text-transform:none;
  12497. }
  12498. #u31902_img {
  12499. border-width:0px;
  12500. position:absolute;
  12501. left:0px;
  12502. top:0px;
  12503. width:33px;
  12504. height:39px;
  12505. }
  12506. #u31902 {
  12507. border-width:0px;
  12508. position:absolute;
  12509. left:667px;
  12510. top:790px;
  12511. width:33px;
  12512. height:39px;
  12513. display:flex;
  12514. color:#FFFFFF;
  12515. }
  12516. #u31902 .text {
  12517. position:absolute;
  12518. align-self:center;
  12519. padding:2px 2px 2px 2px;
  12520. box-sizing:border-box;
  12521. width:100%;
  12522. }
  12523. #u31902_text {
  12524. border-width:0px;
  12525. word-wrap:break-word;
  12526. text-transform:none;
  12527. }
  12528. #u31903 {
  12529. border-width:0px;
  12530. position:absolute;
  12531. left:0px;
  12532. top:0px;
  12533. width:0px;
  12534. height:0px;
  12535. }
  12536. #u31904_div {
  12537. border-width:0px;
  12538. position:absolute;
  12539. left:0px;
  12540. top:0px;
  12541. width:71px;
  12542. height:20px;
  12543. background:inherit;
  12544. background-color:rgba(28, 33, 30, 1);
  12545. border:none;
  12546. border-radius:0px;
  12547. -moz-box-shadow:none;
  12548. -webkit-box-shadow:none;
  12549. box-shadow:none;
  12550. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12551. font-weight:500;
  12552. font-style:normal;
  12553. font-size:14px;
  12554. color:#FFFFFF;
  12555. }
  12556. #u31904 {
  12557. border-width:0px;
  12558. position:absolute;
  12559. left:872px;
  12560. top:831px;
  12561. width:71px;
  12562. height:20px;
  12563. display:flex;
  12564. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12565. font-weight:500;
  12566. font-style:normal;
  12567. font-size:14px;
  12568. color:#FFFFFF;
  12569. }
  12570. #u31904 .text {
  12571. position:absolute;
  12572. align-self:flex-start;
  12573. padding:0px 0px 0px 0px;
  12574. box-sizing:border-box;
  12575. width:100%;
  12576. }
  12577. #u31904_text {
  12578. border-width:0px;
  12579. white-space:nowrap;
  12580. text-transform:none;
  12581. }
  12582. #u31905_img {
  12583. border-width:0px;
  12584. position:absolute;
  12585. left:0px;
  12586. top:0px;
  12587. width:33px;
  12588. height:39px;
  12589. }
  12590. #u31905 {
  12591. border-width:0px;
  12592. position:absolute;
  12593. left:890px;
  12594. top:790px;
  12595. width:33px;
  12596. height:39px;
  12597. display:flex;
  12598. color:#FFFFFF;
  12599. }
  12600. #u31905 .text {
  12601. position:absolute;
  12602. align-self:center;
  12603. padding:2px 2px 2px 2px;
  12604. box-sizing:border-box;
  12605. width:100%;
  12606. }
  12607. #u31905_text {
  12608. border-width:0px;
  12609. word-wrap:break-word;
  12610. text-transform:none;
  12611. }
  12612. #u31906 {
  12613. border-width:0px;
  12614. position:absolute;
  12615. left:0px;
  12616. top:0px;
  12617. width:0px;
  12618. height:0px;
  12619. }
  12620. #u31907_div {
  12621. border-width:0px;
  12622. position:absolute;
  12623. left:0px;
  12624. top:0px;
  12625. width:68px;
  12626. height:20px;
  12627. background:inherit;
  12628. background-color:rgba(28, 33, 30, 1);
  12629. border:none;
  12630. border-radius:0px;
  12631. -moz-box-shadow:none;
  12632. -webkit-box-shadow:none;
  12633. box-shadow:none;
  12634. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12635. font-weight:500;
  12636. font-style:normal;
  12637. font-size:14px;
  12638. color:#FFFFFF;
  12639. text-align:center;
  12640. }
  12641. #u31907 {
  12642. border-width:0px;
  12643. position:absolute;
  12644. left:949px;
  12645. top:831px;
  12646. width:68px;
  12647. height:20px;
  12648. display:flex;
  12649. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12650. font-weight:500;
  12651. font-style:normal;
  12652. font-size:14px;
  12653. color:#FFFFFF;
  12654. text-align:center;
  12655. }
  12656. #u31907 .text {
  12657. position:absolute;
  12658. align-self:flex-start;
  12659. padding:0px 0px 0px 0px;
  12660. box-sizing:border-box;
  12661. width:100%;
  12662. }
  12663. #u31907_text {
  12664. border-width:0px;
  12665. word-wrap:break-word;
  12666. text-transform:none;
  12667. }
  12668. #u31908_img {
  12669. border-width:0px;
  12670. position:absolute;
  12671. left:0px;
  12672. top:0px;
  12673. width:33px;
  12674. height:39px;
  12675. }
  12676. #u31908 {
  12677. border-width:0px;
  12678. position:absolute;
  12679. left:963px;
  12680. top:790px;
  12681. width:33px;
  12682. height:39px;
  12683. display:flex;
  12684. color:#FFFFFF;
  12685. }
  12686. #u31908 .text {
  12687. position:absolute;
  12688. align-self:center;
  12689. padding:2px 2px 2px 2px;
  12690. box-sizing:border-box;
  12691. width:100%;
  12692. }
  12693. #u31908_text {
  12694. border-width:0px;
  12695. word-wrap:break-word;
  12696. text-transform:none;
  12697. }
  12698. #u31909 {
  12699. border-width:0px;
  12700. position:absolute;
  12701. left:0px;
  12702. top:0px;
  12703. width:0px;
  12704. height:0px;
  12705. }
  12706. #u31910_div {
  12707. border-width:0px;
  12708. position:absolute;
  12709. left:0px;
  12710. top:0px;
  12711. width:60px;
  12712. height:20px;
  12713. background:inherit;
  12714. background-color:rgba(28, 33, 30, 1);
  12715. border:none;
  12716. border-radius:0px;
  12717. -moz-box-shadow:none;
  12718. -webkit-box-shadow:none;
  12719. box-shadow:none;
  12720. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12721. font-weight:500;
  12722. font-style:normal;
  12723. font-size:14px;
  12724. color:#FFFFFF;
  12725. }
  12726. #u31910 {
  12727. border-width:0px;
  12728. position:absolute;
  12729. left:1026px;
  12730. top:831px;
  12731. width:60px;
  12732. height:20px;
  12733. display:flex;
  12734. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12735. font-weight:500;
  12736. font-style:normal;
  12737. font-size:14px;
  12738. color:#FFFFFF;
  12739. }
  12740. #u31910 .text {
  12741. position:absolute;
  12742. align-self:flex-start;
  12743. padding:0px 0px 0px 0px;
  12744. box-sizing:border-box;
  12745. width:100%;
  12746. }
  12747. #u31910_text {
  12748. border-width:0px;
  12749. word-wrap:break-word;
  12750. text-transform:none;
  12751. }
  12752. #u31911_img {
  12753. border-width:0px;
  12754. position:absolute;
  12755. left:0px;
  12756. top:0px;
  12757. width:33px;
  12758. height:39px;
  12759. }
  12760. #u31911 {
  12761. border-width:0px;
  12762. position:absolute;
  12763. left:1038px;
  12764. top:790px;
  12765. width:33px;
  12766. height:39px;
  12767. display:flex;
  12768. color:#FFFFFF;
  12769. }
  12770. #u31911 .text {
  12771. position:absolute;
  12772. align-self:center;
  12773. padding:2px 2px 2px 2px;
  12774. box-sizing:border-box;
  12775. width:100%;
  12776. }
  12777. #u31911_text {
  12778. border-width:0px;
  12779. word-wrap:break-word;
  12780. text-transform:none;
  12781. }
  12782. #u31912 {
  12783. border-width:0px;
  12784. position:absolute;
  12785. left:0px;
  12786. top:0px;
  12787. width:0px;
  12788. height:0px;
  12789. }
  12790. #u31913_div {
  12791. border-width:0px;
  12792. position:absolute;
  12793. left:0px;
  12794. top:0px;
  12795. width:60px;
  12796. height:20px;
  12797. background:inherit;
  12798. background-color:rgba(28, 33, 30, 1);
  12799. border:none;
  12800. border-radius:0px;
  12801. -moz-box-shadow:none;
  12802. -webkit-box-shadow:none;
  12803. box-shadow:none;
  12804. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12805. font-weight:500;
  12806. font-style:normal;
  12807. font-size:14px;
  12808. color:#FFFFFF;
  12809. }
  12810. #u31913 {
  12811. border-width:0px;
  12812. position:absolute;
  12813. left:1099px;
  12814. top:831px;
  12815. width:60px;
  12816. height:20px;
  12817. display:flex;
  12818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12819. font-weight:500;
  12820. font-style:normal;
  12821. font-size:14px;
  12822. color:#FFFFFF;
  12823. }
  12824. #u31913 .text {
  12825. position:absolute;
  12826. align-self:flex-start;
  12827. padding:0px 0px 0px 0px;
  12828. box-sizing:border-box;
  12829. width:100%;
  12830. }
  12831. #u31913_text {
  12832. border-width:0px;
  12833. word-wrap:break-word;
  12834. text-transform:none;
  12835. }
  12836. #u31914_img {
  12837. border-width:0px;
  12838. position:absolute;
  12839. left:0px;
  12840. top:0px;
  12841. width:33px;
  12842. height:39px;
  12843. }
  12844. #u31914 {
  12845. border-width:0px;
  12846. position:absolute;
  12847. left:1112px;
  12848. top:790px;
  12849. width:33px;
  12850. height:39px;
  12851. display:flex;
  12852. color:#FFFFFF;
  12853. }
  12854. #u31914 .text {
  12855. position:absolute;
  12856. align-self:center;
  12857. padding:2px 2px 2px 2px;
  12858. box-sizing:border-box;
  12859. width:100%;
  12860. }
  12861. #u31914_text {
  12862. border-width:0px;
  12863. word-wrap:break-word;
  12864. text-transform:none;
  12865. }