styles.css 190 KB

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