styles.css 184 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u42282 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u42284 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u42285_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u42285 {
  53. border-width:0px;
  54. position:absolute;
  55. left:49px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u42285 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u42285_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u42286_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u42286 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u42286 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u42286_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u42287 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u42288_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u42288 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u42288 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u42288_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u42289_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u42289 {
  172. border-width:0px;
  173. position:absolute;
  174. left:62px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u42289 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u42289_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u42290_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u42290 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u42290 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u42290_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u42291_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u42291 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u42291 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u42291_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u42292_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u42292 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u42292 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u42292_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u42293 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u42294_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u42294 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u42294 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u42294_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u42295_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u42295 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u42295 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u42295_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u42296_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u42296 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u42296 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u42296_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u42297 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u42297_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u42298 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u42299_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u42299 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u42299 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u42299_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u42300 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u42301_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u42301 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u42301 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u42301_img.selected {
  504. }
  505. #u42301.selected {
  506. }
  507. #u42301_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u42302_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u42302 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u42302 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u42302_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u42300_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u42303 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u42304_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u42304 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u42304 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u42304_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u42305 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u42306_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u42306 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u42306 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u42306_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u42307 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u42308_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u42308 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u42308 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u42308_img.selected {
  693. }
  694. #u42308.selected {
  695. }
  696. #u42308_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u42309_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u42309 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u42309 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u42309_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u42307_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u42310 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u42311_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u42311 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u42311 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u42311_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u42312 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u42313_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u42313 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u42313 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u42313_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u42314 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u42315_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u42315 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u42315 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u42315_img.selected {
  882. }
  883. #u42315.selected {
  884. }
  885. #u42315_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u42316_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u42316 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u42316 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u42316_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u42314_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u42317 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u42318_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u42318 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u42318 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u42318_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u42319 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u42320_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u42320 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u42320 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u42320_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u42321 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u42322_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u42322 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u42322 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u42322_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u42323 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u42324_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u42324 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u42324 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u42324_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u42325 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u42326_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u42326 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u42326 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u42326_img.selected {
  1170. }
  1171. #u42326.selected {
  1172. }
  1173. #u42326_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u42327_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u42327 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u42327 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u42327_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u42325_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u42328 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u42329_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u42329 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u42329 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u42329_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u42330 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u42331_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u42331 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u42331 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u42331_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u42332 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u42333_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u42333 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u42333 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u42333_img.selected {
  1360. }
  1361. #u42333.selected {
  1362. }
  1363. #u42333_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u42334_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u42334 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u42334 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u42334_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u42332_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u42335 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u42336_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u42336 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u42336 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u42336_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u42337 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u42338_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u42338 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u42338 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u42338_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u42339 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u42340_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u42340 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u42340 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u42340_img.selected {
  1550. }
  1551. #u42340.selected {
  1552. }
  1553. #u42340_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u42341_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u42341 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u42341 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u42341_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u42339_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u42342 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u42343_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u42343 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u42343 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u42343_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u42344 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u42345_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u42345 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u42345 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u42345_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u42346 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u42347_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u42347 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u42347 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u42347_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u42348 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u42349_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u42349_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u42349_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u42349 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:243px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u42349 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u42349_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u42349.disabled {
  1850. }
  1851. .u42349_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u42350_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u42350 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u42350 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u42350_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u42351_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u42351 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:208px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u42351 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u42351_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u42352_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u42352 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:417px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u42352 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u42352_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u42353_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u42353 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1374px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u42353 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u42353_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u42354_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1153px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. text-align:left;
  2040. }
  2041. #u42354 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:208px;
  2045. top:74px;
  2046. width:1381px;
  2047. height:1153px;
  2048. display:flex;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:12px;
  2053. color:#FFFFFF;
  2054. text-align:left;
  2055. }
  2056. #u42354 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 50px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u42354_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u42356 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:0px;
  2075. height:0px;
  2076. }
  2077. #u42357_div {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:129px;
  2083. height:22px;
  2084. background:inherit;
  2085. background-color:rgba(255, 255, 255, 0);
  2086. border:none;
  2087. border-radius:0px;
  2088. -moz-box-shadow:none;
  2089. -webkit-box-shadow:none;
  2090. box-shadow:none;
  2091. font-size:16px;
  2092. color:#FFFFFF;
  2093. }
  2094. #u42357 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:49px;
  2098. top:14px;
  2099. width:129px;
  2100. height:22px;
  2101. display:flex;
  2102. font-size:16px;
  2103. color:#FFFFFF;
  2104. }
  2105. #u42357 .text {
  2106. position:absolute;
  2107. align-self:flex-start;
  2108. padding:0px 0px 0px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u42357_text {
  2113. border-width:0px;
  2114. white-space:nowrap;
  2115. text-transform:none;
  2116. }
  2117. #u42358_div {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:1600px;
  2123. height:50px;
  2124. background:inherit;
  2125. background-color:rgba(30, 42, 68, 1);
  2126. border:none;
  2127. border-radius:0px;
  2128. -moz-box-shadow:none;
  2129. -webkit-box-shadow:none;
  2130. box-shadow:none;
  2131. color:#AFB3B6;
  2132. }
  2133. #u42358 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:1600px;
  2139. height:50px;
  2140. display:flex;
  2141. color:#AFB3B6;
  2142. }
  2143. #u42358 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u42358_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u42359 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:0px;
  2162. height:0px;
  2163. }
  2164. #u42360_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:31px;
  2170. height:31px;
  2171. }
  2172. #u42360 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:19px;
  2176. top:10px;
  2177. width:31px;
  2178. height:31px;
  2179. display:flex;
  2180. }
  2181. #u42360 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 2px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u42360_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. }
  2193. #u42361_div {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:129px;
  2199. height:22px;
  2200. background:inherit;
  2201. background-color:rgba(255, 255, 255, 0);
  2202. border:none;
  2203. border-radius:0px;
  2204. -moz-box-shadow:none;
  2205. -webkit-box-shadow:none;
  2206. box-shadow:none;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:16px;
  2211. color:#FFFFFF;
  2212. }
  2213. #u42361 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:62px;
  2217. top:14px;
  2218. width:129px;
  2219. height:22px;
  2220. display:flex;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:16px;
  2225. color:#FFFFFF;
  2226. }
  2227. #u42361 .text {
  2228. position:absolute;
  2229. align-self:flex-start;
  2230. padding:0px 0px 0px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u42361_text {
  2235. border-width:0px;
  2236. white-space:nowrap;
  2237. text-transform:none;
  2238. }
  2239. #u42362_div {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:200px;
  2245. height:1200px;
  2246. background:inherit;
  2247. background-color:rgba(30, 42, 68, 1);
  2248. border:none;
  2249. border-radius:0px;
  2250. -moz-box-shadow:none;
  2251. -webkit-box-shadow:none;
  2252. box-shadow:none;
  2253. color:#AFB3B6;
  2254. }
  2255. #u42362 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:47px;
  2260. width:200px;
  2261. height:1200px;
  2262. display:flex;
  2263. color:#AFB3B6;
  2264. }
  2265. #u42362 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u42362_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u42363_img {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:15px;
  2284. height:15px;
  2285. }
  2286. #u42363 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:1523px;
  2290. top:18px;
  2291. width:15px;
  2292. height:15px;
  2293. display:flex;
  2294. }
  2295. #u42363 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u42363_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u42364_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:15px;
  2314. height:15px;
  2315. }
  2316. #u42364 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:1493px;
  2320. top:18px;
  2321. width:15px;
  2322. height:15px;
  2323. display:flex;
  2324. }
  2325. #u42364 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u42364_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u42365 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:0px;
  2344. height:0px;
  2345. }
  2346. #u42366_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:14px;
  2352. height:14px;
  2353. }
  2354. #u42366 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:1553px;
  2358. top:18px;
  2359. width:14px;
  2360. height:14px;
  2361. display:flex;
  2362. }
  2363. #u42366 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u42366_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u42367_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:8px;
  2382. height:5px;
  2383. }
  2384. #u42367 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:1572px;
  2388. top:23px;
  2389. width:8px;
  2390. height:5px;
  2391. display:flex;
  2392. }
  2393. #u42367 .text {
  2394. position:absolute;
  2395. align-self:center;
  2396. padding:2px 2px 2px 2px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u42367_text {
  2401. border-width:0px;
  2402. word-wrap:break-word;
  2403. text-transform:none;
  2404. visibility:hidden;
  2405. }
  2406. #u42368_div {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:1402px;
  2412. height:1200px;
  2413. background:inherit;
  2414. background-color:rgba(242, 242, 242, 1);
  2415. border:none;
  2416. border-radius:0px;
  2417. -moz-box-shadow:none;
  2418. -webkit-box-shadow:none;
  2419. box-shadow:none;
  2420. }
  2421. #u42368 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:198px;
  2425. top:47px;
  2426. width:1402px;
  2427. height:1200px;
  2428. display:flex;
  2429. }
  2430. #u42368 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u42368_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u42369 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:35px;
  2447. top:81px;
  2448. width:118px;
  2449. height:220px;
  2450. }
  2451. #u42369_children {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:0px;
  2457. height:0px;
  2458. }
  2459. #u42370 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:98px;
  2465. height:20px;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:14px;
  2470. color:#FFFFFF;
  2471. }
  2472. #u42371_div {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:76px;
  2478. height:20px;
  2479. background:inherit;
  2480. background-color:rgba(255, 255, 255, 0);
  2481. border:none;
  2482. border-radius:0px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. }
  2487. #u42371 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:22px;
  2491. top:0px;
  2492. width:76px;
  2493. height:20px;
  2494. display:flex;
  2495. }
  2496. #u42371 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:2px 2px 2px 3px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u42371_text {
  2504. border-width:0px;
  2505. white-space:nowrap;
  2506. text-transform:none;
  2507. }
  2508. #u42372 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:20px;
  2513. width:84px;
  2514. height:20px;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:14px;
  2519. color:#FFFFFF;
  2520. }
  2521. #u42373_img {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:9px;
  2527. height:9px;
  2528. }
  2529. #u42373 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:6px;
  2533. top:6px;
  2534. width:9px;
  2535. height:9px;
  2536. display:flex;
  2537. }
  2538. #u42373 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u42373_img.selected {
  2546. }
  2547. #u42373.selected {
  2548. }
  2549. #u42373_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. visibility:hidden;
  2554. }
  2555. #u42374_div {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:62px;
  2561. height:20px;
  2562. background:inherit;
  2563. background-color:rgba(255, 255, 255, 0);
  2564. border:none;
  2565. border-radius:0px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. }
  2570. #u42374 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:22px;
  2574. top:0px;
  2575. width:62px;
  2576. height:20px;
  2577. display:flex;
  2578. }
  2579. #u42374 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 3px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u42374_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u42372_children {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:0px;
  2597. height:0px;
  2598. }
  2599. #u42375 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:20px;
  2603. top:20px;
  2604. width:98px;
  2605. height:20px;
  2606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:14px;
  2610. color:#FFFFFF;
  2611. }
  2612. #u42376_div {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:76px;
  2618. height:20px;
  2619. background:inherit;
  2620. background-color:rgba(255, 255, 255, 0);
  2621. border:none;
  2622. border-radius:0px;
  2623. -moz-box-shadow:none;
  2624. -webkit-box-shadow:none;
  2625. box-shadow:none;
  2626. }
  2627. #u42376 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:22px;
  2631. top:0px;
  2632. width:76px;
  2633. height:20px;
  2634. display:flex;
  2635. }
  2636. #u42376 .text {
  2637. position:absolute;
  2638. align-self:center;
  2639. padding:2px 2px 2px 3px;
  2640. box-sizing:border-box;
  2641. width:100%;
  2642. }
  2643. #u42376_text {
  2644. border-width:0px;
  2645. white-space:nowrap;
  2646. text-transform:none;
  2647. }
  2648. #u42377 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:20px;
  2652. top:40px;
  2653. width:98px;
  2654. height:20px;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:14px;
  2659. color:#FFFFFF;
  2660. }
  2661. #u42378_div {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:76px;
  2667. height:20px;
  2668. background:inherit;
  2669. background-color:rgba(255, 255, 255, 0);
  2670. border:none;
  2671. border-radius:0px;
  2672. -moz-box-shadow:none;
  2673. -webkit-box-shadow:none;
  2674. box-shadow:none;
  2675. }
  2676. #u42378 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:22px;
  2680. top:0px;
  2681. width:76px;
  2682. height:20px;
  2683. display:flex;
  2684. }
  2685. #u42378 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 3px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u42378_text {
  2693. border-width:0px;
  2694. white-space:nowrap;
  2695. text-transform:none;
  2696. }
  2697. #u42379 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:80px;
  2702. width:84px;
  2703. height:20px;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:14px;
  2708. color:#FFFFFF;
  2709. }
  2710. #u42380_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:9px;
  2716. height:9px;
  2717. }
  2718. #u42380 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:6px;
  2722. top:6px;
  2723. width:9px;
  2724. height:9px;
  2725. display:flex;
  2726. }
  2727. #u42380 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 2px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u42380_img.selected {
  2735. }
  2736. #u42380.selected {
  2737. }
  2738. #u42380_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. visibility:hidden;
  2743. }
  2744. #u42381_div {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:62px;
  2750. height:20px;
  2751. background:inherit;
  2752. background-color:rgba(255, 255, 255, 0);
  2753. border:none;
  2754. border-radius:0px;
  2755. -moz-box-shadow:none;
  2756. -webkit-box-shadow:none;
  2757. box-shadow:none;
  2758. }
  2759. #u42381 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:22px;
  2763. top:0px;
  2764. width:62px;
  2765. height:20px;
  2766. display:flex;
  2767. }
  2768. #u42381 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 3px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u42381_text {
  2776. border-width:0px;
  2777. white-space:nowrap;
  2778. text-transform:none;
  2779. }
  2780. #u42379_children {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:0px;
  2786. height:0px;
  2787. }
  2788. #u42382 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:20px;
  2792. top:20px;
  2793. width:98px;
  2794. height:20px;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:14px;
  2799. color:#FFFFFF;
  2800. }
  2801. #u42383_div {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:76px;
  2807. height:20px;
  2808. background:inherit;
  2809. background-color:rgba(255, 255, 255, 0);
  2810. border:none;
  2811. border-radius:0px;
  2812. -moz-box-shadow:none;
  2813. -webkit-box-shadow:none;
  2814. box-shadow:none;
  2815. }
  2816. #u42383 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:22px;
  2820. top:0px;
  2821. width:76px;
  2822. height:20px;
  2823. display:flex;
  2824. }
  2825. #u42383 .text {
  2826. position:absolute;
  2827. align-self:center;
  2828. padding:2px 2px 2px 3px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u42383_text {
  2833. border-width:0px;
  2834. white-space:nowrap;
  2835. text-transform:none;
  2836. }
  2837. #u42384 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:20px;
  2841. top:40px;
  2842. width:98px;
  2843. height:20px;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:14px;
  2848. color:#FFFFFF;
  2849. }
  2850. #u42385_div {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:76px;
  2856. height:20px;
  2857. background:inherit;
  2858. background-color:rgba(255, 255, 255, 0);
  2859. border:none;
  2860. border-radius:0px;
  2861. -moz-box-shadow:none;
  2862. -webkit-box-shadow:none;
  2863. box-shadow:none;
  2864. }
  2865. #u42385 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:22px;
  2869. top:0px;
  2870. width:76px;
  2871. height:20px;
  2872. display:flex;
  2873. }
  2874. #u42385 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 2px 2px 3px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u42385_text {
  2882. border-width:0px;
  2883. white-space:nowrap;
  2884. text-transform:none;
  2885. }
  2886. #u42386 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:140px;
  2891. width:84px;
  2892. height:20px;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:14px;
  2897. color:#FFFFFF;
  2898. }
  2899. #u42387_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:9px;
  2905. height:9px;
  2906. }
  2907. #u42387 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:6px;
  2911. top:6px;
  2912. width:9px;
  2913. height:9px;
  2914. display:flex;
  2915. }
  2916. #u42387 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u42387_img.selected {
  2924. }
  2925. #u42387.selected {
  2926. }
  2927. #u42387_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u42388_div {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:62px;
  2939. height:20px;
  2940. background:inherit;
  2941. background-color:rgba(255, 255, 255, 0);
  2942. border:none;
  2943. border-radius:0px;
  2944. -moz-box-shadow:none;
  2945. -webkit-box-shadow:none;
  2946. box-shadow:none;
  2947. }
  2948. #u42388 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:22px;
  2952. top:0px;
  2953. width:62px;
  2954. height:20px;
  2955. display:flex;
  2956. }
  2957. #u42388 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:2px 2px 2px 3px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u42388_text {
  2965. border-width:0px;
  2966. white-space:nowrap;
  2967. text-transform:none;
  2968. }
  2969. #u42386_children {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:0px;
  2975. height:0px;
  2976. visibility:hidden;
  2977. }
  2978. #u42389 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:20px;
  2982. top:20px;
  2983. width:84px;
  2984. height:20px;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. color:#FFFFFF;
  2990. }
  2991. #u42390_div {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:62px;
  2997. height:20px;
  2998. background:inherit;
  2999. background-color:rgba(255, 255, 255, 0);
  3000. border:none;
  3001. border-radius:0px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. }
  3006. #u42390 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:22px;
  3010. top:0px;
  3011. width:62px;
  3012. height:20px;
  3013. display:flex;
  3014. }
  3015. #u42390 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 3px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u42390_text {
  3023. border-width:0px;
  3024. white-space:nowrap;
  3025. text-transform:none;
  3026. }
  3027. #u42391 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:20px;
  3031. top:40px;
  3032. width:84px;
  3033. height:20px;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:14px;
  3038. color:#FFFFFF;
  3039. }
  3040. #u42392_div {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:62px;
  3046. height:20px;
  3047. background:inherit;
  3048. background-color:rgba(255, 255, 255, 0);
  3049. border:none;
  3050. border-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. }
  3055. #u42392 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:22px;
  3059. top:0px;
  3060. width:62px;
  3061. height:20px;
  3062. display:flex;
  3063. }
  3064. #u42392 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 3px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u42392_text {
  3072. border-width:0px;
  3073. white-space:nowrap;
  3074. text-transform:none;
  3075. }
  3076. #u42393 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:20px;
  3080. top:60px;
  3081. width:84px;
  3082. height:20px;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:14px;
  3087. color:#FFFFFF;
  3088. }
  3089. #u42394_div {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:62px;
  3095. height:20px;
  3096. background:inherit;
  3097. background-color:rgba(255, 255, 255, 0);
  3098. border:none;
  3099. border-radius:0px;
  3100. -moz-box-shadow:none;
  3101. -webkit-box-shadow:none;
  3102. box-shadow:none;
  3103. }
  3104. #u42394 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:22px;
  3108. top:0px;
  3109. width:62px;
  3110. height:20px;
  3111. display:flex;
  3112. }
  3113. #u42394 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 3px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u42394_text {
  3121. border-width:0px;
  3122. white-space:nowrap;
  3123. text-transform:none;
  3124. }
  3125. #u42395 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:20px;
  3129. top:80px;
  3130. width:84px;
  3131. height:20px;
  3132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:14px;
  3136. color:#FFFFFF;
  3137. }
  3138. #u42396_div {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:62px;
  3144. height:20px;
  3145. background:inherit;
  3146. background-color:rgba(255, 255, 255, 0);
  3147. border:none;
  3148. border-radius:0px;
  3149. -moz-box-shadow:none;
  3150. -webkit-box-shadow:none;
  3151. box-shadow:none;
  3152. }
  3153. #u42396 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:22px;
  3157. top:0px;
  3158. width:62px;
  3159. height:20px;
  3160. display:flex;
  3161. }
  3162. #u42396 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 2px 2px 3px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u42396_text {
  3170. border-width:0px;
  3171. white-space:nowrap;
  3172. text-transform:none;
  3173. }
  3174. #u42397 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:160px;
  3179. width:98px;
  3180. height:20px;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:14px;
  3185. color:#FFFFFF;
  3186. }
  3187. #u42398_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:9px;
  3193. height:9px;
  3194. }
  3195. #u42398 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:6px;
  3199. top:6px;
  3200. width:9px;
  3201. height:9px;
  3202. display:flex;
  3203. }
  3204. #u42398 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 2px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u42398_img.selected {
  3212. }
  3213. #u42398.selected {
  3214. }
  3215. #u42398_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u42399_div {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:76px;
  3227. height:20px;
  3228. background:inherit;
  3229. background-color:rgba(255, 255, 255, 0);
  3230. border:none;
  3231. border-radius:0px;
  3232. -moz-box-shadow:none;
  3233. -webkit-box-shadow:none;
  3234. box-shadow:none;
  3235. }
  3236. #u42399 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:22px;
  3240. top:0px;
  3241. width:76px;
  3242. height:20px;
  3243. display:flex;
  3244. }
  3245. #u42399 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 3px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u42399_text {
  3253. border-width:0px;
  3254. white-space:nowrap;
  3255. text-transform:none;
  3256. }
  3257. #u42397_children {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:0px;
  3263. height:0px;
  3264. visibility:hidden;
  3265. }
  3266. #u42400 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:20px;
  3270. top:20px;
  3271. width:98px;
  3272. height:20px;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:14px;
  3277. color:#FFFFFF;
  3278. }
  3279. #u42401_div {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:76px;
  3285. height:20px;
  3286. background:inherit;
  3287. background-color:rgba(255, 255, 255, 0);
  3288. border:none;
  3289. border-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. }
  3294. #u42401 {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:22px;
  3298. top:0px;
  3299. width:76px;
  3300. height:20px;
  3301. display:flex;
  3302. }
  3303. #u42401 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 3px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u42401_text {
  3311. border-width:0px;
  3312. white-space:nowrap;
  3313. text-transform:none;
  3314. }
  3315. #u42402 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:20px;
  3319. top:40px;
  3320. width:98px;
  3321. height:20px;
  3322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:14px;
  3326. color:#FFFFFF;
  3327. }
  3328. #u42403_div {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:76px;
  3334. height:20px;
  3335. background:inherit;
  3336. background-color:rgba(255, 255, 255, 0);
  3337. border:none;
  3338. border-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. }
  3343. #u42403 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:22px;
  3347. top:0px;
  3348. width:76px;
  3349. height:20px;
  3350. display:flex;
  3351. }
  3352. #u42403 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 3px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u42403_text {
  3360. border-width:0px;
  3361. white-space:nowrap;
  3362. text-transform:none;
  3363. }
  3364. #u42404 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:180px;
  3369. width:84px;
  3370. height:20px;
  3371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3372. font-weight:400;
  3373. font-style:normal;
  3374. font-size:14px;
  3375. color:#FFFFFF;
  3376. }
  3377. #u42405_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:9px;
  3383. height:9px;
  3384. }
  3385. #u42405 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:6px;
  3389. top:6px;
  3390. width:9px;
  3391. height:9px;
  3392. display:flex;
  3393. }
  3394. #u42405 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 2px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u42405_img.selected {
  3402. }
  3403. #u42405.selected {
  3404. }
  3405. #u42405_text {
  3406. border-width:0px;
  3407. word-wrap:break-word;
  3408. text-transform:none;
  3409. visibility:hidden;
  3410. }
  3411. #u42406_div {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:62px;
  3417. height:20px;
  3418. background:inherit;
  3419. background-color:rgba(255, 255, 255, 0);
  3420. border:none;
  3421. border-radius:0px;
  3422. -moz-box-shadow:none;
  3423. -webkit-box-shadow:none;
  3424. box-shadow:none;
  3425. }
  3426. #u42406 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:22px;
  3430. top:0px;
  3431. width:62px;
  3432. height:20px;
  3433. display:flex;
  3434. }
  3435. #u42406 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 3px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u42406_text {
  3443. border-width:0px;
  3444. white-space:nowrap;
  3445. text-transform:none;
  3446. }
  3447. #u42404_children {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:0px;
  3453. height:0px;
  3454. visibility:hidden;
  3455. }
  3456. #u42407 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:20px;
  3460. top:20px;
  3461. width:98px;
  3462. height:20px;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:14px;
  3467. color:#FFFFFF;
  3468. }
  3469. #u42408_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:76px;
  3475. height:20px;
  3476. background:inherit;
  3477. background-color:rgba(255, 255, 255, 0);
  3478. border:none;
  3479. border-radius:0px;
  3480. -moz-box-shadow:none;
  3481. -webkit-box-shadow:none;
  3482. box-shadow:none;
  3483. }
  3484. #u42408 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:22px;
  3488. top:0px;
  3489. width:76px;
  3490. height:20px;
  3491. display:flex;
  3492. }
  3493. #u42408 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 3px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u42408_text {
  3501. border-width:0px;
  3502. white-space:nowrap;
  3503. text-transform:none;
  3504. }
  3505. #u42409 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:20px;
  3509. top:40px;
  3510. width:84px;
  3511. height:20px;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:14px;
  3516. color:#FFFFFF;
  3517. }
  3518. #u42410_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:62px;
  3524. height:20px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 0);
  3527. border:none;
  3528. border-radius:0px;
  3529. -moz-box-shadow:none;
  3530. -webkit-box-shadow:none;
  3531. box-shadow:none;
  3532. }
  3533. #u42410 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:22px;
  3537. top:0px;
  3538. width:62px;
  3539. height:20px;
  3540. display:flex;
  3541. }
  3542. #u42410 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 3px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u42410_text {
  3550. border-width:0px;
  3551. white-space:nowrap;
  3552. text-transform:none;
  3553. }
  3554. #u42411 {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:200px;
  3559. width:84px;
  3560. height:20px;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:14px;
  3565. color:#FFFFFF;
  3566. }
  3567. #u42412_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:9px;
  3573. height:9px;
  3574. }
  3575. #u42412 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:6px;
  3579. top:6px;
  3580. width:9px;
  3581. height:9px;
  3582. display:flex;
  3583. }
  3584. #u42412 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 2px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u42412_img.selected {
  3592. }
  3593. #u42412.selected {
  3594. }
  3595. #u42412_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u42413_div {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:62px;
  3607. height:20px;
  3608. background:inherit;
  3609. background-color:rgba(255, 255, 255, 0);
  3610. border:none;
  3611. border-radius:0px;
  3612. -moz-box-shadow:none;
  3613. -webkit-box-shadow:none;
  3614. box-shadow:none;
  3615. }
  3616. #u42413 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:22px;
  3620. top:0px;
  3621. width:62px;
  3622. height:20px;
  3623. display:flex;
  3624. }
  3625. #u42413 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 3px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u42413_text {
  3633. border-width:0px;
  3634. white-space:nowrap;
  3635. text-transform:none;
  3636. }
  3637. #u42411_children {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:0px;
  3643. height:0px;
  3644. visibility:hidden;
  3645. }
  3646. #u42414 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:20px;
  3650. top:20px;
  3651. width:84px;
  3652. height:20px;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:14px;
  3657. color:#FFFFFF;
  3658. }
  3659. #u42415_div {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:62px;
  3665. height:20px;
  3666. background:inherit;
  3667. background-color:rgba(255, 255, 255, 0);
  3668. border:none;
  3669. border-radius:0px;
  3670. -moz-box-shadow:none;
  3671. -webkit-box-shadow:none;
  3672. box-shadow:none;
  3673. }
  3674. #u42415 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:22px;
  3678. top:0px;
  3679. width:62px;
  3680. height:20px;
  3681. display:flex;
  3682. }
  3683. #u42415 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 3px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u42415_text {
  3691. border-width:0px;
  3692. white-space:nowrap;
  3693. text-transform:none;
  3694. }
  3695. #u42416 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:20px;
  3699. top:40px;
  3700. width:84px;
  3701. height:20px;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:14px;
  3706. color:#FFFFFF;
  3707. }
  3708. #u42417_div {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:0px;
  3712. top:0px;
  3713. width:62px;
  3714. height:20px;
  3715. background:inherit;
  3716. background-color:rgba(255, 255, 255, 0);
  3717. border:none;
  3718. border-radius:0px;
  3719. -moz-box-shadow:none;
  3720. -webkit-box-shadow:none;
  3721. box-shadow:none;
  3722. }
  3723. #u42417 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:22px;
  3727. top:0px;
  3728. width:62px;
  3729. height:20px;
  3730. display:flex;
  3731. }
  3732. #u42417 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 3px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u42417_text {
  3740. border-width:0px;
  3741. white-space:nowrap;
  3742. text-transform:none;
  3743. }
  3744. #u42418 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:20px;
  3748. top:60px;
  3749. width:84px;
  3750. height:20px;
  3751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:14px;
  3755. color:#FFFFFF;
  3756. }
  3757. #u42419_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:62px;
  3763. height:20px;
  3764. background:inherit;
  3765. background-color:rgba(255, 255, 255, 0);
  3766. border:none;
  3767. border-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. }
  3772. #u42419 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:22px;
  3776. top:0px;
  3777. width:62px;
  3778. height:20px;
  3779. display:flex;
  3780. }
  3781. #u42419 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 3px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u42419_text {
  3789. border-width:0px;
  3790. white-space:nowrap;
  3791. text-transform:none;
  3792. }
  3793. #u42420 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:0px;
  3799. height:0px;
  3800. }
  3801. #u42421_input {
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:141px;
  3806. height:22px;
  3807. padding:2px 2px 2px 2px;
  3808. font-family:'ArialMT', 'Arial', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:14px;
  3812. letter-spacing:normal;
  3813. color:#FFFFFF;
  3814. vertical-align:none;
  3815. text-align:left;
  3816. text-transform:none;
  3817. background-color:transparent;
  3818. border-color:transparent;
  3819. }
  3820. #u42421_input.disabled {
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:141px;
  3825. height:22px;
  3826. padding:2px 2px 2px 2px;
  3827. font-family:'ArialMT', 'Arial', sans-serif;
  3828. font-weight:400;
  3829. font-style:normal;
  3830. font-size:14px;
  3831. letter-spacing:normal;
  3832. color:#FFFFFF;
  3833. vertical-align:none;
  3834. text-align:left;
  3835. text-transform:none;
  3836. background-color:transparent;
  3837. border-color:transparent;
  3838. }
  3839. #u42421_div {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:141px;
  3845. height:22px;
  3846. background:inherit;
  3847. background-color:rgba(255, 255, 255, 0);
  3848. border:none;
  3849. border-radius:0px;
  3850. -moz-box-shadow:none;
  3851. -webkit-box-shadow:none;
  3852. box-shadow:none;
  3853. font-size:14px;
  3854. color:#FFFFFF;
  3855. }
  3856. #u42421 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:243px;
  3860. top:14px;
  3861. width:141px;
  3862. height:22px;
  3863. display:flex;
  3864. font-size:14px;
  3865. color:#FFFFFF;
  3866. }
  3867. #u42421 .text {
  3868. position:absolute;
  3869. align-self:flex-start;
  3870. padding:2px 2px 2px 2px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u42421_div.disabled {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:141px;
  3880. height:22px;
  3881. background:inherit;
  3882. background-color:rgba(240, 240, 240, 1);
  3883. border:none;
  3884. border-radius:0px;
  3885. -moz-box-shadow:none;
  3886. -webkit-box-shadow:none;
  3887. box-shadow:none;
  3888. font-size:14px;
  3889. color:#FFFFFF;
  3890. }
  3891. #u42421.disabled {
  3892. }
  3893. .u42421_input_option {
  3894. font-size:14px;
  3895. }
  3896. #u42422_img {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:22px;
  3902. height:22px;
  3903. }
  3904. #u42422 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:216px;
  3908. top:15px;
  3909. width:22px;
  3910. height:22px;
  3911. display:flex;
  3912. }
  3913. #u42422 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 2px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u42422_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u42423_div {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:136px;
  3932. height:16px;
  3933. background:inherit;
  3934. background-color:rgba(255, 255, 255, 0);
  3935. border:none;
  3936. border-radius:0px;
  3937. -moz-box-shadow:none;
  3938. -webkit-box-shadow:none;
  3939. box-shadow:none;
  3940. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  3941. font-weight:200;
  3942. font-style:normal;
  3943. font-size:11px;
  3944. color:#555555;
  3945. }
  3946. #u42423 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:208px;
  3950. top:53px;
  3951. width:136px;
  3952. height:16px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  3955. font-weight:200;
  3956. font-style:normal;
  3957. font-size:11px;
  3958. color:#555555;
  3959. }
  3960. #u42423 .text {
  3961. position:absolute;
  3962. align-self:flex-start;
  3963. padding:0px 0px 0px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u42423_text {
  3968. border-width:0px;
  3969. white-space:nowrap;
  3970. text-transform:none;
  3971. }
  3972. #u42424_div {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:140px;
  3978. height:24px;
  3979. background:inherit;
  3980. background-color:rgba(242, 242, 242, 0.2);
  3981. border:none;
  3982. border-radius:25px;
  3983. -moz-box-shadow:none;
  3984. -webkit-box-shadow:none;
  3985. box-shadow:none;
  3986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. color:#FFFFFF;
  3990. text-align:center;
  3991. }
  3992. #u42424 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:417px;
  3996. top:13px;
  3997. width:140px;
  3998. height:24px;
  3999. display:flex;
  4000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. color:#FFFFFF;
  4004. text-align:center;
  4005. }
  4006. #u42424 .text {
  4007. position:absolute;
  4008. align-self:center;
  4009. padding:0px 0px 0px 0px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u42424_text {
  4014. border-width:0px;
  4015. word-wrap:break-word;
  4016. text-transform:none;
  4017. }
  4018. #u42425_div {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:85px;
  4024. height:20px;
  4025. background:inherit;
  4026. background-color:rgba(30, 42, 68, 1);
  4027. border:none;
  4028. border-radius:0px;
  4029. -moz-box-shadow:none;
  4030. -webkit-box-shadow:none;
  4031. box-shadow:none;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. color:#FFFFFF;
  4036. }
  4037. #u42425 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:1374px;
  4041. top:15px;
  4042. width:85px;
  4043. height:20px;
  4044. display:flex;
  4045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4046. font-weight:400;
  4047. font-style:normal;
  4048. color:#FFFFFF;
  4049. }
  4050. #u42425 .text {
  4051. position:absolute;
  4052. align-self:flex-start;
  4053. padding:0px 0px 0px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u42425_text {
  4058. border-width:0px;
  4059. white-space:nowrap;
  4060. text-transform:none;
  4061. }
  4062. #u42426_div {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:1381px;
  4068. height:1166px;
  4069. background:inherit;
  4070. background-color:rgba(242, 242, 242, 1);
  4071. border:none;
  4072. border-radius:0px;
  4073. -moz-box-shadow:none;
  4074. -webkit-box-shadow:none;
  4075. box-shadow:none;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:12px;
  4080. color:#FFFFFF;
  4081. text-align:left;
  4082. }
  4083. #u42426 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:208px;
  4087. top:74px;
  4088. width:1381px;
  4089. height:1166px;
  4090. display:flex;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. color:#FFFFFF;
  4096. text-align:left;
  4097. }
  4098. #u42426 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 50px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u42426_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u42427_div {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:1381px;
  4117. height:100px;
  4118. background:inherit;
  4119. background-color:rgba(255, 255, 255, 1);
  4120. border:none;
  4121. border-radius:0px;
  4122. -moz-box-shadow:none;
  4123. -webkit-box-shadow:none;
  4124. box-shadow:none;
  4125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. color:#FFFFFF;
  4130. text-align:left;
  4131. }
  4132. #u42427 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:208px;
  4136. top:74px;
  4137. width:1381px;
  4138. height:100px;
  4139. display:flex;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. color:#FFFFFF;
  4145. text-align:left;
  4146. }
  4147. #u42427 .text {
  4148. position:absolute;
  4149. align-self:center;
  4150. padding:2px 2px 2px 50px;
  4151. box-sizing:border-box;
  4152. width:100%;
  4153. }
  4154. #u42427_text {
  4155. border-width:0px;
  4156. word-wrap:break-word;
  4157. text-transform:none;
  4158. visibility:hidden;
  4159. }
  4160. #u42428_div {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:73px;
  4166. height:50px;
  4167. background:inherit;
  4168. background-color:rgba(255, 255, 255, 0);
  4169. border:none;
  4170. border-left:0px;
  4171. border-top:0px;
  4172. border-right:0px;
  4173. border-radius:0px;
  4174. border-bottom-right-radius:0px;
  4175. border-bottom-left-radius:0px;
  4176. -moz-box-shadow:none;
  4177. -webkit-box-shadow:none;
  4178. box-shadow:none;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:18px;
  4183. }
  4184. #u42428 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:227px;
  4188. top:74px;
  4189. width:73px;
  4190. height:50px;
  4191. display:flex;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:18px;
  4196. }
  4197. #u42428 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:0px 0px 0px 0px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u42428_text {
  4205. border-width:0px;
  4206. white-space:nowrap;
  4207. text-transform:none;
  4208. }
  4209. #u42429 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u42430_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:140px;
  4223. height:30px;
  4224. background:inherit;
  4225. background-color:rgba(255, 255, 255, 1);
  4226. box-sizing:border-box;
  4227. border-width:1px;
  4228. border-style:solid;
  4229. border-color:rgba(201, 201, 201, 1);
  4230. border-radius:4px;
  4231. -moz-box-shadow:none;
  4232. -webkit-box-shadow:none;
  4233. box-shadow:none;
  4234. font-family:'Microsoft YaHei', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:14px;
  4238. color:#CCCCCC;
  4239. text-align:left;
  4240. }
  4241. #u42430 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:1350px;
  4245. top:134px;
  4246. width:140px;
  4247. height:30px;
  4248. display:flex;
  4249. font-family:'Microsoft YaHei', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:14px;
  4253. color:#CCCCCC;
  4254. text-align:left;
  4255. }
  4256. #u42430 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 8px 2px 8px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u42430_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u42431_input {
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:127px;
  4274. height:25px;
  4275. padding:2px 2px 2px 2px;
  4276. font-family:'Microsoft YaHei', sans-serif;
  4277. font-weight:400;
  4278. font-style:normal;
  4279. font-size:10px;
  4280. letter-spacing:normal;
  4281. color:#000000;
  4282. vertical-align:none;
  4283. text-align:left;
  4284. text-transform:none;
  4285. background-color:transparent;
  4286. border-color:transparent;
  4287. }
  4288. #u42431_input.disabled {
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:127px;
  4293. height:25px;
  4294. padding:2px 2px 2px 2px;
  4295. font-family:'Microsoft YaHei', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:10px;
  4299. letter-spacing:normal;
  4300. color:#000000;
  4301. vertical-align:none;
  4302. text-align:left;
  4303. text-transform:none;
  4304. background-color:transparent;
  4305. border-color:transparent;
  4306. }
  4307. #u42431_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:127px;
  4313. height:25px;
  4314. background:inherit;
  4315. background-color:rgba(255, 255, 255, 1);
  4316. border:none;
  4317. border-radius:0px;
  4318. -moz-box-shadow:none;
  4319. -webkit-box-shadow:none;
  4320. box-shadow:none;
  4321. font-family:'Microsoft YaHei', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:10px;
  4325. }
  4326. #u42431 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:1358px;
  4330. top:135px;
  4331. width:127px;
  4332. height:25px;
  4333. display:flex;
  4334. font-family:'Microsoft YaHei', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:10px;
  4338. }
  4339. #u42431 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 2px 2px 2px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u42431_div.disabled {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:127px;
  4352. height:25px;
  4353. background:inherit;
  4354. background-color:rgba(240, 240, 240, 1);
  4355. border:none;
  4356. border-radius:0px;
  4357. -moz-box-shadow:none;
  4358. -webkit-box-shadow:none;
  4359. box-shadow:none;
  4360. font-family:'Microsoft YaHei', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:10px;
  4364. }
  4365. #u42431.disabled {
  4366. }
  4367. #u42432_div {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:59px;
  4373. height:30px;
  4374. background:inherit;
  4375. background-color:rgba(24, 144, 255, 1);
  4376. box-sizing:border-box;
  4377. border-width:1px;
  4378. border-style:solid;
  4379. border-color:rgba(0, 153, 255, 1);
  4380. border-radius:4px;
  4381. -moz-box-shadow:none;
  4382. -webkit-box-shadow:none;
  4383. box-shadow:none;
  4384. font-family:'Microsoft YaHei', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:14px;
  4388. color:#FFFFFF;
  4389. }
  4390. #u42432 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:1500px;
  4394. top:134px;
  4395. width:59px;
  4396. height:30px;
  4397. display:flex;
  4398. font-family:'Microsoft YaHei', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. color:#FFFFFF;
  4403. }
  4404. #u42432 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:5px 15px 5px 15px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u42432_text {
  4412. border-width:0px;
  4413. white-space:nowrap;
  4414. text-transform:none;
  4415. }
  4416. #u42433_div {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:29px;
  4422. height:50px;
  4423. background:inherit;
  4424. background-color:rgba(255, 255, 255, 0);
  4425. box-sizing:border-box;
  4426. border-width:2px;
  4427. border-style:solid;
  4428. border-color:rgba(24, 144, 255, 1);
  4429. border-left:0px;
  4430. border-top:0px;
  4431. border-right:0px;
  4432. border-radius:0px;
  4433. border-bottom-right-radius:0px;
  4434. border-bottom-left-radius:0px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:14px;
  4442. color:#1890FF;
  4443. }
  4444. #u42433 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:234px;
  4448. top:124px;
  4449. width:29px;
  4450. height:50px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:14px;
  4456. color:#1890FF;
  4457. }
  4458. #u42433 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:0px 0px 0px 0px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u42433_text {
  4466. border-width:0px;
  4467. white-space:nowrap;
  4468. text-transform:none;
  4469. }
  4470. #u42434_div {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:43px;
  4476. height:50px;
  4477. background:inherit;
  4478. background-color:rgba(255, 255, 255, 0);
  4479. border:none;
  4480. border-left:0px;
  4481. border-top:0px;
  4482. border-right:0px;
  4483. border-radius:0px;
  4484. border-bottom-right-radius:0px;
  4485. border-bottom-left-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:14px;
  4493. }
  4494. #u42434 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:366px;
  4498. top:124px;
  4499. width:43px;
  4500. height:50px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:14px;
  4506. }
  4507. #u42434 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:0px 0px 0px 0px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u42434_text {
  4515. border-width:0px;
  4516. white-space:nowrap;
  4517. text-transform:none;
  4518. }
  4519. #u42435_div {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:43px;
  4525. height:50px;
  4526. background:inherit;
  4527. background-color:rgba(255, 255, 255, 0);
  4528. border:none;
  4529. border-left:0px;
  4530. border-top:0px;
  4531. border-right:0px;
  4532. border-radius:0px;
  4533. border-bottom-right-radius:0px;
  4534. border-bottom-left-radius:0px;
  4535. -moz-box-shadow:none;
  4536. -webkit-box-shadow:none;
  4537. box-shadow:none;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:14px;
  4542. }
  4543. #u42435 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:439px;
  4547. top:124px;
  4548. width:43px;
  4549. height:50px;
  4550. display:flex;
  4551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:14px;
  4555. }
  4556. #u42435 .text {
  4557. position:absolute;
  4558. align-self:center;
  4559. padding:0px 0px 0px 0px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u42435_text {
  4564. border-width:0px;
  4565. white-space:nowrap;
  4566. text-transform:none;
  4567. }
  4568. #u42436 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:234px;
  4572. top:194px;
  4573. width:1355px;
  4574. height:1019px;
  4575. }
  4576. #u42436_state0 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:1355px;
  4582. height:1019px;
  4583. overflow:auto;
  4584. -webkit-overflow-scrolling:touch;
  4585. -ms-overflow-x:hidden;
  4586. overflow-x:hidden;
  4587. background-image:none;
  4588. border:none;
  4589. border-radius:0px;
  4590. -moz-box-shadow:none;
  4591. -webkit-box-shadow:none;
  4592. box-shadow:none;
  4593. }
  4594. #u42436_state0_content {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:1px;
  4600. height:1px;
  4601. }
  4602. #u42437 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:0px;
  4608. height:0px;
  4609. }
  4610. #u42438_div {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:1325px;
  4616. height:140px;
  4617. background:inherit;
  4618. background-color:rgba(255, 255, 255, 1);
  4619. border:none;
  4620. border-radius:9px;
  4621. -moz-box-shadow:none;
  4622. -webkit-box-shadow:none;
  4623. box-shadow:none;
  4624. }
  4625. #u42438 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:1325px;
  4631. height:140px;
  4632. display:flex;
  4633. }
  4634. #u42438 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u42438_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u42439_div {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:71px;
  4653. height:20px;
  4654. background:inherit;
  4655. background-color:rgba(255, 255, 255, 0);
  4656. border:none;
  4657. border-left:0px;
  4658. border-top:0px;
  4659. border-right:0px;
  4660. border-radius:0px;
  4661. border-bottom-right-radius:0px;
  4662. border-bottom-left-radius:0px;
  4663. -moz-box-shadow:none;
  4664. -webkit-box-shadow:none;
  4665. box-shadow:none;
  4666. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4667. font-weight:500;
  4668. font-style:normal;
  4669. font-size:14px;
  4670. }
  4671. #u42439 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:20px;
  4675. top:20px;
  4676. width:71px;
  4677. height:20px;
  4678. display:flex;
  4679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4680. font-weight:500;
  4681. font-style:normal;
  4682. font-size:14px;
  4683. }
  4684. #u42439 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:0px 0px 0px 0px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u42439_text {
  4692. border-width:0px;
  4693. white-space:nowrap;
  4694. text-transform:none;
  4695. }
  4696. #u42440_div {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:100px;
  4702. height:20px;
  4703. background:inherit;
  4704. background-color:rgba(255, 255, 255, 0);
  4705. border:none;
  4706. border-left:0px;
  4707. border-top:0px;
  4708. border-right:0px;
  4709. border-radius:0px;
  4710. border-bottom-right-radius:0px;
  4711. border-bottom-left-radius:0px;
  4712. -moz-box-shadow:none;
  4713. -webkit-box-shadow:none;
  4714. box-shadow:none;
  4715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:14px;
  4719. color:#555555;
  4720. }
  4721. #u42440 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:20px;
  4725. top:56px;
  4726. width:100px;
  4727. height:20px;
  4728. display:flex;
  4729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:14px;
  4733. color:#555555;
  4734. }
  4735. #u42440 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:0px 0px 0px 0px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u42440_text {
  4743. border-width:0px;
  4744. word-wrap:break-word;
  4745. text-transform:none;
  4746. }
  4747. #u42441_div {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:200px;
  4753. height:20px;
  4754. background:inherit;
  4755. background-color:rgba(255, 255, 255, 0);
  4756. border:none;
  4757. border-left:0px;
  4758. border-top:0px;
  4759. border-right:0px;
  4760. border-radius:0px;
  4761. border-bottom-right-radius:0px;
  4762. border-bottom-left-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:14px;
  4770. color:#555555;
  4771. }
  4772. #u42441 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:120px;
  4776. top:56px;
  4777. width:200px;
  4778. height:20px;
  4779. display:flex;
  4780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:14px;
  4784. color:#555555;
  4785. }
  4786. #u42441 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:0px 0px 0px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u42441_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. }
  4798. #u42442_div {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:100px;
  4804. height:20px;
  4805. background:inherit;
  4806. background-color:rgba(255, 255, 255, 0);
  4807. border:none;
  4808. border-left:0px;
  4809. border-top:0px;
  4810. border-right:0px;
  4811. border-radius:0px;
  4812. border-bottom-right-radius:0px;
  4813. border-bottom-left-radius:0px;
  4814. -moz-box-shadow:none;
  4815. -webkit-box-shadow:none;
  4816. box-shadow:none;
  4817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:14px;
  4821. color:#555555;
  4822. }
  4823. #u42442 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:320px;
  4827. top:56px;
  4828. width:100px;
  4829. height:20px;
  4830. display:flex;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:14px;
  4835. color:#555555;
  4836. }
  4837. #u42442 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:0px 0px 0px 0px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u42442_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. }
  4849. #u42443_div {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:200px;
  4855. height:20px;
  4856. background:inherit;
  4857. background-color:rgba(255, 255, 255, 0);
  4858. border:none;
  4859. border-left:0px;
  4860. border-top:0px;
  4861. border-right:0px;
  4862. border-radius:0px;
  4863. border-bottom-right-radius:0px;
  4864. border-bottom-left-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:14px;
  4872. color:#555555;
  4873. }
  4874. #u42443 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:420px;
  4878. top:56px;
  4879. width:200px;
  4880. height:20px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:14px;
  4886. color:#555555;
  4887. }
  4888. #u42443 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:0px 0px 0px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u42443_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. }
  4900. #u42444_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:100px;
  4906. height:20px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 0);
  4909. border:none;
  4910. border-left:0px;
  4911. border-top:0px;
  4912. border-right:0px;
  4913. border-radius:0px;
  4914. border-bottom-right-radius:0px;
  4915. border-bottom-left-radius:0px;
  4916. -moz-box-shadow:none;
  4917. -webkit-box-shadow:none;
  4918. box-shadow:none;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:14px;
  4923. color:#555555;
  4924. }
  4925. #u42444 {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:620px;
  4929. top:56px;
  4930. width:100px;
  4931. height:20px;
  4932. display:flex;
  4933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4934. font-weight:400;
  4935. font-style:normal;
  4936. font-size:14px;
  4937. color:#555555;
  4938. }
  4939. #u42444 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:0px 0px 0px 0px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u42444_text {
  4947. border-width:0px;
  4948. word-wrap:break-word;
  4949. text-transform:none;
  4950. }
  4951. #u42445_div {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:200px;
  4957. height:20px;
  4958. background:inherit;
  4959. background-color:rgba(255, 255, 255, 0);
  4960. border:none;
  4961. border-left:0px;
  4962. border-top:0px;
  4963. border-right:0px;
  4964. border-radius:0px;
  4965. border-bottom-right-radius:0px;
  4966. border-bottom-left-radius:0px;
  4967. -moz-box-shadow:none;
  4968. -webkit-box-shadow:none;
  4969. box-shadow:none;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:14px;
  4974. color:#555555;
  4975. }
  4976. #u42445 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:720px;
  4980. top:56px;
  4981. width:200px;
  4982. height:20px;
  4983. display:flex;
  4984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:14px;
  4988. color:#555555;
  4989. }
  4990. #u42445 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:0px 0px 0px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u42445_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. }
  5002. #u42446_div {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:100px;
  5008. height:20px;
  5009. background:inherit;
  5010. background-color:rgba(255, 255, 255, 0);
  5011. border:none;
  5012. border-left:0px;
  5013. border-top:0px;
  5014. border-right:0px;
  5015. border-radius:0px;
  5016. border-bottom-right-radius:0px;
  5017. border-bottom-left-radius:0px;
  5018. -moz-box-shadow:none;
  5019. -webkit-box-shadow:none;
  5020. box-shadow:none;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:14px;
  5025. color:#555555;
  5026. }
  5027. #u42446 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:20px;
  5031. top:96px;
  5032. width:100px;
  5033. height:20px;
  5034. display:flex;
  5035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:14px;
  5039. color:#555555;
  5040. }
  5041. #u42446 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:0px 0px 0px 0px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u42446_text {
  5049. border-width:0px;
  5050. word-wrap:break-word;
  5051. text-transform:none;
  5052. }
  5053. #u42447_div {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:200px;
  5059. height:20px;
  5060. background:inherit;
  5061. background-color:rgba(255, 255, 255, 0);
  5062. border:none;
  5063. border-left:0px;
  5064. border-top:0px;
  5065. border-right:0px;
  5066. border-radius:0px;
  5067. border-bottom-right-radius:0px;
  5068. border-bottom-left-radius:0px;
  5069. -moz-box-shadow:none;
  5070. -webkit-box-shadow:none;
  5071. box-shadow:none;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:14px;
  5076. color:#555555;
  5077. }
  5078. #u42447 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:120px;
  5082. top:96px;
  5083. width:200px;
  5084. height:20px;
  5085. display:flex;
  5086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5087. font-weight:400;
  5088. font-style:normal;
  5089. font-size:14px;
  5090. color:#555555;
  5091. }
  5092. #u42447 .text {
  5093. position:absolute;
  5094. align-self:center;
  5095. padding:0px 0px 0px 0px;
  5096. box-sizing:border-box;
  5097. width:100%;
  5098. }
  5099. #u42447_text {
  5100. border-width:0px;
  5101. word-wrap:break-word;
  5102. text-transform:none;
  5103. }
  5104. #u42448_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:100px;
  5110. height:20px;
  5111. background:inherit;
  5112. background-color:rgba(255, 255, 255, 0);
  5113. border:none;
  5114. border-left:0px;
  5115. border-top:0px;
  5116. border-right:0px;
  5117. border-radius:0px;
  5118. border-bottom-right-radius:0px;
  5119. border-bottom-left-radius:0px;
  5120. -moz-box-shadow:none;
  5121. -webkit-box-shadow:none;
  5122. box-shadow:none;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:14px;
  5127. color:#555555;
  5128. }
  5129. #u42448 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:320px;
  5133. top:96px;
  5134. width:100px;
  5135. height:20px;
  5136. display:flex;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:14px;
  5141. color:#555555;
  5142. }
  5143. #u42448 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:0px 0px 0px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u42448_text {
  5151. border-width:0px;
  5152. word-wrap:break-word;
  5153. text-transform:none;
  5154. }
  5155. #u42449_div {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:200px;
  5161. height:20px;
  5162. background:inherit;
  5163. background-color:rgba(255, 255, 255, 0);
  5164. border:none;
  5165. border-left:0px;
  5166. border-top:0px;
  5167. border-right:0px;
  5168. border-radius:0px;
  5169. border-bottom-right-radius:0px;
  5170. border-bottom-left-radius:0px;
  5171. -moz-box-shadow:none;
  5172. -webkit-box-shadow:none;
  5173. box-shadow:none;
  5174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5175. font-weight:400;
  5176. font-style:normal;
  5177. font-size:14px;
  5178. color:#555555;
  5179. }
  5180. #u42449 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:420px;
  5184. top:96px;
  5185. width:200px;
  5186. height:20px;
  5187. display:flex;
  5188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. color:#555555;
  5193. }
  5194. #u42449 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:0px 0px 0px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u42449_text {
  5202. border-width:0px;
  5203. word-wrap:break-word;
  5204. text-transform:none;
  5205. }
  5206. #u42450_div {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:40px;
  5212. height:17px;
  5213. background:inherit;
  5214. background-color:rgba(0, 191, 191, 0);
  5215. box-sizing:border-box;
  5216. border-width:1px;
  5217. border-style:solid;
  5218. border-color:rgba(0, 191, 191, 1);
  5219. border-radius:5px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:12px;
  5227. color:#00BFBF;
  5228. text-align:center;
  5229. }
  5230. #u42450 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:103px;
  5234. top:23px;
  5235. width:40px;
  5236. height:17px;
  5237. display:flex;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:12px;
  5242. color:#00BFBF;
  5243. text-align:center;
  5244. }
  5245. #u42450 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:0px 0px 0px 0px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u42450_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. }
  5257. #u42451_div {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:80px;
  5263. height:30px;
  5264. background:inherit;
  5265. background-color:rgba(24, 144, 255, 0);
  5266. box-sizing:border-box;
  5267. border-width:1px;
  5268. border-style:solid;
  5269. border-color:rgba(24, 144, 255, 1);
  5270. border-radius:4px;
  5271. -moz-box-shadow:none;
  5272. -webkit-box-shadow:none;
  5273. box-shadow:none;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. color:#0099FF;
  5279. }
  5280. #u42451 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:1196px;
  5284. top:60px;
  5285. width:80px;
  5286. height:30px;
  5287. display:flex;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:12px;
  5292. color:#0099FF;
  5293. }
  5294. #u42451 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:2px 8px 2px 8px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u42451_text {
  5302. border-width:0px;
  5303. word-wrap:break-word;
  5304. text-transform:none;
  5305. }
  5306. #u42452 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:0px;
  5312. height:0px;
  5313. }
  5314. #u42453_div {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:1325px;
  5320. height:100px;
  5321. background:inherit;
  5322. background-color:rgba(255, 255, 255, 1);
  5323. border:none;
  5324. border-radius:9px;
  5325. -moz-box-shadow:none;
  5326. -webkit-box-shadow:none;
  5327. box-shadow:none;
  5328. }
  5329. #u42453 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:150px;
  5334. width:1325px;
  5335. height:100px;
  5336. display:flex;
  5337. }
  5338. #u42453 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 2px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u42453_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. visibility:hidden;
  5350. }
  5351. #u42454_div {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:57px;
  5357. height:20px;
  5358. background:inherit;
  5359. background-color:rgba(255, 255, 255, 0);
  5360. border:none;
  5361. border-left:0px;
  5362. border-top:0px;
  5363. border-right:0px;
  5364. border-radius:0px;
  5365. border-bottom-right-radius:0px;
  5366. border-bottom-left-radius:0px;
  5367. -moz-box-shadow:none;
  5368. -webkit-box-shadow:none;
  5369. box-shadow:none;
  5370. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5371. font-weight:500;
  5372. font-style:normal;
  5373. font-size:14px;
  5374. }
  5375. #u42454 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:20px;
  5379. top:170px;
  5380. width:57px;
  5381. height:20px;
  5382. display:flex;
  5383. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5384. font-weight:500;
  5385. font-style:normal;
  5386. font-size:14px;
  5387. }
  5388. #u42454 .text {
  5389. position:absolute;
  5390. align-self:center;
  5391. padding:0px 0px 0px 0px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u42454_text {
  5396. border-width:0px;
  5397. white-space:nowrap;
  5398. text-transform:none;
  5399. }
  5400. #u42455_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:100px;
  5406. height:20px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 0);
  5409. border:none;
  5410. border-left:0px;
  5411. border-top:0px;
  5412. border-right:0px;
  5413. border-radius:0px;
  5414. border-bottom-right-radius:0px;
  5415. border-bottom-left-radius:0px;
  5416. -moz-box-shadow:none;
  5417. -webkit-box-shadow:none;
  5418. box-shadow:none;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:14px;
  5423. color:#555555;
  5424. }
  5425. #u42455 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:20px;
  5429. top:206px;
  5430. width:100px;
  5431. height:20px;
  5432. display:flex;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:14px;
  5437. color:#555555;
  5438. }
  5439. #u42455 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:0px 0px 0px 0px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u42455_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. }
  5451. #u42456_div {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:200px;
  5457. height:20px;
  5458. background:inherit;
  5459. background-color:rgba(255, 255, 255, 0);
  5460. border:none;
  5461. border-left:0px;
  5462. border-top:0px;
  5463. border-right:0px;
  5464. border-radius:0px;
  5465. border-bottom-right-radius:0px;
  5466. border-bottom-left-radius:0px;
  5467. -moz-box-shadow:none;
  5468. -webkit-box-shadow:none;
  5469. box-shadow:none;
  5470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:14px;
  5474. color:#555555;
  5475. }
  5476. #u42456 {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:120px;
  5480. top:206px;
  5481. width:200px;
  5482. height:20px;
  5483. display:flex;
  5484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:14px;
  5488. color:#555555;
  5489. }
  5490. #u42456 .text {
  5491. position:absolute;
  5492. align-self:center;
  5493. padding:0px 0px 0px 0px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u42456_text {
  5498. border-width:0px;
  5499. word-wrap:break-word;
  5500. text-transform:none;
  5501. }
  5502. #u42457_div {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:100px;
  5508. height:20px;
  5509. background:inherit;
  5510. background-color:rgba(255, 255, 255, 0);
  5511. border:none;
  5512. border-left:0px;
  5513. border-top:0px;
  5514. border-right:0px;
  5515. border-radius:0px;
  5516. border-bottom-right-radius:0px;
  5517. border-bottom-left-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:14px;
  5525. color:#555555;
  5526. }
  5527. #u42457 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:320px;
  5531. top:206px;
  5532. width:100px;
  5533. height:20px;
  5534. display:flex;
  5535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:14px;
  5539. color:#555555;
  5540. }
  5541. #u42457 .text {
  5542. position:absolute;
  5543. align-self:center;
  5544. padding:0px 0px 0px 0px;
  5545. box-sizing:border-box;
  5546. width:100%;
  5547. }
  5548. #u42457_text {
  5549. border-width:0px;
  5550. word-wrap:break-word;
  5551. text-transform:none;
  5552. }
  5553. #u42458_div {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:200px;
  5559. height:20px;
  5560. background:inherit;
  5561. background-color:rgba(255, 255, 255, 0);
  5562. border:none;
  5563. border-left:0px;
  5564. border-top:0px;
  5565. border-right:0px;
  5566. border-radius:0px;
  5567. border-bottom-right-radius:0px;
  5568. border-bottom-left-radius:0px;
  5569. -moz-box-shadow:none;
  5570. -webkit-box-shadow:none;
  5571. box-shadow:none;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:14px;
  5576. color:#555555;
  5577. }
  5578. #u42458 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:420px;
  5582. top:206px;
  5583. width:200px;
  5584. height:20px;
  5585. display:flex;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:14px;
  5590. color:#555555;
  5591. }
  5592. #u42458 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:0px 0px 0px 0px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u42458_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. }
  5604. #u42459_div {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:100px;
  5610. height:20px;
  5611. background:inherit;
  5612. background-color:rgba(255, 255, 255, 0);
  5613. border:none;
  5614. border-left:0px;
  5615. border-top:0px;
  5616. border-right:0px;
  5617. border-radius:0px;
  5618. border-bottom-right-radius:0px;
  5619. border-bottom-left-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. color:#555555;
  5628. }
  5629. #u42459 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:620px;
  5633. top:206px;
  5634. width:100px;
  5635. height:20px;
  5636. display:flex;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:14px;
  5641. color:#555555;
  5642. }
  5643. #u42459 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:0px 0px 0px 0px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u42459_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. }
  5655. #u42460_div {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:200px;
  5661. height:20px;
  5662. background:inherit;
  5663. background-color:rgba(255, 255, 255, 0);
  5664. border:none;
  5665. border-left:0px;
  5666. border-top:0px;
  5667. border-right:0px;
  5668. border-radius:0px;
  5669. border-bottom-right-radius:0px;
  5670. border-bottom-left-radius:0px;
  5671. -moz-box-shadow:none;
  5672. -webkit-box-shadow:none;
  5673. box-shadow:none;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:14px;
  5678. color:#555555;
  5679. }
  5680. #u42460 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:720px;
  5684. top:206px;
  5685. width:200px;
  5686. height:20px;
  5687. display:flex;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:14px;
  5692. color:#555555;
  5693. }
  5694. #u42460 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:0px 0px 0px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u42460_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. }
  5706. #u42461_div {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:80px;
  5712. height:30px;
  5713. background:inherit;
  5714. background-color:rgba(24, 144, 255, 0);
  5715. box-sizing:border-box;
  5716. border-width:1px;
  5717. border-style:solid;
  5718. border-color:rgba(24, 144, 255, 1);
  5719. border-radius:4px;
  5720. -moz-box-shadow:none;
  5721. -webkit-box-shadow:none;
  5722. box-shadow:none;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#0099FF;
  5728. }
  5729. #u42461 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:1196px;
  5733. top:186px;
  5734. width:80px;
  5735. height:30px;
  5736. display:flex;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. color:#0099FF;
  5742. }
  5743. #u42461 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:2px 8px 2px 8px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u42461_text {
  5751. border-width:0px;
  5752. word-wrap:break-word;
  5753. text-transform:none;
  5754. }
  5755. #u42462_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:40px;
  5761. height:17px;
  5762. background:inherit;
  5763. background-color:rgba(0, 191, 191, 0);
  5764. box-sizing:border-box;
  5765. border-width:1px;
  5766. border-style:solid;
  5767. border-color:rgba(245, 154, 35, 1);
  5768. border-radius:5px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:12px;
  5776. color:#F59A23;
  5777. text-align:center;
  5778. }
  5779. #u42462 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:90px;
  5783. top:172px;
  5784. width:40px;
  5785. height:17px;
  5786. display:flex;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:12px;
  5791. color:#F59A23;
  5792. text-align:center;
  5793. }
  5794. #u42462 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:0px 0px 0px 0px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u42462_text {
  5802. border-width:0px;
  5803. word-wrap:break-word;
  5804. text-transform:none;
  5805. }
  5806. #u42463 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:0px;
  5812. height:0px;
  5813. }
  5814. #u42464_div {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:1325px;
  5820. height:100px;
  5821. background:inherit;
  5822. background-color:rgba(255, 255, 255, 1);
  5823. border:none;
  5824. border-radius:9px;
  5825. -moz-box-shadow:none;
  5826. -webkit-box-shadow:none;
  5827. box-shadow:none;
  5828. }
  5829. #u42464 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:260px;
  5834. width:1325px;
  5835. height:100px;
  5836. display:flex;
  5837. }
  5838. #u42464 .text {
  5839. position:absolute;
  5840. align-self:center;
  5841. padding:2px 2px 2px 2px;
  5842. box-sizing:border-box;
  5843. width:100%;
  5844. }
  5845. #u42464_text {
  5846. border-width:0px;
  5847. word-wrap:break-word;
  5848. text-transform:none;
  5849. visibility:hidden;
  5850. }
  5851. #u42465_div {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:57px;
  5857. height:20px;
  5858. background:inherit;
  5859. background-color:rgba(255, 255, 255, 0);
  5860. border:none;
  5861. border-left:0px;
  5862. border-top:0px;
  5863. border-right:0px;
  5864. border-radius:0px;
  5865. border-bottom-right-radius:0px;
  5866. border-bottom-left-radius:0px;
  5867. -moz-box-shadow:none;
  5868. -webkit-box-shadow:none;
  5869. box-shadow:none;
  5870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5871. font-weight:500;
  5872. font-style:normal;
  5873. font-size:14px;
  5874. }
  5875. #u42465 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:20px;
  5879. top:280px;
  5880. width:57px;
  5881. height:20px;
  5882. display:flex;
  5883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5884. font-weight:500;
  5885. font-style:normal;
  5886. font-size:14px;
  5887. }
  5888. #u42465 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:0px 0px 0px 0px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u42465_text {
  5896. border-width:0px;
  5897. white-space:nowrap;
  5898. text-transform:none;
  5899. }
  5900. #u42466_div {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:100px;
  5906. height:20px;
  5907. background:inherit;
  5908. background-color:rgba(255, 255, 255, 0);
  5909. border:none;
  5910. border-left:0px;
  5911. border-top:0px;
  5912. border-right:0px;
  5913. border-radius:0px;
  5914. border-bottom-right-radius:0px;
  5915. border-bottom-left-radius:0px;
  5916. -moz-box-shadow:none;
  5917. -webkit-box-shadow:none;
  5918. box-shadow:none;
  5919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:14px;
  5923. color:#555555;
  5924. }
  5925. #u42466 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:20px;
  5929. top:316px;
  5930. width:100px;
  5931. height:20px;
  5932. display:flex;
  5933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:14px;
  5937. color:#555555;
  5938. }
  5939. #u42466 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:0px 0px 0px 0px;
  5943. box-sizing:border-box;
  5944. width:100%;
  5945. }
  5946. #u42466_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. }
  5951. #u42467_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:200px;
  5957. height:20px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 0);
  5960. border:none;
  5961. border-left:0px;
  5962. border-top:0px;
  5963. border-right:0px;
  5964. border-radius:0px;
  5965. border-bottom-right-radius:0px;
  5966. border-bottom-left-radius:0px;
  5967. -moz-box-shadow:none;
  5968. -webkit-box-shadow:none;
  5969. box-shadow:none;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:14px;
  5974. color:#555555;
  5975. }
  5976. #u42467 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:120px;
  5980. top:316px;
  5981. width:200px;
  5982. height:20px;
  5983. display:flex;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:14px;
  5988. color:#555555;
  5989. }
  5990. #u42467 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:0px 0px 0px 0px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u42467_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. }
  6002. #u42468_div {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:100px;
  6008. height:20px;
  6009. background:inherit;
  6010. background-color:rgba(255, 255, 255, 0);
  6011. border:none;
  6012. border-left:0px;
  6013. border-top:0px;
  6014. border-right:0px;
  6015. border-radius:0px;
  6016. border-bottom-right-radius:0px;
  6017. border-bottom-left-radius:0px;
  6018. -moz-box-shadow:none;
  6019. -webkit-box-shadow:none;
  6020. box-shadow:none;
  6021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:14px;
  6025. color:#555555;
  6026. }
  6027. #u42468 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:320px;
  6031. top:316px;
  6032. width:100px;
  6033. height:20px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:14px;
  6039. color:#555555;
  6040. }
  6041. #u42468 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:0px 0px 0px 0px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u42468_text {
  6049. border-width:0px;
  6050. word-wrap:break-word;
  6051. text-transform:none;
  6052. }
  6053. #u42469_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:200px;
  6059. height:20px;
  6060. background:inherit;
  6061. background-color:rgba(255, 255, 255, 0);
  6062. border:none;
  6063. border-left:0px;
  6064. border-top:0px;
  6065. border-right:0px;
  6066. border-radius:0px;
  6067. border-bottom-right-radius:0px;
  6068. border-bottom-left-radius:0px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. color:#555555;
  6077. }
  6078. #u42469 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:420px;
  6082. top:316px;
  6083. width:200px;
  6084. height:20px;
  6085. display:flex;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:14px;
  6090. color:#555555;
  6091. }
  6092. #u42469 .text {
  6093. position:absolute;
  6094. align-self:center;
  6095. padding:0px 0px 0px 0px;
  6096. box-sizing:border-box;
  6097. width:100%;
  6098. }
  6099. #u42469_text {
  6100. border-width:0px;
  6101. word-wrap:break-word;
  6102. text-transform:none;
  6103. }
  6104. #u42470_div {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:100px;
  6110. height:20px;
  6111. background:inherit;
  6112. background-color:rgba(255, 255, 255, 0);
  6113. border:none;
  6114. border-left:0px;
  6115. border-top:0px;
  6116. border-right:0px;
  6117. border-radius:0px;
  6118. border-bottom-right-radius:0px;
  6119. border-bottom-left-radius:0px;
  6120. -moz-box-shadow:none;
  6121. -webkit-box-shadow:none;
  6122. box-shadow:none;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:14px;
  6127. color:#555555;
  6128. }
  6129. #u42470 {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:620px;
  6133. top:316px;
  6134. width:100px;
  6135. height:20px;
  6136. display:flex;
  6137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6138. font-weight:400;
  6139. font-style:normal;
  6140. font-size:14px;
  6141. color:#555555;
  6142. }
  6143. #u42470 .text {
  6144. position:absolute;
  6145. align-self:center;
  6146. padding:0px 0px 0px 0px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u42470_text {
  6151. border-width:0px;
  6152. word-wrap:break-word;
  6153. text-transform:none;
  6154. }
  6155. #u42471_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:200px;
  6161. height:20px;
  6162. background:inherit;
  6163. background-color:rgba(255, 255, 255, 0);
  6164. border:none;
  6165. border-left:0px;
  6166. border-top:0px;
  6167. border-right:0px;
  6168. border-radius:0px;
  6169. border-bottom-right-radius:0px;
  6170. border-bottom-left-radius:0px;
  6171. -moz-box-shadow:none;
  6172. -webkit-box-shadow:none;
  6173. box-shadow:none;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:14px;
  6178. color:#555555;
  6179. }
  6180. #u42471 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:720px;
  6184. top:316px;
  6185. width:200px;
  6186. height:20px;
  6187. display:flex;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:14px;
  6192. color:#555555;
  6193. }
  6194. #u42471 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:0px 0px 0px 0px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u42471_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. }
  6206. #u42472_div {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:80px;
  6212. height:30px;
  6213. background:inherit;
  6214. background-color:rgba(24, 144, 255, 0);
  6215. box-sizing:border-box;
  6216. border-width:1px;
  6217. border-style:solid;
  6218. border-color:rgba(24, 144, 255, 1);
  6219. border-radius:4px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:12px;
  6227. color:#0099FF;
  6228. }
  6229. #u42472 {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:1196px;
  6233. top:296px;
  6234. width:80px;
  6235. height:30px;
  6236. display:flex;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:12px;
  6241. color:#0099FF;
  6242. }
  6243. #u42472 .text {
  6244. position:absolute;
  6245. align-self:center;
  6246. padding:2px 8px 2px 8px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u42472_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. }
  6255. #u42473_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:40px;
  6261. height:17px;
  6262. background:inherit;
  6263. background-color:rgba(0, 191, 191, 0);
  6264. box-sizing:border-box;
  6265. border-width:1px;
  6266. border-style:solid;
  6267. border-color:rgba(217, 0, 27, 1);
  6268. border-radius:5px;
  6269. -moz-box-shadow:none;
  6270. -webkit-box-shadow:none;
  6271. box-shadow:none;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:12px;
  6276. color:#D9001B;
  6277. text-align:center;
  6278. }
  6279. #u42473 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:90px;
  6283. top:283px;
  6284. width:40px;
  6285. height:17px;
  6286. display:flex;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:12px;
  6291. color:#D9001B;
  6292. text-align:center;
  6293. }
  6294. #u42473 .text {
  6295. position:absolute;
  6296. align-self:center;
  6297. padding:0px 0px 0px 0px;
  6298. box-sizing:border-box;
  6299. width:100%;
  6300. }
  6301. #u42473_text {
  6302. border-width:0px;
  6303. word-wrap:break-word;
  6304. text-transform:none;
  6305. }
  6306. #u42474 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:0px;
  6312. height:0px;
  6313. }
  6314. #u42475_div {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:1325px;
  6320. height:100px;
  6321. background:inherit;
  6322. background-color:rgba(255, 255, 255, 1);
  6323. border:none;
  6324. border-radius:9px;
  6325. -moz-box-shadow:none;
  6326. -webkit-box-shadow:none;
  6327. box-shadow:none;
  6328. }
  6329. #u42475 {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:530px;
  6334. width:1325px;
  6335. height:100px;
  6336. display:flex;
  6337. }
  6338. #u42475 .text {
  6339. position:absolute;
  6340. align-self:center;
  6341. padding:2px 2px 2px 2px;
  6342. box-sizing:border-box;
  6343. width:100%;
  6344. }
  6345. #u42475_text {
  6346. border-width:0px;
  6347. word-wrap:break-word;
  6348. text-transform:none;
  6349. visibility:hidden;
  6350. }
  6351. #u42476_div {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:71px;
  6357. height:20px;
  6358. background:inherit;
  6359. background-color:rgba(255, 255, 255, 0);
  6360. border:none;
  6361. border-left:0px;
  6362. border-top:0px;
  6363. border-right:0px;
  6364. border-radius:0px;
  6365. border-bottom-right-radius:0px;
  6366. border-bottom-left-radius:0px;
  6367. -moz-box-shadow:none;
  6368. -webkit-box-shadow:none;
  6369. box-shadow:none;
  6370. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6371. font-weight:500;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. }
  6375. #u42476 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:20px;
  6379. top:550px;
  6380. width:71px;
  6381. height:20px;
  6382. display:flex;
  6383. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6384. font-weight:500;
  6385. font-style:normal;
  6386. font-size:14px;
  6387. }
  6388. #u42476 .text {
  6389. position:absolute;
  6390. align-self:center;
  6391. padding:0px 0px 0px 0px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u42476_text {
  6396. border-width:0px;
  6397. white-space:nowrap;
  6398. text-transform:none;
  6399. }
  6400. #u42477_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:100px;
  6406. height:20px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 0);
  6409. border:none;
  6410. border-left:0px;
  6411. border-top:0px;
  6412. border-right:0px;
  6413. border-radius:0px;
  6414. border-bottom-right-radius:0px;
  6415. border-bottom-left-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:14px;
  6423. color:#555555;
  6424. }
  6425. #u42477 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:20px;
  6429. top:586px;
  6430. width:100px;
  6431. height:20px;
  6432. display:flex;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. color:#555555;
  6438. }
  6439. #u42477 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:0px 0px 0px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u42477_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. }
  6451. #u42478_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:200px;
  6457. height:20px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-left:0px;
  6462. border-top:0px;
  6463. border-right:0px;
  6464. border-radius:0px;
  6465. border-bottom-right-radius:0px;
  6466. border-bottom-left-radius:0px;
  6467. -moz-box-shadow:none;
  6468. -webkit-box-shadow:none;
  6469. box-shadow:none;
  6470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6471. font-weight:400;
  6472. font-style:normal;
  6473. font-size:14px;
  6474. color:#555555;
  6475. }
  6476. #u42478 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:120px;
  6480. top:586px;
  6481. width:200px;
  6482. height:20px;
  6483. display:flex;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:14px;
  6488. color:#555555;
  6489. }
  6490. #u42478 .text {
  6491. position:absolute;
  6492. align-self:center;
  6493. padding:0px 0px 0px 0px;
  6494. box-sizing:border-box;
  6495. width:100%;
  6496. }
  6497. #u42478_text {
  6498. border-width:0px;
  6499. word-wrap:break-word;
  6500. text-transform:none;
  6501. }
  6502. #u42479_div {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:100px;
  6508. height:20px;
  6509. background:inherit;
  6510. background-color:rgba(255, 255, 255, 0);
  6511. border:none;
  6512. border-left:0px;
  6513. border-top:0px;
  6514. border-right:0px;
  6515. border-radius:0px;
  6516. border-bottom-right-radius:0px;
  6517. border-bottom-left-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. color:#555555;
  6526. }
  6527. #u42479 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:320px;
  6531. top:586px;
  6532. width:100px;
  6533. height:20px;
  6534. display:flex;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:14px;
  6539. color:#555555;
  6540. }
  6541. #u42479 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:0px 0px 0px 0px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u42479_text {
  6549. border-width:0px;
  6550. word-wrap:break-word;
  6551. text-transform:none;
  6552. }
  6553. #u42480_div {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:200px;
  6559. height:20px;
  6560. background:inherit;
  6561. background-color:rgba(255, 255, 255, 0);
  6562. border:none;
  6563. border-left:0px;
  6564. border-top:0px;
  6565. border-right:0px;
  6566. border-radius:0px;
  6567. border-bottom-right-radius:0px;
  6568. border-bottom-left-radius:0px;
  6569. -moz-box-shadow:none;
  6570. -webkit-box-shadow:none;
  6571. box-shadow:none;
  6572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6573. font-weight:400;
  6574. font-style:normal;
  6575. font-size:14px;
  6576. color:#555555;
  6577. }
  6578. #u42480 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:420px;
  6582. top:586px;
  6583. width:200px;
  6584. height:20px;
  6585. display:flex;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:14px;
  6590. color:#555555;
  6591. }
  6592. #u42480 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:0px 0px 0px 0px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u42480_text {
  6600. border-width:0px;
  6601. word-wrap:break-word;
  6602. text-transform:none;
  6603. }
  6604. #u42481_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:100px;
  6610. height:20px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 0);
  6613. border:none;
  6614. border-left:0px;
  6615. border-top:0px;
  6616. border-right:0px;
  6617. border-radius:0px;
  6618. border-bottom-right-radius:0px;
  6619. border-bottom-left-radius:0px;
  6620. -moz-box-shadow:none;
  6621. -webkit-box-shadow:none;
  6622. box-shadow:none;
  6623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6624. font-weight:400;
  6625. font-style:normal;
  6626. font-size:14px;
  6627. color:#555555;
  6628. }
  6629. #u42481 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:620px;
  6633. top:586px;
  6634. width:100px;
  6635. height:20px;
  6636. display:flex;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:14px;
  6641. color:#555555;
  6642. }
  6643. #u42481 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:0px 0px 0px 0px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u42481_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. }
  6655. #u42482_div {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:200px;
  6661. height:20px;
  6662. background:inherit;
  6663. background-color:rgba(255, 255, 255, 0);
  6664. border:none;
  6665. border-left:0px;
  6666. border-top:0px;
  6667. border-right:0px;
  6668. border-radius:0px;
  6669. border-bottom-right-radius:0px;
  6670. border-bottom-left-radius:0px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:14px;
  6678. color:#555555;
  6679. }
  6680. #u42482 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:720px;
  6684. top:586px;
  6685. width:200px;
  6686. height:20px;
  6687. display:flex;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:14px;
  6692. color:#555555;
  6693. }
  6694. #u42482 .text {
  6695. position:absolute;
  6696. align-self:center;
  6697. padding:0px 0px 0px 0px;
  6698. box-sizing:border-box;
  6699. width:100%;
  6700. }
  6701. #u42482_text {
  6702. border-width:0px;
  6703. word-wrap:break-word;
  6704. text-transform:none;
  6705. }
  6706. #u42483_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:80px;
  6712. height:30px;
  6713. background:inherit;
  6714. background-color:rgba(24, 144, 255, 0);
  6715. box-sizing:border-box;
  6716. border-width:1px;
  6717. border-style:solid;
  6718. border-color:rgba(24, 144, 255, 1);
  6719. border-radius:4px;
  6720. -moz-box-shadow:none;
  6721. -webkit-box-shadow:none;
  6722. box-shadow:none;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:12px;
  6727. color:#0099FF;
  6728. }
  6729. #u42483 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:1196px;
  6733. top:565px;
  6734. width:80px;
  6735. height:30px;
  6736. display:flex;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:12px;
  6741. color:#0099FF;
  6742. }
  6743. #u42483 .text {
  6744. position:absolute;
  6745. align-self:center;
  6746. padding:2px 8px 2px 8px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u42483_text {
  6751. border-width:0px;
  6752. word-wrap:break-word;
  6753. text-transform:none;
  6754. }
  6755. #u42484_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:40px;
  6761. height:17px;
  6762. background:inherit;
  6763. background-color:rgba(242, 242, 242, 1);
  6764. border:none;
  6765. border-radius:5px;
  6766. -moz-box-shadow:none;
  6767. -webkit-box-shadow:none;
  6768. box-shadow:none;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:12px;
  6773. color:#AAAAAA;
  6774. text-align:center;
  6775. }
  6776. #u42484 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:103px;
  6780. top:552px;
  6781. width:40px;
  6782. height:17px;
  6783. display:flex;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:12px;
  6788. color:#AAAAAA;
  6789. text-align:center;
  6790. }
  6791. #u42484 .text {
  6792. position:absolute;
  6793. align-self:center;
  6794. padding:0px 0px 0px 0px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u42484_text {
  6799. border-width:0px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. }
  6803. #u42485 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:0px;
  6807. top:0px;
  6808. width:0px;
  6809. height:0px;
  6810. }
  6811. #u42486_div {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:0px;
  6815. top:0px;
  6816. width:1325px;
  6817. height:100px;
  6818. background:inherit;
  6819. background-color:rgba(255, 255, 255, 1);
  6820. border:none;
  6821. border-radius:9px;
  6822. -moz-box-shadow:none;
  6823. -webkit-box-shadow:none;
  6824. box-shadow:none;
  6825. }
  6826. #u42486 {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:640px;
  6831. width:1325px;
  6832. height:100px;
  6833. display:flex;
  6834. }
  6835. #u42486 .text {
  6836. position:absolute;
  6837. align-self:center;
  6838. padding:2px 2px 2px 2px;
  6839. box-sizing:border-box;
  6840. width:100%;
  6841. }
  6842. #u42486_text {
  6843. border-width:0px;
  6844. word-wrap:break-word;
  6845. text-transform:none;
  6846. visibility:hidden;
  6847. }
  6848. #u42487_div {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:0px;
  6852. top:0px;
  6853. width:57px;
  6854. height:20px;
  6855. background:inherit;
  6856. background-color:rgba(255, 255, 255, 0);
  6857. border:none;
  6858. border-left:0px;
  6859. border-top:0px;
  6860. border-right:0px;
  6861. border-radius:0px;
  6862. border-bottom-right-radius:0px;
  6863. border-bottom-left-radius:0px;
  6864. -moz-box-shadow:none;
  6865. -webkit-box-shadow:none;
  6866. box-shadow:none;
  6867. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6868. font-weight:500;
  6869. font-style:normal;
  6870. font-size:14px;
  6871. }
  6872. #u42487 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:20px;
  6876. top:660px;
  6877. width:57px;
  6878. height:20px;
  6879. display:flex;
  6880. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6881. font-weight:500;
  6882. font-style:normal;
  6883. font-size:14px;
  6884. }
  6885. #u42487 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:0px 0px 0px 0px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u42487_text {
  6893. border-width:0px;
  6894. white-space:nowrap;
  6895. text-transform:none;
  6896. }
  6897. #u42488_div {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:100px;
  6903. height:20px;
  6904. background:inherit;
  6905. background-color:rgba(255, 255, 255, 0);
  6906. border:none;
  6907. border-left:0px;
  6908. border-top:0px;
  6909. border-right:0px;
  6910. border-radius:0px;
  6911. border-bottom-right-radius:0px;
  6912. border-bottom-left-radius:0px;
  6913. -moz-box-shadow:none;
  6914. -webkit-box-shadow:none;
  6915. box-shadow:none;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:14px;
  6920. color:#555555;
  6921. }
  6922. #u42488 {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:20px;
  6926. top:696px;
  6927. width:100px;
  6928. height:20px;
  6929. display:flex;
  6930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:14px;
  6934. color:#555555;
  6935. }
  6936. #u42488 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:0px 0px 0px 0px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u42488_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. }
  6948. #u42489_div {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:200px;
  6954. height:20px;
  6955. background:inherit;
  6956. background-color:rgba(255, 255, 255, 0);
  6957. border:none;
  6958. border-left:0px;
  6959. border-top:0px;
  6960. border-right:0px;
  6961. border-radius:0px;
  6962. border-bottom-right-radius:0px;
  6963. border-bottom-left-radius:0px;
  6964. -moz-box-shadow:none;
  6965. -webkit-box-shadow:none;
  6966. box-shadow:none;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:14px;
  6971. color:#555555;
  6972. }
  6973. #u42489 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:120px;
  6977. top:696px;
  6978. width:200px;
  6979. height:20px;
  6980. display:flex;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:14px;
  6985. color:#555555;
  6986. }
  6987. #u42489 .text {
  6988. position:absolute;
  6989. align-self:center;
  6990. padding:0px 0px 0px 0px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u42489_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. }
  6999. #u42490_div {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:100px;
  7005. height:20px;
  7006. background:inherit;
  7007. background-color:rgba(255, 255, 255, 0);
  7008. border:none;
  7009. border-left:0px;
  7010. border-top:0px;
  7011. border-right:0px;
  7012. border-radius:0px;
  7013. border-bottom-right-radius:0px;
  7014. border-bottom-left-radius:0px;
  7015. -moz-box-shadow:none;
  7016. -webkit-box-shadow:none;
  7017. box-shadow:none;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:14px;
  7022. color:#555555;
  7023. }
  7024. #u42490 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:320px;
  7028. top:696px;
  7029. width:100px;
  7030. height:20px;
  7031. display:flex;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:14px;
  7036. color:#555555;
  7037. }
  7038. #u42490 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:0px 0px 0px 0px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u42490_text {
  7046. border-width:0px;
  7047. word-wrap:break-word;
  7048. text-transform:none;
  7049. }
  7050. #u42491_div {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:200px;
  7056. height:20px;
  7057. background:inherit;
  7058. background-color:rgba(255, 255, 255, 0);
  7059. border:none;
  7060. border-left:0px;
  7061. border-top:0px;
  7062. border-right:0px;
  7063. border-radius:0px;
  7064. border-bottom-right-radius:0px;
  7065. border-bottom-left-radius:0px;
  7066. -moz-box-shadow:none;
  7067. -webkit-box-shadow:none;
  7068. box-shadow:none;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:14px;
  7073. color:#555555;
  7074. }
  7075. #u42491 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:420px;
  7079. top:696px;
  7080. width:200px;
  7081. height:20px;
  7082. display:flex;
  7083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:14px;
  7087. color:#555555;
  7088. }
  7089. #u42491 .text {
  7090. position:absolute;
  7091. align-self:center;
  7092. padding:0px 0px 0px 0px;
  7093. box-sizing:border-box;
  7094. width:100%;
  7095. }
  7096. #u42491_text {
  7097. border-width:0px;
  7098. word-wrap:break-word;
  7099. text-transform:none;
  7100. }
  7101. #u42492_div {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:100px;
  7107. height:20px;
  7108. background:inherit;
  7109. background-color:rgba(255, 255, 255, 0);
  7110. border:none;
  7111. border-left:0px;
  7112. border-top:0px;
  7113. border-right:0px;
  7114. border-radius:0px;
  7115. border-bottom-right-radius:0px;
  7116. border-bottom-left-radius:0px;
  7117. -moz-box-shadow:none;
  7118. -webkit-box-shadow:none;
  7119. box-shadow:none;
  7120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. font-size:14px;
  7124. color:#555555;
  7125. }
  7126. #u42492 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:620px;
  7130. top:696px;
  7131. width:100px;
  7132. height:20px;
  7133. display:flex;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:14px;
  7138. color:#555555;
  7139. }
  7140. #u42492 .text {
  7141. position:absolute;
  7142. align-self:center;
  7143. padding:0px 0px 0px 0px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u42492_text {
  7148. border-width:0px;
  7149. word-wrap:break-word;
  7150. text-transform:none;
  7151. }
  7152. #u42493_div {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:200px;
  7158. height:20px;
  7159. background:inherit;
  7160. background-color:rgba(255, 255, 255, 0);
  7161. border:none;
  7162. border-left:0px;
  7163. border-top:0px;
  7164. border-right:0px;
  7165. border-radius:0px;
  7166. border-bottom-right-radius:0px;
  7167. border-bottom-left-radius:0px;
  7168. -moz-box-shadow:none;
  7169. -webkit-box-shadow:none;
  7170. box-shadow:none;
  7171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:14px;
  7175. color:#555555;
  7176. }
  7177. #u42493 {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:720px;
  7181. top:696px;
  7182. width:200px;
  7183. height:20px;
  7184. display:flex;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:14px;
  7189. color:#555555;
  7190. }
  7191. #u42493 .text {
  7192. position:absolute;
  7193. align-self:center;
  7194. padding:0px 0px 0px 0px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u42493_text {
  7199. border-width:0px;
  7200. word-wrap:break-word;
  7201. text-transform:none;
  7202. }
  7203. #u42494_div {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:0px;
  7207. top:0px;
  7208. width:80px;
  7209. height:30px;
  7210. background:inherit;
  7211. background-color:rgba(24, 144, 255, 0);
  7212. box-sizing:border-box;
  7213. border-width:1px;
  7214. border-style:solid;
  7215. border-color:rgba(24, 144, 255, 1);
  7216. border-radius:4px;
  7217. -moz-box-shadow:none;
  7218. -webkit-box-shadow:none;
  7219. box-shadow:none;
  7220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7221. font-weight:400;
  7222. font-style:normal;
  7223. font-size:12px;
  7224. color:#0099FF;
  7225. }
  7226. #u42494 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:1196px;
  7230. top:676px;
  7231. width:80px;
  7232. height:30px;
  7233. display:flex;
  7234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:12px;
  7238. color:#0099FF;
  7239. }
  7240. #u42494 .text {
  7241. position:absolute;
  7242. align-self:center;
  7243. padding:2px 8px 2px 8px;
  7244. box-sizing:border-box;
  7245. width:100%;
  7246. }
  7247. #u42494_text {
  7248. border-width:0px;
  7249. word-wrap:break-word;
  7250. text-transform:none;
  7251. }
  7252. #u42495_div {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:40px;
  7258. height:17px;
  7259. background:inherit;
  7260. background-color:rgba(0, 191, 191, 0);
  7261. box-sizing:border-box;
  7262. border-width:1px;
  7263. border-style:solid;
  7264. border-color:rgba(0, 191, 191, 1);
  7265. border-radius:5px;
  7266. -moz-box-shadow:none;
  7267. -webkit-box-shadow:none;
  7268. box-shadow:none;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:12px;
  7273. color:#00BFBF;
  7274. text-align:center;
  7275. }
  7276. #u42495 {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:90px;
  7280. top:660px;
  7281. width:40px;
  7282. height:17px;
  7283. display:flex;
  7284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7285. font-weight:400;
  7286. font-style:normal;
  7287. font-size:12px;
  7288. color:#00BFBF;
  7289. text-align:center;
  7290. }
  7291. #u42495 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:0px 0px 0px 0px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u42495_text {
  7299. border-width:0px;
  7300. word-wrap:break-word;
  7301. text-transform:none;
  7302. }
  7303. #u42496 {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:0px;
  7309. height:0px;
  7310. }
  7311. #u42497_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:1325px;
  7317. height:100px;
  7318. background:inherit;
  7319. background-color:rgba(255, 255, 255, 1);
  7320. border:none;
  7321. border-radius:9px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. }
  7326. #u42497 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:750px;
  7331. width:1325px;
  7332. height:100px;
  7333. display:flex;
  7334. }
  7335. #u42497 .text {
  7336. position:absolute;
  7337. align-self:center;
  7338. padding:2px 2px 2px 2px;
  7339. box-sizing:border-box;
  7340. width:100%;
  7341. }
  7342. #u42497_text {
  7343. border-width:0px;
  7344. word-wrap:break-word;
  7345. text-transform:none;
  7346. visibility:hidden;
  7347. }
  7348. #u42498_div {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:0px;
  7352. top:0px;
  7353. width:57px;
  7354. height:20px;
  7355. background:inherit;
  7356. background-color:rgba(255, 255, 255, 0);
  7357. border:none;
  7358. border-left:0px;
  7359. border-top:0px;
  7360. border-right:0px;
  7361. border-radius:0px;
  7362. border-bottom-right-radius:0px;
  7363. border-bottom-left-radius:0px;
  7364. -moz-box-shadow:none;
  7365. -webkit-box-shadow:none;
  7366. box-shadow:none;
  7367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7368. font-weight:500;
  7369. font-style:normal;
  7370. font-size:14px;
  7371. }
  7372. #u42498 {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:20px;
  7376. top:770px;
  7377. width:57px;
  7378. height:20px;
  7379. display:flex;
  7380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7381. font-weight:500;
  7382. font-style:normal;
  7383. font-size:14px;
  7384. }
  7385. #u42498 .text {
  7386. position:absolute;
  7387. align-self:center;
  7388. padding:0px 0px 0px 0px;
  7389. box-sizing:border-box;
  7390. width:100%;
  7391. }
  7392. #u42498_text {
  7393. border-width:0px;
  7394. white-space:nowrap;
  7395. text-transform:none;
  7396. }
  7397. #u42499_div {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:100px;
  7403. height:20px;
  7404. background:inherit;
  7405. background-color:rgba(255, 255, 255, 0);
  7406. border:none;
  7407. border-left:0px;
  7408. border-top:0px;
  7409. border-right:0px;
  7410. border-radius:0px;
  7411. border-bottom-right-radius:0px;
  7412. border-bottom-left-radius:0px;
  7413. -moz-box-shadow:none;
  7414. -webkit-box-shadow:none;
  7415. box-shadow:none;
  7416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7417. font-weight:400;
  7418. font-style:normal;
  7419. font-size:14px;
  7420. color:#555555;
  7421. }
  7422. #u42499 {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:20px;
  7426. top:806px;
  7427. width:100px;
  7428. height:20px;
  7429. display:flex;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:14px;
  7434. color:#555555;
  7435. }
  7436. #u42499 .text {
  7437. position:absolute;
  7438. align-self:center;
  7439. padding:0px 0px 0px 0px;
  7440. box-sizing:border-box;
  7441. width:100%;
  7442. }
  7443. #u42499_text {
  7444. border-width:0px;
  7445. word-wrap:break-word;
  7446. text-transform:none;
  7447. }
  7448. #u42500_div {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:200px;
  7454. height:20px;
  7455. background:inherit;
  7456. background-color:rgba(255, 255, 255, 0);
  7457. border:none;
  7458. border-left:0px;
  7459. border-top:0px;
  7460. border-right:0px;
  7461. border-radius:0px;
  7462. border-bottom-right-radius:0px;
  7463. border-bottom-left-radius:0px;
  7464. -moz-box-shadow:none;
  7465. -webkit-box-shadow:none;
  7466. box-shadow:none;
  7467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. font-size:14px;
  7471. color:#555555;
  7472. }
  7473. #u42500 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:120px;
  7477. top:806px;
  7478. width:200px;
  7479. height:20px;
  7480. display:flex;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. font-size:14px;
  7485. color:#555555;
  7486. }
  7487. #u42500 .text {
  7488. position:absolute;
  7489. align-self:center;
  7490. padding:0px 0px 0px 0px;
  7491. box-sizing:border-box;
  7492. width:100%;
  7493. }
  7494. #u42500_text {
  7495. border-width:0px;
  7496. word-wrap:break-word;
  7497. text-transform:none;
  7498. }
  7499. #u42501_div {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:100px;
  7505. height:20px;
  7506. background:inherit;
  7507. background-color:rgba(255, 255, 255, 0);
  7508. border:none;
  7509. border-left:0px;
  7510. border-top:0px;
  7511. border-right:0px;
  7512. border-radius:0px;
  7513. border-bottom-right-radius:0px;
  7514. border-bottom-left-radius:0px;
  7515. -moz-box-shadow:none;
  7516. -webkit-box-shadow:none;
  7517. box-shadow:none;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:14px;
  7522. color:#555555;
  7523. }
  7524. #u42501 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:320px;
  7528. top:806px;
  7529. width:100px;
  7530. height:20px;
  7531. display:flex;
  7532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:14px;
  7536. color:#555555;
  7537. }
  7538. #u42501 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:0px 0px 0px 0px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u42501_text {
  7546. border-width:0px;
  7547. word-wrap:break-word;
  7548. text-transform:none;
  7549. }
  7550. #u42502_div {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:200px;
  7556. height:20px;
  7557. background:inherit;
  7558. background-color:rgba(255, 255, 255, 0);
  7559. border:none;
  7560. border-left:0px;
  7561. border-top:0px;
  7562. border-right:0px;
  7563. border-radius:0px;
  7564. border-bottom-right-radius:0px;
  7565. border-bottom-left-radius:0px;
  7566. -moz-box-shadow:none;
  7567. -webkit-box-shadow:none;
  7568. box-shadow:none;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:14px;
  7573. color:#555555;
  7574. }
  7575. #u42502 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:420px;
  7579. top:806px;
  7580. width:200px;
  7581. height:20px;
  7582. display:flex;
  7583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7584. font-weight:400;
  7585. font-style:normal;
  7586. font-size:14px;
  7587. color:#555555;
  7588. }
  7589. #u42502 .text {
  7590. position:absolute;
  7591. align-self:center;
  7592. padding:0px 0px 0px 0px;
  7593. box-sizing:border-box;
  7594. width:100%;
  7595. }
  7596. #u42502_text {
  7597. border-width:0px;
  7598. word-wrap:break-word;
  7599. text-transform:none;
  7600. }
  7601. #u42503_div {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:100px;
  7607. height:20px;
  7608. background:inherit;
  7609. background-color:rgba(255, 255, 255, 0);
  7610. border:none;
  7611. border-left:0px;
  7612. border-top:0px;
  7613. border-right:0px;
  7614. border-radius:0px;
  7615. border-bottom-right-radius:0px;
  7616. border-bottom-left-radius:0px;
  7617. -moz-box-shadow:none;
  7618. -webkit-box-shadow:none;
  7619. box-shadow:none;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:14px;
  7624. color:#555555;
  7625. }
  7626. #u42503 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:620px;
  7630. top:806px;
  7631. width:100px;
  7632. height:20px;
  7633. display:flex;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:14px;
  7638. color:#555555;
  7639. }
  7640. #u42503 .text {
  7641. position:absolute;
  7642. align-self:center;
  7643. padding:0px 0px 0px 0px;
  7644. box-sizing:border-box;
  7645. width:100%;
  7646. }
  7647. #u42503_text {
  7648. border-width:0px;
  7649. word-wrap:break-word;
  7650. text-transform:none;
  7651. }
  7652. #u42504_div {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:200px;
  7658. height:20px;
  7659. background:inherit;
  7660. background-color:rgba(255, 255, 255, 0);
  7661. border:none;
  7662. border-left:0px;
  7663. border-top:0px;
  7664. border-right:0px;
  7665. border-radius:0px;
  7666. border-bottom-right-radius:0px;
  7667. border-bottom-left-radius:0px;
  7668. -moz-box-shadow:none;
  7669. -webkit-box-shadow:none;
  7670. box-shadow:none;
  7671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7672. font-weight:400;
  7673. font-style:normal;
  7674. font-size:14px;
  7675. color:#555555;
  7676. }
  7677. #u42504 {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:720px;
  7681. top:806px;
  7682. width:200px;
  7683. height:20px;
  7684. display:flex;
  7685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:14px;
  7689. color:#555555;
  7690. }
  7691. #u42504 .text {
  7692. position:absolute;
  7693. align-self:center;
  7694. padding:0px 0px 0px 0px;
  7695. box-sizing:border-box;
  7696. width:100%;
  7697. }
  7698. #u42504_text {
  7699. border-width:0px;
  7700. word-wrap:break-word;
  7701. text-transform:none;
  7702. }
  7703. #u42505_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:80px;
  7709. height:30px;
  7710. background:inherit;
  7711. background-color:rgba(24, 144, 255, 0);
  7712. box-sizing:border-box;
  7713. border-width:1px;
  7714. border-style:solid;
  7715. border-color:rgba(24, 144, 255, 1);
  7716. border-radius:4px;
  7717. -moz-box-shadow:none;
  7718. -webkit-box-shadow:none;
  7719. box-shadow:none;
  7720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7721. font-weight:400;
  7722. font-style:normal;
  7723. font-size:12px;
  7724. color:#0099FF;
  7725. }
  7726. #u42505 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:1196px;
  7730. top:785px;
  7731. width:80px;
  7732. height:30px;
  7733. display:flex;
  7734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:12px;
  7738. color:#0099FF;
  7739. }
  7740. #u42505 .text {
  7741. position:absolute;
  7742. align-self:center;
  7743. padding:2px 8px 2px 8px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u42505_text {
  7748. border-width:0px;
  7749. word-wrap:break-word;
  7750. text-transform:none;
  7751. }
  7752. #u42506_div {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:40px;
  7758. height:17px;
  7759. background:inherit;
  7760. background-color:rgba(0, 191, 191, 0);
  7761. box-sizing:border-box;
  7762. border-width:1px;
  7763. border-style:solid;
  7764. border-color:rgba(0, 191, 191, 1);
  7765. border-radius:5px;
  7766. -moz-box-shadow:none;
  7767. -webkit-box-shadow:none;
  7768. box-shadow:none;
  7769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:12px;
  7773. color:#00BFBF;
  7774. text-align:center;
  7775. }
  7776. #u42506 {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:90px;
  7780. top:772px;
  7781. width:40px;
  7782. height:17px;
  7783. display:flex;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:12px;
  7788. color:#00BFBF;
  7789. text-align:center;
  7790. }
  7791. #u42506 .text {
  7792. position:absolute;
  7793. align-self:center;
  7794. padding:0px 0px 0px 0px;
  7795. box-sizing:border-box;
  7796. width:100%;
  7797. }
  7798. #u42506_text {
  7799. border-width:0px;
  7800. word-wrap:break-word;
  7801. text-transform:none;
  7802. }
  7803. #u42507 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:0px;
  7809. height:0px;
  7810. }
  7811. #u42508_div {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:1325px;
  7817. height:100px;
  7818. background:inherit;
  7819. background-color:rgba(255, 255, 255, 1);
  7820. border:none;
  7821. border-radius:9px;
  7822. -moz-box-shadow:none;
  7823. -webkit-box-shadow:none;
  7824. box-shadow:none;
  7825. }
  7826. #u42508 {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:0px;
  7830. top:860px;
  7831. width:1325px;
  7832. height:100px;
  7833. display:flex;
  7834. }
  7835. #u42508 .text {
  7836. position:absolute;
  7837. align-self:center;
  7838. padding:2px 2px 2px 2px;
  7839. box-sizing:border-box;
  7840. width:100%;
  7841. }
  7842. #u42508_text {
  7843. border-width:0px;
  7844. word-wrap:break-word;
  7845. text-transform:none;
  7846. visibility:hidden;
  7847. }
  7848. #u42509_div {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:0px;
  7852. top:0px;
  7853. width:57px;
  7854. height:20px;
  7855. background:inherit;
  7856. background-color:rgba(255, 255, 255, 0);
  7857. border:none;
  7858. border-left:0px;
  7859. border-top:0px;
  7860. border-right:0px;
  7861. border-radius:0px;
  7862. border-bottom-right-radius:0px;
  7863. border-bottom-left-radius:0px;
  7864. -moz-box-shadow:none;
  7865. -webkit-box-shadow:none;
  7866. box-shadow:none;
  7867. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7868. font-weight:500;
  7869. font-style:normal;
  7870. font-size:14px;
  7871. }
  7872. #u42509 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:20px;
  7876. top:880px;
  7877. width:57px;
  7878. height:20px;
  7879. display:flex;
  7880. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7881. font-weight:500;
  7882. font-style:normal;
  7883. font-size:14px;
  7884. }
  7885. #u42509 .text {
  7886. position:absolute;
  7887. align-self:center;
  7888. padding:0px 0px 0px 0px;
  7889. box-sizing:border-box;
  7890. width:100%;
  7891. }
  7892. #u42509_text {
  7893. border-width:0px;
  7894. white-space:nowrap;
  7895. text-transform:none;
  7896. }
  7897. #u42510_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:100px;
  7903. height:20px;
  7904. background:inherit;
  7905. background-color:rgba(255, 255, 255, 0);
  7906. border:none;
  7907. border-left:0px;
  7908. border-top:0px;
  7909. border-right:0px;
  7910. border-radius:0px;
  7911. border-bottom-right-radius:0px;
  7912. border-bottom-left-radius:0px;
  7913. -moz-box-shadow:none;
  7914. -webkit-box-shadow:none;
  7915. box-shadow:none;
  7916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7917. font-weight:400;
  7918. font-style:normal;
  7919. font-size:14px;
  7920. color:#555555;
  7921. }
  7922. #u42510 {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:20px;
  7926. top:916px;
  7927. width:100px;
  7928. height:20px;
  7929. display:flex;
  7930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:14px;
  7934. color:#555555;
  7935. }
  7936. #u42510 .text {
  7937. position:absolute;
  7938. align-self:center;
  7939. padding:0px 0px 0px 0px;
  7940. box-sizing:border-box;
  7941. width:100%;
  7942. }
  7943. #u42510_text {
  7944. border-width:0px;
  7945. word-wrap:break-word;
  7946. text-transform:none;
  7947. }
  7948. #u42511_div {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:0px;
  7952. top:0px;
  7953. width:200px;
  7954. height:20px;
  7955. background:inherit;
  7956. background-color:rgba(255, 255, 255, 0);
  7957. border:none;
  7958. border-left:0px;
  7959. border-top:0px;
  7960. border-right:0px;
  7961. border-radius:0px;
  7962. border-bottom-right-radius:0px;
  7963. border-bottom-left-radius:0px;
  7964. -moz-box-shadow:none;
  7965. -webkit-box-shadow:none;
  7966. box-shadow:none;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:14px;
  7971. color:#555555;
  7972. }
  7973. #u42511 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:120px;
  7977. top:916px;
  7978. width:200px;
  7979. height:20px;
  7980. display:flex;
  7981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7982. font-weight:400;
  7983. font-style:normal;
  7984. font-size:14px;
  7985. color:#555555;
  7986. }
  7987. #u42511 .text {
  7988. position:absolute;
  7989. align-self:center;
  7990. padding:0px 0px 0px 0px;
  7991. box-sizing:border-box;
  7992. width:100%;
  7993. }
  7994. #u42511_text {
  7995. border-width:0px;
  7996. word-wrap:break-word;
  7997. text-transform:none;
  7998. }
  7999. #u42512_div {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:0px;
  8003. top:0px;
  8004. width:100px;
  8005. height:20px;
  8006. background:inherit;
  8007. background-color:rgba(255, 255, 255, 0);
  8008. border:none;
  8009. border-left:0px;
  8010. border-top:0px;
  8011. border-right:0px;
  8012. border-radius:0px;
  8013. border-bottom-right-radius:0px;
  8014. border-bottom-left-radius:0px;
  8015. -moz-box-shadow:none;
  8016. -webkit-box-shadow:none;
  8017. box-shadow:none;
  8018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:14px;
  8022. color:#555555;
  8023. }
  8024. #u42512 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:320px;
  8028. top:916px;
  8029. width:100px;
  8030. height:20px;
  8031. display:flex;
  8032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:14px;
  8036. color:#555555;
  8037. }
  8038. #u42512 .text {
  8039. position:absolute;
  8040. align-self:center;
  8041. padding:0px 0px 0px 0px;
  8042. box-sizing:border-box;
  8043. width:100%;
  8044. }
  8045. #u42512_text {
  8046. border-width:0px;
  8047. word-wrap:break-word;
  8048. text-transform:none;
  8049. }
  8050. #u42513_div {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:0px;
  8054. top:0px;
  8055. width:200px;
  8056. height:20px;
  8057. background:inherit;
  8058. background-color:rgba(255, 255, 255, 0);
  8059. border:none;
  8060. border-left:0px;
  8061. border-top:0px;
  8062. border-right:0px;
  8063. border-radius:0px;
  8064. border-bottom-right-radius:0px;
  8065. border-bottom-left-radius:0px;
  8066. -moz-box-shadow:none;
  8067. -webkit-box-shadow:none;
  8068. box-shadow:none;
  8069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:14px;
  8073. color:#555555;
  8074. }
  8075. #u42513 {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:420px;
  8079. top:916px;
  8080. width:200px;
  8081. height:20px;
  8082. display:flex;
  8083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:14px;
  8087. color:#555555;
  8088. }
  8089. #u42513 .text {
  8090. position:absolute;
  8091. align-self:center;
  8092. padding:0px 0px 0px 0px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u42513_text {
  8097. border-width:0px;
  8098. word-wrap:break-word;
  8099. text-transform:none;
  8100. }
  8101. #u42514_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:100px;
  8107. height:20px;
  8108. background:inherit;
  8109. background-color:rgba(255, 255, 255, 0);
  8110. border:none;
  8111. border-left:0px;
  8112. border-top:0px;
  8113. border-right:0px;
  8114. border-radius:0px;
  8115. border-bottom-right-radius:0px;
  8116. border-bottom-left-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:14px;
  8124. color:#555555;
  8125. }
  8126. #u42514 {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:620px;
  8130. top:916px;
  8131. width:100px;
  8132. height:20px;
  8133. display:flex;
  8134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8135. font-weight:400;
  8136. font-style:normal;
  8137. font-size:14px;
  8138. color:#555555;
  8139. }
  8140. #u42514 .text {
  8141. position:absolute;
  8142. align-self:center;
  8143. padding:0px 0px 0px 0px;
  8144. box-sizing:border-box;
  8145. width:100%;
  8146. }
  8147. #u42514_text {
  8148. border-width:0px;
  8149. word-wrap:break-word;
  8150. text-transform:none;
  8151. }
  8152. #u42515_div {
  8153. border-width:0px;
  8154. position:absolute;
  8155. left:0px;
  8156. top:0px;
  8157. width:200px;
  8158. height:20px;
  8159. background:inherit;
  8160. background-color:rgba(255, 255, 255, 0);
  8161. border:none;
  8162. border-left:0px;
  8163. border-top:0px;
  8164. border-right:0px;
  8165. border-radius:0px;
  8166. border-bottom-right-radius:0px;
  8167. border-bottom-left-radius:0px;
  8168. -moz-box-shadow:none;
  8169. -webkit-box-shadow:none;
  8170. box-shadow:none;
  8171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8172. font-weight:400;
  8173. font-style:normal;
  8174. font-size:14px;
  8175. color:#555555;
  8176. }
  8177. #u42515 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:720px;
  8181. top:916px;
  8182. width:200px;
  8183. height:20px;
  8184. display:flex;
  8185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:14px;
  8189. color:#555555;
  8190. }
  8191. #u42515 .text {
  8192. position:absolute;
  8193. align-self:center;
  8194. padding:0px 0px 0px 0px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u42515_text {
  8199. border-width:0px;
  8200. word-wrap:break-word;
  8201. text-transform:none;
  8202. }
  8203. #u42516_div {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:80px;
  8209. height:30px;
  8210. background:inherit;
  8211. background-color:rgba(24, 144, 255, 0);
  8212. box-sizing:border-box;
  8213. border-width:1px;
  8214. border-style:solid;
  8215. border-color:rgba(24, 144, 255, 1);
  8216. border-radius:4px;
  8217. -moz-box-shadow:none;
  8218. -webkit-box-shadow:none;
  8219. box-shadow:none;
  8220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8221. font-weight:400;
  8222. font-style:normal;
  8223. font-size:12px;
  8224. color:#0099FF;
  8225. }
  8226. #u42516 {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:1196px;
  8230. top:896px;
  8231. width:80px;
  8232. height:30px;
  8233. display:flex;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:12px;
  8238. color:#0099FF;
  8239. }
  8240. #u42516 .text {
  8241. position:absolute;
  8242. align-self:center;
  8243. padding:2px 8px 2px 8px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u42516_text {
  8248. border-width:0px;
  8249. word-wrap:break-word;
  8250. text-transform:none;
  8251. }
  8252. #u42517_div {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:0px;
  8256. top:0px;
  8257. width:40px;
  8258. height:17px;
  8259. background:inherit;
  8260. background-color:rgba(0, 191, 191, 0);
  8261. box-sizing:border-box;
  8262. border-width:1px;
  8263. border-style:solid;
  8264. border-color:rgba(0, 191, 191, 1);
  8265. border-radius:5px;
  8266. -moz-box-shadow:none;
  8267. -webkit-box-shadow:none;
  8268. box-shadow:none;
  8269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8270. font-weight:400;
  8271. font-style:normal;
  8272. font-size:12px;
  8273. color:#00BFBF;
  8274. text-align:center;
  8275. }
  8276. #u42517 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:90px;
  8280. top:880px;
  8281. width:40px;
  8282. height:17px;
  8283. display:flex;
  8284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8285. font-weight:400;
  8286. font-style:normal;
  8287. font-size:12px;
  8288. color:#00BFBF;
  8289. text-align:center;
  8290. }
  8291. #u42517 .text {
  8292. position:absolute;
  8293. align-self:center;
  8294. padding:0px 0px 0px 0px;
  8295. box-sizing:border-box;
  8296. width:100%;
  8297. }
  8298. #u42517_text {
  8299. border-width:0px;
  8300. word-wrap:break-word;
  8301. text-transform:none;
  8302. }
  8303. #u42518 {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:0px;
  8307. top:0px;
  8308. width:0px;
  8309. height:0px;
  8310. }
  8311. #u42519_div {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:1325px;
  8317. height:150px;
  8318. background:inherit;
  8319. background-color:rgba(255, 255, 255, 1);
  8320. border:none;
  8321. border-radius:9px;
  8322. -moz-box-shadow:none;
  8323. -webkit-box-shadow:none;
  8324. box-shadow:none;
  8325. }
  8326. #u42519 {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:0px;
  8330. top:970px;
  8331. width:1325px;
  8332. height:150px;
  8333. display:flex;
  8334. }
  8335. #u42519 .text {
  8336. position:absolute;
  8337. align-self:center;
  8338. padding:2px 2px 2px 2px;
  8339. box-sizing:border-box;
  8340. width:100%;
  8341. }
  8342. #u42519_text {
  8343. border-width:0px;
  8344. word-wrap:break-word;
  8345. text-transform:none;
  8346. visibility:hidden;
  8347. }
  8348. #u42520_div {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:71px;
  8354. height:20px;
  8355. background:inherit;
  8356. background-color:rgba(255, 255, 255, 0);
  8357. border:none;
  8358. border-left:0px;
  8359. border-top:0px;
  8360. border-right:0px;
  8361. border-radius:0px;
  8362. border-bottom-right-radius:0px;
  8363. border-bottom-left-radius:0px;
  8364. -moz-box-shadow:none;
  8365. -webkit-box-shadow:none;
  8366. box-shadow:none;
  8367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8368. font-weight:500;
  8369. font-style:normal;
  8370. font-size:14px;
  8371. }
  8372. #u42520 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:20px;
  8376. top:990px;
  8377. width:71px;
  8378. height:20px;
  8379. display:flex;
  8380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8381. font-weight:500;
  8382. font-style:normal;
  8383. font-size:14px;
  8384. }
  8385. #u42520 .text {
  8386. position:absolute;
  8387. align-self:center;
  8388. padding:0px 0px 0px 0px;
  8389. box-sizing:border-box;
  8390. width:100%;
  8391. }
  8392. #u42520_text {
  8393. border-width:0px;
  8394. white-space:nowrap;
  8395. text-transform:none;
  8396. }
  8397. #u42521_div {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:100px;
  8403. height:20px;
  8404. background:inherit;
  8405. background-color:rgba(255, 255, 255, 0);
  8406. border:none;
  8407. border-left:0px;
  8408. border-top:0px;
  8409. border-right:0px;
  8410. border-radius:0px;
  8411. border-bottom-right-radius:0px;
  8412. border-bottom-left-radius:0px;
  8413. -moz-box-shadow:none;
  8414. -webkit-box-shadow:none;
  8415. box-shadow:none;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:14px;
  8420. color:#555555;
  8421. }
  8422. #u42521 {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:20px;
  8426. top:1026px;
  8427. width:100px;
  8428. height:20px;
  8429. display:flex;
  8430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:14px;
  8434. color:#555555;
  8435. }
  8436. #u42521 .text {
  8437. position:absolute;
  8438. align-self:center;
  8439. padding:0px 0px 0px 0px;
  8440. box-sizing:border-box;
  8441. width:100%;
  8442. }
  8443. #u42521_text {
  8444. border-width:0px;
  8445. word-wrap:break-word;
  8446. text-transform:none;
  8447. }
  8448. #u42522_div {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:0px;
  8452. top:0px;
  8453. width:200px;
  8454. height:20px;
  8455. background:inherit;
  8456. background-color:rgba(255, 255, 255, 0);
  8457. border:none;
  8458. border-left:0px;
  8459. border-top:0px;
  8460. border-right:0px;
  8461. border-radius:0px;
  8462. border-bottom-right-radius:0px;
  8463. border-bottom-left-radius:0px;
  8464. -moz-box-shadow:none;
  8465. -webkit-box-shadow:none;
  8466. box-shadow:none;
  8467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8468. font-weight:400;
  8469. font-style:normal;
  8470. font-size:14px;
  8471. color:#555555;
  8472. }
  8473. #u42522 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:120px;
  8477. top:1026px;
  8478. width:200px;
  8479. height:20px;
  8480. display:flex;
  8481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8482. font-weight:400;
  8483. font-style:normal;
  8484. font-size:14px;
  8485. color:#555555;
  8486. }
  8487. #u42522 .text {
  8488. position:absolute;
  8489. align-self:center;
  8490. padding:0px 0px 0px 0px;
  8491. box-sizing:border-box;
  8492. width:100%;
  8493. }
  8494. #u42522_text {
  8495. border-width:0px;
  8496. word-wrap:break-word;
  8497. text-transform:none;
  8498. }
  8499. #u42523_div {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:0px;
  8503. top:0px;
  8504. width:100px;
  8505. height:20px;
  8506. background:inherit;
  8507. background-color:rgba(255, 255, 255, 0);
  8508. border:none;
  8509. border-left:0px;
  8510. border-top:0px;
  8511. border-right:0px;
  8512. border-radius:0px;
  8513. border-bottom-right-radius:0px;
  8514. border-bottom-left-radius:0px;
  8515. -moz-box-shadow:none;
  8516. -webkit-box-shadow:none;
  8517. box-shadow:none;
  8518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. font-size:14px;
  8522. color:#555555;
  8523. }
  8524. #u42523 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:320px;
  8528. top:1026px;
  8529. width:100px;
  8530. height:20px;
  8531. display:flex;
  8532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:14px;
  8536. color:#555555;
  8537. }
  8538. #u42523 .text {
  8539. position:absolute;
  8540. align-self:center;
  8541. padding:0px 0px 0px 0px;
  8542. box-sizing:border-box;
  8543. width:100%;
  8544. }
  8545. #u42523_text {
  8546. border-width:0px;
  8547. word-wrap:break-word;
  8548. text-transform:none;
  8549. }
  8550. #u42524_div {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:0px;
  8554. top:0px;
  8555. width:200px;
  8556. height:20px;
  8557. background:inherit;
  8558. background-color:rgba(255, 255, 255, 0);
  8559. border:none;
  8560. border-left:0px;
  8561. border-top:0px;
  8562. border-right:0px;
  8563. border-radius:0px;
  8564. border-bottom-right-radius:0px;
  8565. border-bottom-left-radius:0px;
  8566. -moz-box-shadow:none;
  8567. -webkit-box-shadow:none;
  8568. box-shadow:none;
  8569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8570. font-weight:400;
  8571. font-style:normal;
  8572. font-size:14px;
  8573. color:#555555;
  8574. }
  8575. #u42524 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:420px;
  8579. top:1026px;
  8580. width:200px;
  8581. height:20px;
  8582. display:flex;
  8583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. font-size:14px;
  8587. color:#555555;
  8588. }
  8589. #u42524 .text {
  8590. position:absolute;
  8591. align-self:center;
  8592. padding:0px 0px 0px 0px;
  8593. box-sizing:border-box;
  8594. width:100%;
  8595. }
  8596. #u42524_text {
  8597. border-width:0px;
  8598. word-wrap:break-word;
  8599. text-transform:none;
  8600. }
  8601. #u42525_div {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:0px;
  8605. top:0px;
  8606. width:100px;
  8607. height:20px;
  8608. background:inherit;
  8609. background-color:rgba(255, 255, 255, 0);
  8610. border:none;
  8611. border-left:0px;
  8612. border-top:0px;
  8613. border-right:0px;
  8614. border-radius:0px;
  8615. border-bottom-right-radius:0px;
  8616. border-bottom-left-radius:0px;
  8617. -moz-box-shadow:none;
  8618. -webkit-box-shadow:none;
  8619. box-shadow:none;
  8620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8621. font-weight:400;
  8622. font-style:normal;
  8623. font-size:14px;
  8624. color:#555555;
  8625. }
  8626. #u42525 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:620px;
  8630. top:1026px;
  8631. width:100px;
  8632. height:20px;
  8633. display:flex;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:14px;
  8638. color:#555555;
  8639. }
  8640. #u42525 .text {
  8641. position:absolute;
  8642. align-self:center;
  8643. padding:0px 0px 0px 0px;
  8644. box-sizing:border-box;
  8645. width:100%;
  8646. }
  8647. #u42525_text {
  8648. border-width:0px;
  8649. word-wrap:break-word;
  8650. text-transform:none;
  8651. }
  8652. #u42526_div {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:200px;
  8658. height:20px;
  8659. background:inherit;
  8660. background-color:rgba(255, 255, 255, 0);
  8661. border:none;
  8662. border-left:0px;
  8663. border-top:0px;
  8664. border-right:0px;
  8665. border-radius:0px;
  8666. border-bottom-right-radius:0px;
  8667. border-bottom-left-radius:0px;
  8668. -moz-box-shadow:none;
  8669. -webkit-box-shadow:none;
  8670. box-shadow:none;
  8671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8672. font-weight:400;
  8673. font-style:normal;
  8674. font-size:14px;
  8675. color:#555555;
  8676. }
  8677. #u42526 {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:720px;
  8681. top:1026px;
  8682. width:200px;
  8683. height:20px;
  8684. display:flex;
  8685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8686. font-weight:400;
  8687. font-style:normal;
  8688. font-size:14px;
  8689. color:#555555;
  8690. }
  8691. #u42526 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:0px 0px 0px 0px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u42526_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. }
  8703. #u42527_div {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:100px;
  8709. height:20px;
  8710. background:inherit;
  8711. background-color:rgba(255, 255, 255, 0);
  8712. border:none;
  8713. border-left:0px;
  8714. border-top:0px;
  8715. border-right:0px;
  8716. border-radius:0px;
  8717. border-bottom-right-radius:0px;
  8718. border-bottom-left-radius:0px;
  8719. -moz-box-shadow:none;
  8720. -webkit-box-shadow:none;
  8721. box-shadow:none;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:14px;
  8726. color:#555555;
  8727. }
  8728. #u42527 {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:20px;
  8732. top:1066px;
  8733. width:100px;
  8734. height:20px;
  8735. display:flex;
  8736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8737. font-weight:400;
  8738. font-style:normal;
  8739. font-size:14px;
  8740. color:#555555;
  8741. }
  8742. #u42527 .text {
  8743. position:absolute;
  8744. align-self:center;
  8745. padding:0px 0px 0px 0px;
  8746. box-sizing:border-box;
  8747. width:100%;
  8748. }
  8749. #u42527_text {
  8750. border-width:0px;
  8751. word-wrap:break-word;
  8752. text-transform:none;
  8753. }
  8754. #u42528_div {
  8755. border-width:0px;
  8756. position:absolute;
  8757. left:0px;
  8758. top:0px;
  8759. width:200px;
  8760. height:20px;
  8761. background:inherit;
  8762. background-color:rgba(255, 255, 255, 0);
  8763. border:none;
  8764. border-left:0px;
  8765. border-top:0px;
  8766. border-right:0px;
  8767. border-radius:0px;
  8768. border-bottom-right-radius:0px;
  8769. border-bottom-left-radius:0px;
  8770. -moz-box-shadow:none;
  8771. -webkit-box-shadow:none;
  8772. box-shadow:none;
  8773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8774. font-weight:400;
  8775. font-style:normal;
  8776. font-size:14px;
  8777. color:#555555;
  8778. }
  8779. #u42528 {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:120px;
  8783. top:1066px;
  8784. width:200px;
  8785. height:20px;
  8786. display:flex;
  8787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8788. font-weight:400;
  8789. font-style:normal;
  8790. font-size:14px;
  8791. color:#555555;
  8792. }
  8793. #u42528 .text {
  8794. position:absolute;
  8795. align-self:center;
  8796. padding:0px 0px 0px 0px;
  8797. box-sizing:border-box;
  8798. width:100%;
  8799. }
  8800. #u42528_text {
  8801. border-width:0px;
  8802. word-wrap:break-word;
  8803. text-transform:none;
  8804. }
  8805. #u42529_div {
  8806. border-width:0px;
  8807. position:absolute;
  8808. left:0px;
  8809. top:0px;
  8810. width:100px;
  8811. height:20px;
  8812. background:inherit;
  8813. background-color:rgba(255, 255, 255, 0);
  8814. border:none;
  8815. border-left:0px;
  8816. border-top:0px;
  8817. border-right:0px;
  8818. border-radius:0px;
  8819. border-bottom-right-radius:0px;
  8820. border-bottom-left-radius:0px;
  8821. -moz-box-shadow:none;
  8822. -webkit-box-shadow:none;
  8823. box-shadow:none;
  8824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8825. font-weight:400;
  8826. font-style:normal;
  8827. font-size:14px;
  8828. color:#555555;
  8829. }
  8830. #u42529 {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:320px;
  8834. top:1066px;
  8835. width:100px;
  8836. height:20px;
  8837. display:flex;
  8838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8839. font-weight:400;
  8840. font-style:normal;
  8841. font-size:14px;
  8842. color:#555555;
  8843. }
  8844. #u42529 .text {
  8845. position:absolute;
  8846. align-self:center;
  8847. padding:0px 0px 0px 0px;
  8848. box-sizing:border-box;
  8849. width:100%;
  8850. }
  8851. #u42529_text {
  8852. border-width:0px;
  8853. word-wrap:break-word;
  8854. text-transform:none;
  8855. }
  8856. #u42530_div {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:0px;
  8860. top:0px;
  8861. width:200px;
  8862. height:20px;
  8863. background:inherit;
  8864. background-color:rgba(255, 255, 255, 0);
  8865. border:none;
  8866. border-left:0px;
  8867. border-top:0px;
  8868. border-right:0px;
  8869. border-radius:0px;
  8870. border-bottom-right-radius:0px;
  8871. border-bottom-left-radius:0px;
  8872. -moz-box-shadow:none;
  8873. -webkit-box-shadow:none;
  8874. box-shadow:none;
  8875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8876. font-weight:400;
  8877. font-style:normal;
  8878. font-size:14px;
  8879. color:#555555;
  8880. }
  8881. #u42530 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:420px;
  8885. top:1066px;
  8886. width:200px;
  8887. height:20px;
  8888. display:flex;
  8889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8890. font-weight:400;
  8891. font-style:normal;
  8892. font-size:14px;
  8893. color:#555555;
  8894. }
  8895. #u42530 .text {
  8896. position:absolute;
  8897. align-self:center;
  8898. padding:0px 0px 0px 0px;
  8899. box-sizing:border-box;
  8900. width:100%;
  8901. }
  8902. #u42530_text {
  8903. border-width:0px;
  8904. word-wrap:break-word;
  8905. text-transform:none;
  8906. }
  8907. #u42531_div {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:0px;
  8911. top:0px;
  8912. width:80px;
  8913. height:30px;
  8914. background:inherit;
  8915. background-color:rgba(24, 144, 255, 0);
  8916. box-sizing:border-box;
  8917. border-width:1px;
  8918. border-style:solid;
  8919. border-color:rgba(24, 144, 255, 1);
  8920. border-radius:4px;
  8921. -moz-box-shadow:none;
  8922. -webkit-box-shadow:none;
  8923. box-shadow:none;
  8924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8925. font-weight:400;
  8926. font-style:normal;
  8927. font-size:12px;
  8928. color:#0099FF;
  8929. }
  8930. #u42531 {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:1196px;
  8934. top:1030px;
  8935. width:80px;
  8936. height:30px;
  8937. display:flex;
  8938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8939. font-weight:400;
  8940. font-style:normal;
  8941. font-size:12px;
  8942. color:#0099FF;
  8943. }
  8944. #u42531 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:2px 8px 2px 8px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u42531_text {
  8952. border-width:0px;
  8953. word-wrap:break-word;
  8954. text-transform:none;
  8955. }
  8956. #u42532_div {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:40px;
  8962. height:17px;
  8963. background:inherit;
  8964. background-color:rgba(0, 191, 191, 0);
  8965. box-sizing:border-box;
  8966. border-width:1px;
  8967. border-style:solid;
  8968. border-color:rgba(0, 191, 191, 1);
  8969. border-radius:5px;
  8970. -moz-box-shadow:none;
  8971. -webkit-box-shadow:none;
  8972. box-shadow:none;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:12px;
  8977. color:#00BFBF;
  8978. text-align:center;
  8979. }
  8980. #u42532 {
  8981. border-width:0px;
  8982. position:absolute;
  8983. left:103px;
  8984. top:992px;
  8985. width:40px;
  8986. height:17px;
  8987. display:flex;
  8988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8989. font-weight:400;
  8990. font-style:normal;
  8991. font-size:12px;
  8992. color:#00BFBF;
  8993. text-align:center;
  8994. }
  8995. #u42532 .text {
  8996. position:absolute;
  8997. align-self:center;
  8998. padding:0px 0px 0px 0px;
  8999. box-sizing:border-box;
  9000. width:100%;
  9001. }
  9002. #u42532_text {
  9003. border-width:0px;
  9004. word-wrap:break-word;
  9005. text-transform:none;
  9006. }
  9007. #u42533 {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:0px;
  9011. top:0px;
  9012. width:0px;
  9013. height:0px;
  9014. }
  9015. #u42534_div {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:1325px;
  9021. height:150px;
  9022. background:inherit;
  9023. background-color:rgba(255, 255, 255, 1);
  9024. border:none;
  9025. border-radius:9px;
  9026. -moz-box-shadow:none;
  9027. -webkit-box-shadow:none;
  9028. box-shadow:none;
  9029. }
  9030. #u42534 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:370px;
  9035. width:1325px;
  9036. height:150px;
  9037. display:flex;
  9038. }
  9039. #u42534 .text {
  9040. position:absolute;
  9041. align-self:center;
  9042. padding:2px 2px 2px 2px;
  9043. box-sizing:border-box;
  9044. width:100%;
  9045. }
  9046. #u42534_text {
  9047. border-width:0px;
  9048. word-wrap:break-word;
  9049. text-transform:none;
  9050. visibility:hidden;
  9051. }
  9052. #u42535_div {
  9053. border-width:0px;
  9054. position:absolute;
  9055. left:0px;
  9056. top:0px;
  9057. width:71px;
  9058. height:20px;
  9059. background:inherit;
  9060. background-color:rgba(255, 255, 255, 0);
  9061. border:none;
  9062. border-left:0px;
  9063. border-top:0px;
  9064. border-right:0px;
  9065. border-radius:0px;
  9066. border-bottom-right-radius:0px;
  9067. border-bottom-left-radius:0px;
  9068. -moz-box-shadow:none;
  9069. -webkit-box-shadow:none;
  9070. box-shadow:none;
  9071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9072. font-weight:500;
  9073. font-style:normal;
  9074. font-size:14px;
  9075. }
  9076. #u42535 {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:20px;
  9080. top:390px;
  9081. width:71px;
  9082. height:20px;
  9083. display:flex;
  9084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9085. font-weight:500;
  9086. font-style:normal;
  9087. font-size:14px;
  9088. }
  9089. #u42535 .text {
  9090. position:absolute;
  9091. align-self:center;
  9092. padding:0px 0px 0px 0px;
  9093. box-sizing:border-box;
  9094. width:100%;
  9095. }
  9096. #u42535_text {
  9097. border-width:0px;
  9098. white-space:nowrap;
  9099. text-transform:none;
  9100. }
  9101. #u42536_div {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:0px;
  9105. top:0px;
  9106. width:100px;
  9107. height:20px;
  9108. background:inherit;
  9109. background-color:rgba(255, 255, 255, 0);
  9110. border:none;
  9111. border-left:0px;
  9112. border-top:0px;
  9113. border-right:0px;
  9114. border-radius:0px;
  9115. border-bottom-right-radius:0px;
  9116. border-bottom-left-radius:0px;
  9117. -moz-box-shadow:none;
  9118. -webkit-box-shadow:none;
  9119. box-shadow:none;
  9120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9121. font-weight:400;
  9122. font-style:normal;
  9123. font-size:14px;
  9124. color:#555555;
  9125. }
  9126. #u42536 {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:20px;
  9130. top:426px;
  9131. width:100px;
  9132. height:20px;
  9133. display:flex;
  9134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9135. font-weight:400;
  9136. font-style:normal;
  9137. font-size:14px;
  9138. color:#555555;
  9139. }
  9140. #u42536 .text {
  9141. position:absolute;
  9142. align-self:center;
  9143. padding:0px 0px 0px 0px;
  9144. box-sizing:border-box;
  9145. width:100%;
  9146. }
  9147. #u42536_text {
  9148. border-width:0px;
  9149. word-wrap:break-word;
  9150. text-transform:none;
  9151. }
  9152. #u42537_div {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:0px;
  9156. top:0px;
  9157. width:200px;
  9158. height:20px;
  9159. background:inherit;
  9160. background-color:rgba(255, 255, 255, 0);
  9161. border:none;
  9162. border-left:0px;
  9163. border-top:0px;
  9164. border-right:0px;
  9165. border-radius:0px;
  9166. border-bottom-right-radius:0px;
  9167. border-bottom-left-radius:0px;
  9168. -moz-box-shadow:none;
  9169. -webkit-box-shadow:none;
  9170. box-shadow:none;
  9171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9172. font-weight:400;
  9173. font-style:normal;
  9174. font-size:14px;
  9175. color:#555555;
  9176. }
  9177. #u42537 {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:120px;
  9181. top:426px;
  9182. width:200px;
  9183. height:20px;
  9184. display:flex;
  9185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9186. font-weight:400;
  9187. font-style:normal;
  9188. font-size:14px;
  9189. color:#555555;
  9190. }
  9191. #u42537 .text {
  9192. position:absolute;
  9193. align-self:center;
  9194. padding:0px 0px 0px 0px;
  9195. box-sizing:border-box;
  9196. width:100%;
  9197. }
  9198. #u42537_text {
  9199. border-width:0px;
  9200. word-wrap:break-word;
  9201. text-transform:none;
  9202. }
  9203. #u42538_div {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:0px;
  9207. top:0px;
  9208. width:100px;
  9209. height:20px;
  9210. background:inherit;
  9211. background-color:rgba(255, 255, 255, 0);
  9212. border:none;
  9213. border-left:0px;
  9214. border-top:0px;
  9215. border-right:0px;
  9216. border-radius:0px;
  9217. border-bottom-right-radius:0px;
  9218. border-bottom-left-radius:0px;
  9219. -moz-box-shadow:none;
  9220. -webkit-box-shadow:none;
  9221. box-shadow:none;
  9222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9223. font-weight:400;
  9224. font-style:normal;
  9225. font-size:14px;
  9226. color:#555555;
  9227. }
  9228. #u42538 {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:320px;
  9232. top:426px;
  9233. width:100px;
  9234. height:20px;
  9235. display:flex;
  9236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9237. font-weight:400;
  9238. font-style:normal;
  9239. font-size:14px;
  9240. color:#555555;
  9241. }
  9242. #u42538 .text {
  9243. position:absolute;
  9244. align-self:center;
  9245. padding:0px 0px 0px 0px;
  9246. box-sizing:border-box;
  9247. width:100%;
  9248. }
  9249. #u42538_text {
  9250. border-width:0px;
  9251. word-wrap:break-word;
  9252. text-transform:none;
  9253. }
  9254. #u42539_div {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:0px;
  9258. top:0px;
  9259. width:200px;
  9260. height:20px;
  9261. background:inherit;
  9262. background-color:rgba(255, 255, 255, 0);
  9263. border:none;
  9264. border-left:0px;
  9265. border-top:0px;
  9266. border-right:0px;
  9267. border-radius:0px;
  9268. border-bottom-right-radius:0px;
  9269. border-bottom-left-radius:0px;
  9270. -moz-box-shadow:none;
  9271. -webkit-box-shadow:none;
  9272. box-shadow:none;
  9273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9274. font-weight:400;
  9275. font-style:normal;
  9276. font-size:14px;
  9277. color:#555555;
  9278. }
  9279. #u42539 {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:420px;
  9283. top:426px;
  9284. width:200px;
  9285. height:20px;
  9286. display:flex;
  9287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9288. font-weight:400;
  9289. font-style:normal;
  9290. font-size:14px;
  9291. color:#555555;
  9292. }
  9293. #u42539 .text {
  9294. position:absolute;
  9295. align-self:center;
  9296. padding:0px 0px 0px 0px;
  9297. box-sizing:border-box;
  9298. width:100%;
  9299. }
  9300. #u42539_text {
  9301. border-width:0px;
  9302. word-wrap:break-word;
  9303. text-transform:none;
  9304. }
  9305. #u42540_div {
  9306. border-width:0px;
  9307. position:absolute;
  9308. left:0px;
  9309. top:0px;
  9310. width:100px;
  9311. height:20px;
  9312. background:inherit;
  9313. background-color:rgba(255, 255, 255, 0);
  9314. border:none;
  9315. border-left:0px;
  9316. border-top:0px;
  9317. border-right:0px;
  9318. border-radius:0px;
  9319. border-bottom-right-radius:0px;
  9320. border-bottom-left-radius:0px;
  9321. -moz-box-shadow:none;
  9322. -webkit-box-shadow:none;
  9323. box-shadow:none;
  9324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9325. font-weight:400;
  9326. font-style:normal;
  9327. font-size:14px;
  9328. color:#555555;
  9329. }
  9330. #u42540 {
  9331. border-width:0px;
  9332. position:absolute;
  9333. left:620px;
  9334. top:426px;
  9335. width:100px;
  9336. height:20px;
  9337. display:flex;
  9338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9339. font-weight:400;
  9340. font-style:normal;
  9341. font-size:14px;
  9342. color:#555555;
  9343. }
  9344. #u42540 .text {
  9345. position:absolute;
  9346. align-self:center;
  9347. padding:0px 0px 0px 0px;
  9348. box-sizing:border-box;
  9349. width:100%;
  9350. }
  9351. #u42540_text {
  9352. border-width:0px;
  9353. word-wrap:break-word;
  9354. text-transform:none;
  9355. }
  9356. #u42541_div {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:0px;
  9361. width:200px;
  9362. height:20px;
  9363. background:inherit;
  9364. background-color:rgba(255, 255, 255, 0);
  9365. border:none;
  9366. border-left:0px;
  9367. border-top:0px;
  9368. border-right:0px;
  9369. border-radius:0px;
  9370. border-bottom-right-radius:0px;
  9371. border-bottom-left-radius:0px;
  9372. -moz-box-shadow:none;
  9373. -webkit-box-shadow:none;
  9374. box-shadow:none;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:14px;
  9379. color:#555555;
  9380. }
  9381. #u42541 {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:720px;
  9385. top:426px;
  9386. width:200px;
  9387. height:20px;
  9388. display:flex;
  9389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9390. font-weight:400;
  9391. font-style:normal;
  9392. font-size:14px;
  9393. color:#555555;
  9394. }
  9395. #u42541 .text {
  9396. position:absolute;
  9397. align-self:center;
  9398. padding:0px 0px 0px 0px;
  9399. box-sizing:border-box;
  9400. width:100%;
  9401. }
  9402. #u42541_text {
  9403. border-width:0px;
  9404. word-wrap:break-word;
  9405. text-transform:none;
  9406. }
  9407. #u42542_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:100px;
  9413. height:20px;
  9414. background:inherit;
  9415. background-color:rgba(255, 255, 255, 0);
  9416. border:none;
  9417. border-left:0px;
  9418. border-top:0px;
  9419. border-right:0px;
  9420. border-radius:0px;
  9421. border-bottom-right-radius:0px;
  9422. border-bottom-left-radius:0px;
  9423. -moz-box-shadow:none;
  9424. -webkit-box-shadow:none;
  9425. box-shadow:none;
  9426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9427. font-weight:400;
  9428. font-style:normal;
  9429. font-size:14px;
  9430. color:#555555;
  9431. }
  9432. #u42542 {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:20px;
  9436. top:466px;
  9437. width:100px;
  9438. height:20px;
  9439. display:flex;
  9440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9441. font-weight:400;
  9442. font-style:normal;
  9443. font-size:14px;
  9444. color:#555555;
  9445. }
  9446. #u42542 .text {
  9447. position:absolute;
  9448. align-self:center;
  9449. padding:0px 0px 0px 0px;
  9450. box-sizing:border-box;
  9451. width:100%;
  9452. }
  9453. #u42542_text {
  9454. border-width:0px;
  9455. word-wrap:break-word;
  9456. text-transform:none;
  9457. }
  9458. #u42543_div {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:0px;
  9462. top:0px;
  9463. width:200px;
  9464. height:20px;
  9465. background:inherit;
  9466. background-color:rgba(255, 255, 255, 0);
  9467. border:none;
  9468. border-left:0px;
  9469. border-top:0px;
  9470. border-right:0px;
  9471. border-radius:0px;
  9472. border-bottom-right-radius:0px;
  9473. border-bottom-left-radius:0px;
  9474. -moz-box-shadow:none;
  9475. -webkit-box-shadow:none;
  9476. box-shadow:none;
  9477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:14px;
  9481. color:#555555;
  9482. }
  9483. #u42543 {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:120px;
  9487. top:466px;
  9488. width:200px;
  9489. height:20px;
  9490. display:flex;
  9491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9492. font-weight:400;
  9493. font-style:normal;
  9494. font-size:14px;
  9495. color:#555555;
  9496. }
  9497. #u42543 .text {
  9498. position:absolute;
  9499. align-self:center;
  9500. padding:0px 0px 0px 0px;
  9501. box-sizing:border-box;
  9502. width:100%;
  9503. }
  9504. #u42543_text {
  9505. border-width:0px;
  9506. word-wrap:break-word;
  9507. text-transform:none;
  9508. }
  9509. #u42544_div {
  9510. border-width:0px;
  9511. position:absolute;
  9512. left:0px;
  9513. top:0px;
  9514. width:100px;
  9515. height:20px;
  9516. background:inherit;
  9517. background-color:rgba(255, 255, 255, 0);
  9518. border:none;
  9519. border-left:0px;
  9520. border-top:0px;
  9521. border-right:0px;
  9522. border-radius:0px;
  9523. border-bottom-right-radius:0px;
  9524. border-bottom-left-radius:0px;
  9525. -moz-box-shadow:none;
  9526. -webkit-box-shadow:none;
  9527. box-shadow:none;
  9528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:14px;
  9532. color:#555555;
  9533. }
  9534. #u42544 {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:320px;
  9538. top:466px;
  9539. width:100px;
  9540. height:20px;
  9541. display:flex;
  9542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9543. font-weight:400;
  9544. font-style:normal;
  9545. font-size:14px;
  9546. color:#555555;
  9547. }
  9548. #u42544 .text {
  9549. position:absolute;
  9550. align-self:center;
  9551. padding:0px 0px 0px 0px;
  9552. box-sizing:border-box;
  9553. width:100%;
  9554. }
  9555. #u42544_text {
  9556. border-width:0px;
  9557. word-wrap:break-word;
  9558. text-transform:none;
  9559. }
  9560. #u42545_div {
  9561. border-width:0px;
  9562. position:absolute;
  9563. left:0px;
  9564. top:0px;
  9565. width:200px;
  9566. height:20px;
  9567. background:inherit;
  9568. background-color:rgba(255, 255, 255, 0);
  9569. border:none;
  9570. border-left:0px;
  9571. border-top:0px;
  9572. border-right:0px;
  9573. border-radius:0px;
  9574. border-bottom-right-radius:0px;
  9575. border-bottom-left-radius:0px;
  9576. -moz-box-shadow:none;
  9577. -webkit-box-shadow:none;
  9578. box-shadow:none;
  9579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9580. font-weight:400;
  9581. font-style:normal;
  9582. font-size:14px;
  9583. color:#555555;
  9584. }
  9585. #u42545 {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:420px;
  9589. top:466px;
  9590. width:200px;
  9591. height:20px;
  9592. display:flex;
  9593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9594. font-weight:400;
  9595. font-style:normal;
  9596. font-size:14px;
  9597. color:#555555;
  9598. }
  9599. #u42545 .text {
  9600. position:absolute;
  9601. align-self:center;
  9602. padding:0px 0px 0px 0px;
  9603. box-sizing:border-box;
  9604. width:100%;
  9605. }
  9606. #u42545_text {
  9607. border-width:0px;
  9608. word-wrap:break-word;
  9609. text-transform:none;
  9610. }
  9611. #u42546_div {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:0px;
  9615. top:0px;
  9616. width:80px;
  9617. height:30px;
  9618. background:inherit;
  9619. background-color:rgba(24, 144, 255, 0);
  9620. box-sizing:border-box;
  9621. border-width:1px;
  9622. border-style:solid;
  9623. border-color:rgba(24, 144, 255, 1);
  9624. border-radius:4px;
  9625. -moz-box-shadow:none;
  9626. -webkit-box-shadow:none;
  9627. box-shadow:none;
  9628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9629. font-weight:400;
  9630. font-style:normal;
  9631. font-size:12px;
  9632. color:#0099FF;
  9633. }
  9634. #u42546 {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:1196px;
  9638. top:426px;
  9639. width:80px;
  9640. height:30px;
  9641. display:flex;
  9642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9643. font-weight:400;
  9644. font-style:normal;
  9645. font-size:12px;
  9646. color:#0099FF;
  9647. }
  9648. #u42546 .text {
  9649. position:absolute;
  9650. align-self:center;
  9651. padding:2px 20px 2px 0px;
  9652. box-sizing:border-box;
  9653. width:100%;
  9654. }
  9655. #u42546_text {
  9656. border-width:0px;
  9657. word-wrap:break-word;
  9658. text-transform:none;
  9659. }
  9660. #u42547_div {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:0px;
  9664. top:0px;
  9665. width:40px;
  9666. height:17px;
  9667. background:inherit;
  9668. background-color:rgba(0, 191, 191, 0);
  9669. box-sizing:border-box;
  9670. border-width:1px;
  9671. border-style:solid;
  9672. border-color:rgba(170, 170, 170, 1);
  9673. border-radius:5px;
  9674. -moz-box-shadow:none;
  9675. -webkit-box-shadow:none;
  9676. box-shadow:none;
  9677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9678. font-weight:400;
  9679. font-style:normal;
  9680. font-size:12px;
  9681. color:#AAAAAA;
  9682. text-align:center;
  9683. }
  9684. #u42547 {
  9685. border-width:0px;
  9686. position:absolute;
  9687. left:103px;
  9688. top:390px;
  9689. width:40px;
  9690. height:17px;
  9691. display:flex;
  9692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9693. font-weight:400;
  9694. font-style:normal;
  9695. font-size:12px;
  9696. color:#AAAAAA;
  9697. text-align:center;
  9698. }
  9699. #u42547 .text {
  9700. position:absolute;
  9701. align-self:center;
  9702. padding:0px 0px 0px 0px;
  9703. box-sizing:border-box;
  9704. width:100%;
  9705. }
  9706. #u42547_text {
  9707. border-width:0px;
  9708. word-wrap:break-word;
  9709. text-transform:none;
  9710. }
  9711. #u42548_img {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:0px;
  9715. top:0px;
  9716. width:12px;
  9717. height:7px;
  9718. }
  9719. #u42548 {
  9720. border-width:0px;
  9721. position:absolute;
  9722. left:1254px;
  9723. top:439px;
  9724. width:12px;
  9725. height:7px;
  9726. display:flex;
  9727. }
  9728. #u42548 .text {
  9729. position:absolute;
  9730. align-self:center;
  9731. padding:2px 2px 2px 2px;
  9732. box-sizing:border-box;
  9733. width:100%;
  9734. }
  9735. #u42548_text {
  9736. border-width:0px;
  9737. word-wrap:break-word;
  9738. text-transform:none;
  9739. visibility:hidden;
  9740. }
  9741. #u42549 {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:0px;
  9745. top:0px;
  9746. width:0px;
  9747. height:0px;
  9748. }
  9749. #u42550_div {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:0px;
  9753. top:0px;
  9754. width:100px;
  9755. height:100px;
  9756. background:inherit;
  9757. background-color:rgba(255, 255, 255, 1);
  9758. box-sizing:border-box;
  9759. border-width:1px;
  9760. border-style:solid;
  9761. border-color:rgba(242, 242, 242, 1);
  9762. border-radius:4px;
  9763. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  9764. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  9765. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  9766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9767. font-weight:400;
  9768. font-style:normal;
  9769. font-size:14px;
  9770. text-align:left;
  9771. }
  9772. #u42550 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:1152px;
  9776. top:451px;
  9777. width:100px;
  9778. height:100px;
  9779. display:flex;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:14px;
  9784. text-align:left;
  9785. }
  9786. #u42550 .text {
  9787. position:absolute;
  9788. align-self:center;
  9789. padding:2px 2px 2px 2px;
  9790. box-sizing:border-box;
  9791. width:100%;
  9792. }
  9793. #u42550_text {
  9794. border-width:0px;
  9795. word-wrap:break-word;
  9796. text-transform:none;
  9797. visibility:hidden;
  9798. }
  9799. #u42551_div {
  9800. border-width:0px;
  9801. position:absolute;
  9802. left:0px;
  9803. top:0px;
  9804. width:85px;
  9805. height:40px;
  9806. background:inherit;
  9807. background-color:rgba(255, 255, 255, 1);
  9808. box-sizing:border-box;
  9809. border-width:1px;
  9810. border-style:solid;
  9811. border-color:rgba(215, 215, 215, 1);
  9812. border-left:0px;
  9813. border-top:0px;
  9814. border-right:0px;
  9815. border-radius:0px;
  9816. border-bottom-right-radius:0px;
  9817. border-bottom-left-radius:0px;
  9818. -moz-box-shadow:none;
  9819. -webkit-box-shadow:none;
  9820. box-shadow:none;
  9821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9822. font-weight:400;
  9823. font-style:normal;
  9824. font-size:14px;
  9825. }
  9826. #u42551 {
  9827. border-width:0px;
  9828. position:absolute;
  9829. left:1160px;
  9830. top:461px;
  9831. width:85px;
  9832. height:40px;
  9833. display:flex;
  9834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9835. font-weight:400;
  9836. font-style:normal;
  9837. font-size:14px;
  9838. }
  9839. #u42551 .text {
  9840. position:absolute;
  9841. align-self:center;
  9842. padding:2px 2px 2px 2px;
  9843. box-sizing:border-box;
  9844. width:100%;
  9845. }
  9846. #u42551_text {
  9847. border-width:0px;
  9848. word-wrap:break-word;
  9849. text-transform:none;
  9850. }
  9851. #u42552_div {
  9852. border-width:0px;
  9853. position:absolute;
  9854. left:0px;
  9855. top:0px;
  9856. width:85px;
  9857. height:40px;
  9858. background:inherit;
  9859. background-color:rgba(255, 255, 255, 1);
  9860. border:none;
  9861. border-left:0px;
  9862. border-top:0px;
  9863. border-right:0px;
  9864. border-radius:0px;
  9865. border-bottom-right-radius:0px;
  9866. border-bottom-left-radius:0px;
  9867. -moz-box-shadow:none;
  9868. -webkit-box-shadow:none;
  9869. box-shadow:none;
  9870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9871. font-weight:400;
  9872. font-style:normal;
  9873. font-size:14px;
  9874. }
  9875. #u42552 {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:1160px;
  9879. top:501px;
  9880. width:85px;
  9881. height:40px;
  9882. display:flex;
  9883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9884. font-weight:400;
  9885. font-style:normal;
  9886. font-size:14px;
  9887. }
  9888. #u42552 .text {
  9889. position:absolute;
  9890. align-self:center;
  9891. padding:2px 2px 2px 2px;
  9892. box-sizing:border-box;
  9893. width:100%;
  9894. }
  9895. #u42552_text {
  9896. border-width:0px;
  9897. word-wrap:break-word;
  9898. text-transform:none;
  9899. }
  9900. #u42553_div {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:0px;
  9904. top:0px;
  9905. width:43px;
  9906. height:50px;
  9907. background:inherit;
  9908. background-color:rgba(255, 255, 255, 0);
  9909. border:none;
  9910. border-left:0px;
  9911. border-top:0px;
  9912. border-right:0px;
  9913. border-radius:0px;
  9914. border-bottom-right-radius:0px;
  9915. border-bottom-left-radius:0px;
  9916. -moz-box-shadow:none;
  9917. -webkit-box-shadow:none;
  9918. box-shadow:none;
  9919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9920. font-weight:400;
  9921. font-style:normal;
  9922. font-size:14px;
  9923. }
  9924. #u42553 {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:512px;
  9928. top:124px;
  9929. width:43px;
  9930. height:50px;
  9931. display:flex;
  9932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9933. font-weight:400;
  9934. font-style:normal;
  9935. font-size:14px;
  9936. }
  9937. #u42553 .text {
  9938. position:absolute;
  9939. align-self:center;
  9940. padding:0px 0px 0px 0px;
  9941. box-sizing:border-box;
  9942. width:100%;
  9943. }
  9944. #u42553_text {
  9945. border-width:0px;
  9946. white-space:nowrap;
  9947. text-transform:none;
  9948. }
  9949. #u42554_div {
  9950. border-width:0px;
  9951. position:absolute;
  9952. left:0px;
  9953. top:0px;
  9954. width:43px;
  9955. height:50px;
  9956. background:inherit;
  9957. background-color:rgba(255, 255, 255, 0);
  9958. border:none;
  9959. border-left:0px;
  9960. border-top:0px;
  9961. border-right:0px;
  9962. border-radius:0px;
  9963. border-bottom-right-radius:0px;
  9964. border-bottom-left-radius:0px;
  9965. -moz-box-shadow:none;
  9966. -webkit-box-shadow:none;
  9967. box-shadow:none;
  9968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9969. font-weight:400;
  9970. font-style:normal;
  9971. font-size:14px;
  9972. }
  9973. #u42554 {
  9974. border-width:0px;
  9975. position:absolute;
  9976. left:585px;
  9977. top:124px;
  9978. width:43px;
  9979. height:50px;
  9980. display:flex;
  9981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9982. font-weight:400;
  9983. font-style:normal;
  9984. font-size:14px;
  9985. }
  9986. #u42554 .text {
  9987. position:absolute;
  9988. align-self:center;
  9989. padding:0px 0px 0px 0px;
  9990. box-sizing:border-box;
  9991. width:100%;
  9992. }
  9993. #u42554_text {
  9994. border-width:0px;
  9995. white-space:nowrap;
  9996. text-transform:none;
  9997. }
  9998. #u42555_div {
  9999. border-width:0px;
  10000. position:absolute;
  10001. left:0px;
  10002. top:0px;
  10003. width:43px;
  10004. height:50px;
  10005. background:inherit;
  10006. background-color:rgba(255, 255, 255, 0);
  10007. border:none;
  10008. border-left:0px;
  10009. border-top:0px;
  10010. border-right:0px;
  10011. border-radius:0px;
  10012. border-bottom-right-radius:0px;
  10013. border-bottom-left-radius:0px;
  10014. -moz-box-shadow:none;
  10015. -webkit-box-shadow:none;
  10016. box-shadow:none;
  10017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10018. font-weight:400;
  10019. font-style:normal;
  10020. font-size:14px;
  10021. }
  10022. #u42555 {
  10023. border-width:0px;
  10024. position:absolute;
  10025. left:293px;
  10026. top:124px;
  10027. width:43px;
  10028. height:50px;
  10029. display:flex;
  10030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10031. font-weight:400;
  10032. font-style:normal;
  10033. font-size:14px;
  10034. }
  10035. #u42555 .text {
  10036. position:absolute;
  10037. align-self:center;
  10038. padding:0px 0px 0px 0px;
  10039. box-sizing:border-box;
  10040. width:100%;
  10041. }
  10042. #u42555_text {
  10043. border-width:0px;
  10044. white-space:nowrap;
  10045. text-transform:none;
  10046. }
  10047. #u42556_div {
  10048. border-width:0px;
  10049. position:absolute;
  10050. left:0px;
  10051. top:0px;
  10052. width:85px;
  10053. height:20px;
  10054. background:inherit;
  10055. background-color:rgba(30, 42, 68, 1);
  10056. border:none;
  10057. border-radius:0px;
  10058. -moz-box-shadow:none;
  10059. -webkit-box-shadow:none;
  10060. box-shadow:none;
  10061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10062. font-weight:400;
  10063. font-style:normal;
  10064. color:#FFFFFF;
  10065. }
  10066. #u42556 {
  10067. border-width:0px;
  10068. position:absolute;
  10069. left:1374px;
  10070. top:15px;
  10071. width:85px;
  10072. height:20px;
  10073. display:flex;
  10074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10075. font-weight:400;
  10076. font-style:normal;
  10077. color:#FFFFFF;
  10078. }
  10079. #u42556 .text {
  10080. position:absolute;
  10081. align-self:flex-start;
  10082. padding:0px 0px 0px 0px;
  10083. box-sizing:border-box;
  10084. width:100%;
  10085. }
  10086. #u42556_text {
  10087. border-width:0px;
  10088. white-space:nowrap;
  10089. text-transform:none;
  10090. }