styles.css 161 KB

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