styles.css 127 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1922px;
  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. #u42779_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u42779 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u42779 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u42779_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u42780_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u42780 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u42780 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u42780_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u42781 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u42782_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u42782 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u42782 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u42782_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u42783 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u42784_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u42784 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u42784 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u42784_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u42785_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u42785 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u42785 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u42785_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u42786 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u42787_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u42787 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u42787 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u42787_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u42788_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u42788 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u42788 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u42788_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u42789_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u42789 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u42789 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u42789_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u42790_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u42790 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u42790 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u42790_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u42791_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u42791 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u42791 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u42791_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u42792_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u42792 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u42792 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u42792_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u42793 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u42794_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u42794 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u42794 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u42794_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u42795_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u42795 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u42795 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u42795_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u42796 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u42797_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u42797 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u42797 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u42797_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u42798_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u42798 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u42798 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u42798_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u42799_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u42799 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u42799 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u42799_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u42800 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u42801_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u42801 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u42801 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u42801_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u42802_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u42802 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u42802 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u42802_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u42803 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u42804_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u42804 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u42804 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u42804_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u42805_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u42805 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u42805 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u42805_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u42806_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u42806 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:105px;
  804. width:375px;
  805. height:735px;
  806. display:flex;
  807. }
  808. #u42806 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u42806_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u42807_div {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:109px;
  827. height:25px;
  828. background:inherit;
  829. background-color:rgba(255, 255, 255, 0);
  830. border:none;
  831. border-radius:0px;
  832. -moz-box-shadow:none;
  833. -webkit-box-shadow:none;
  834. box-shadow:none;
  835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  836. font-weight:500;
  837. font-style:normal;
  838. font-size:18px;
  839. }
  840. #u42807 {
  841. border-width:0px;
  842. position:absolute;
  843. left:66px;
  844. top:74px;
  845. width:109px;
  846. height:25px;
  847. display:flex;
  848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  849. font-weight:500;
  850. font-style:normal;
  851. font-size:18px;
  852. }
  853. #u42807 .text {
  854. position:absolute;
  855. align-self:flex-start;
  856. padding:0px 0px 0px 0px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u42807_text {
  861. border-width:0px;
  862. white-space:nowrap;
  863. text-transform:none;
  864. }
  865. #u42808_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:13px;
  871. height:19px;
  872. }
  873. #u42808 {
  874. border-width:0px;
  875. position:absolute;
  876. left:44px;
  877. top:77px;
  878. width:13px;
  879. height:19px;
  880. display:flex;
  881. }
  882. #u42808 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u42808_text {
  890. border-width:0px;
  891. word-wrap:break-word;
  892. text-transform:none;
  893. visibility:hidden;
  894. }
  895. #u42809_div {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:375px;
  901. height:611px;
  902. background:inherit;
  903. background-color:rgba(255, 255, 255, 1);
  904. border:none;
  905. border-radius:0px;
  906. -moz-box-shadow:none;
  907. -webkit-box-shadow:none;
  908. box-shadow:none;
  909. }
  910. #u42809 {
  911. border-width:0px;
  912. position:absolute;
  913. left:29px;
  914. top:179px;
  915. width:375px;
  916. height:611px;
  917. display:flex;
  918. }
  919. #u42809 .text {
  920. position:absolute;
  921. align-self:center;
  922. padding:2px 2px 2px 2px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u42809_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u42810_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:349px;
  938. height:53px;
  939. }
  940. #u42810 {
  941. border-width:0px;
  942. position:absolute;
  943. left:42px;
  944. top:116px;
  945. width:349px;
  946. height:53px;
  947. display:flex;
  948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  949. font-weight:400;
  950. font-style:normal;
  951. }
  952. #u42810 .text {
  953. position:absolute;
  954. align-self:center;
  955. padding:2px 2px 2px 2px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u42810_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. }
  964. #u42811 {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:0px;
  970. height:0px;
  971. }
  972. #u42812_div {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:349px;
  978. height:59px;
  979. background:inherit;
  980. background-color:rgba(242, 242, 242, 1);
  981. border:none;
  982. border-radius:4px;
  983. -moz-box-shadow:none;
  984. -webkit-box-shadow:none;
  985. box-shadow:none;
  986. }
  987. #u42812 {
  988. border-width:0px;
  989. position:absolute;
  990. left:42px;
  991. top:199px;
  992. width:349px;
  993. height:59px;
  994. display:flex;
  995. }
  996. #u42812 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u42812_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u42813_img {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:30px;
  1015. height:30px;
  1016. }
  1017. #u42813 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:58px;
  1021. top:214px;
  1022. width:30px;
  1023. height:30px;
  1024. display:flex;
  1025. }
  1026. #u42813 .text {
  1027. position:absolute;
  1028. align-self:center;
  1029. padding:2px 2px 2px 2px;
  1030. box-sizing:border-box;
  1031. width:100%;
  1032. }
  1033. #u42813_text {
  1034. border-width:0px;
  1035. word-wrap:break-word;
  1036. text-transform:none;
  1037. visibility:hidden;
  1038. }
  1039. #u42814_div {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:91px;
  1045. height:25px;
  1046. background:inherit;
  1047. background-color:rgba(255, 255, 255, 0);
  1048. border:none;
  1049. border-radius:0px;
  1050. -moz-box-shadow:none;
  1051. -webkit-box-shadow:none;
  1052. box-shadow:none;
  1053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1054. font-weight:500;
  1055. font-style:normal;
  1056. font-size:18px;
  1057. }
  1058. #u42814 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:102px;
  1062. top:216px;
  1063. width:91px;
  1064. height:25px;
  1065. display:flex;
  1066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1067. font-weight:500;
  1068. font-style:normal;
  1069. font-size:18px;
  1070. }
  1071. #u42814 .text {
  1072. position:absolute;
  1073. align-self:flex-start;
  1074. padding:0px 0px 0px 0px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u42814_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u42815_img {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:0px;
  1087. top:0px;
  1088. width:13px;
  1089. height:7px;
  1090. }
  1091. #u42815 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:360px;
  1095. top:225px;
  1096. width:13px;
  1097. height:7px;
  1098. display:flex;
  1099. -webkit-transform:rotate(180deg);
  1100. -moz-transform:rotate(180deg);
  1101. -ms-transform:rotate(180deg);
  1102. transform:rotate(180deg);
  1103. }
  1104. #u42815 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u42815_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. visibility:hidden;
  1116. }
  1117. #u42816 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:0px;
  1123. height:0px;
  1124. }
  1125. #u42817_div {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:349px;
  1131. height:59px;
  1132. background:inherit;
  1133. background-color:rgba(242, 242, 242, 1);
  1134. border:none;
  1135. border-radius:4px;
  1136. -moz-box-shadow:none;
  1137. -webkit-box-shadow:none;
  1138. box-shadow:none;
  1139. }
  1140. #u42817 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:42px;
  1144. top:278px;
  1145. width:349px;
  1146. height:59px;
  1147. display:flex;
  1148. }
  1149. #u42817 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u42817_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u42818_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:73px;
  1168. height:25px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1177. font-weight:500;
  1178. font-style:normal;
  1179. font-size:18px;
  1180. }
  1181. #u42818 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:102px;
  1185. top:295px;
  1186. width:73px;
  1187. height:25px;
  1188. display:flex;
  1189. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1190. font-weight:500;
  1191. font-style:normal;
  1192. font-size:18px;
  1193. }
  1194. #u42818 .text {
  1195. position:absolute;
  1196. align-self:flex-start;
  1197. padding:0px 0px 0px 0px;
  1198. box-sizing:border-box;
  1199. width:100%;
  1200. }
  1201. #u42818_text {
  1202. border-width:0px;
  1203. white-space:nowrap;
  1204. text-transform:none;
  1205. }
  1206. #u42819_img {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:22px;
  1212. height:30px;
  1213. }
  1214. #u42819 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:60px;
  1218. top:293px;
  1219. width:22px;
  1220. height:30px;
  1221. display:flex;
  1222. }
  1223. #u42819 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u42819_text {
  1231. border-width:0px;
  1232. word-wrap:break-word;
  1233. text-transform:none;
  1234. visibility:hidden;
  1235. }
  1236. #u42820_div {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:49px;
  1242. height:17px;
  1243. background:inherit;
  1244. background-color:rgba(255, 255, 255, 0);
  1245. border:none;
  1246. border-radius:0px;
  1247. -moz-box-shadow:none;
  1248. -webkit-box-shadow:none;
  1249. box-shadow:none;
  1250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1251. font-weight:400;
  1252. font-style:normal;
  1253. font-size:12px;
  1254. color:#D9001B;
  1255. }
  1256. #u42820 {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:330px;
  1260. top:299px;
  1261. width:49px;
  1262. height:17px;
  1263. display:flex;
  1264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1265. font-weight:400;
  1266. font-style:normal;
  1267. font-size:12px;
  1268. color:#D9001B;
  1269. }
  1270. #u42820 .text {
  1271. position:absolute;
  1272. align-self:flex-start;
  1273. padding:0px 0px 0px 0px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u42820_text {
  1278. border-width:0px;
  1279. white-space:nowrap;
  1280. text-transform:none;
  1281. }
  1282. #u42821_div {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:153px;
  1288. height:18px;
  1289. background:inherit;
  1290. background-color:rgba(255, 255, 255, 0);
  1291. border:none;
  1292. border-radius:0px;
  1293. -moz-box-shadow:none;
  1294. -webkit-box-shadow:none;
  1295. box-shadow:none;
  1296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1297. font-weight:400;
  1298. font-style:normal;
  1299. }
  1300. #u42821 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:42px;
  1304. top:359px;
  1305. width:153px;
  1306. height:18px;
  1307. display:flex;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. }
  1312. #u42821 .text {
  1313. position:absolute;
  1314. align-self:flex-start;
  1315. padding:0px 0px 0px 0px;
  1316. box-sizing:border-box;
  1317. width:100%;
  1318. }
  1319. #u42821_text {
  1320. border-width:0px;
  1321. white-space:nowrap;
  1322. text-transform:none;
  1323. }
  1324. #u42822 {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:0px;
  1330. height:0px;
  1331. }
  1332. #u42823_div {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:349px;
  1338. height:70px;
  1339. background:inherit;
  1340. background-color:rgba(242, 242, 242, 1);
  1341. border:none;
  1342. border-radius:4px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. }
  1347. #u42823 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:42px;
  1351. top:387px;
  1352. width:349px;
  1353. height:70px;
  1354. display:flex;
  1355. }
  1356. #u42823 .text {
  1357. position:absolute;
  1358. align-self:center;
  1359. padding:2px 2px 2px 2px;
  1360. box-sizing:border-box;
  1361. width:100%;
  1362. }
  1363. #u42823_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u42824_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:102px;
  1375. height:25px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1384. font-weight:500;
  1385. font-style:normal;
  1386. font-size:18px;
  1387. }
  1388. #u42824 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:60px;
  1392. top:398px;
  1393. width:102px;
  1394. height:25px;
  1395. display:flex;
  1396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1397. font-weight:500;
  1398. font-style:normal;
  1399. font-size:18px;
  1400. }
  1401. #u42824 .text {
  1402. position:absolute;
  1403. align-self:flex-start;
  1404. padding:0px 0px 0px 0px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u42824_text {
  1409. border-width:0px;
  1410. white-space:nowrap;
  1411. text-transform:none;
  1412. }
  1413. #u42825_div {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:53px;
  1419. height:18px;
  1420. background:inherit;
  1421. background-color:rgba(255, 255, 255, 0);
  1422. border:none;
  1423. border-radius:0px;
  1424. -moz-box-shadow:none;
  1425. -webkit-box-shadow:none;
  1426. box-shadow:none;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. color:#7F7F7F;
  1431. }
  1432. #u42825 {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:86px;
  1436. top:429px;
  1437. width:53px;
  1438. height:18px;
  1439. display:flex;
  1440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1441. font-weight:400;
  1442. font-style:normal;
  1443. color:#7F7F7F;
  1444. }
  1445. #u42825 .text {
  1446. position:absolute;
  1447. align-self:flex-start;
  1448. padding:0px 0px 0px 0px;
  1449. box-sizing:border-box;
  1450. width:100%;
  1451. }
  1452. #u42825_text {
  1453. border-width:0px;
  1454. white-space:nowrap;
  1455. text-transform:none;
  1456. }
  1457. #u42826 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:0px;
  1461. top:0px;
  1462. width:0px;
  1463. height:0px;
  1464. }
  1465. #u42827_img {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:12px;
  1471. height:12px;
  1472. }
  1473. #u42827 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:62px;
  1477. top:431px;
  1478. width:12px;
  1479. height:12px;
  1480. display:flex;
  1481. -webkit-transform:rotate(315deg);
  1482. -moz-transform:rotate(315deg);
  1483. -ms-transform:rotate(315deg);
  1484. transform:rotate(315deg);
  1485. }
  1486. #u42827 .text {
  1487. position:absolute;
  1488. align-self:center;
  1489. padding:2px 2px 2px 2px;
  1490. box-sizing:border-box;
  1491. width:100%;
  1492. }
  1493. #u42827_text {
  1494. border-width:0px;
  1495. word-wrap:break-word;
  1496. text-transform:none;
  1497. visibility:hidden;
  1498. }
  1499. #u42828_div {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:11px;
  1505. height:14px;
  1506. background:inherit;
  1507. background-color:rgba(51, 51, 51, 1);
  1508. border:none;
  1509. border-radius:4px;
  1510. -moz-box-shadow:none;
  1511. -webkit-box-shadow:none;
  1512. box-shadow:none;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:10px;
  1517. color:#FFFFFF;
  1518. }
  1519. #u42828 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:373px;
  1523. top:393px;
  1524. width:11px;
  1525. height:14px;
  1526. display:flex;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:10px;
  1531. color:#FFFFFF;
  1532. }
  1533. #u42828 .text {
  1534. position:absolute;
  1535. align-self:flex-start;
  1536. padding:0px 0px 0px 0px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u42828_text {
  1541. border-width:0px;
  1542. white-space:nowrap;
  1543. text-transform:none;
  1544. }
  1545. #u42829 {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:0px;
  1551. height:0px;
  1552. }
  1553. #u42830_div {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:349px;
  1559. height:70px;
  1560. background:inherit;
  1561. background-color:rgba(242, 242, 242, 1);
  1562. border:none;
  1563. border-radius:4px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. }
  1568. #u42830 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:42px;
  1572. top:467px;
  1573. width:349px;
  1574. height:70px;
  1575. display:flex;
  1576. }
  1577. #u42830 .text {
  1578. position:absolute;
  1579. align-self:center;
  1580. padding:2px 2px 2px 2px;
  1581. box-sizing:border-box;
  1582. width:100%;
  1583. }
  1584. #u42830_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. visibility:hidden;
  1589. }
  1590. #u42831_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:102px;
  1596. height:25px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border:none;
  1600. border-radius:0px;
  1601. -moz-box-shadow:none;
  1602. -webkit-box-shadow:none;
  1603. box-shadow:none;
  1604. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1605. font-weight:500;
  1606. font-style:normal;
  1607. font-size:18px;
  1608. }
  1609. #u42831 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:60px;
  1613. top:478px;
  1614. width:102px;
  1615. height:25px;
  1616. display:flex;
  1617. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1618. font-weight:500;
  1619. font-style:normal;
  1620. font-size:18px;
  1621. }
  1622. #u42831 .text {
  1623. position:absolute;
  1624. align-self:flex-start;
  1625. padding:0px 0px 0px 0px;
  1626. box-sizing:border-box;
  1627. width:100%;
  1628. }
  1629. #u42831_text {
  1630. border-width:0px;
  1631. white-space:nowrap;
  1632. text-transform:none;
  1633. }
  1634. #u42832_div {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:0px;
  1638. top:0px;
  1639. width:53px;
  1640. height:18px;
  1641. background:inherit;
  1642. background-color:rgba(255, 255, 255, 0);
  1643. border:none;
  1644. border-radius:0px;
  1645. -moz-box-shadow:none;
  1646. -webkit-box-shadow:none;
  1647. box-shadow:none;
  1648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1649. font-weight:400;
  1650. font-style:normal;
  1651. color:#7F7F7F;
  1652. }
  1653. #u42832 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:86px;
  1657. top:509px;
  1658. width:53px;
  1659. height:18px;
  1660. display:flex;
  1661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1662. font-weight:400;
  1663. font-style:normal;
  1664. color:#7F7F7F;
  1665. }
  1666. #u42832 .text {
  1667. position:absolute;
  1668. align-self:flex-start;
  1669. padding:0px 0px 0px 0px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u42832_text {
  1674. border-width:0px;
  1675. white-space:nowrap;
  1676. text-transform:none;
  1677. }
  1678. #u42833 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:0px;
  1684. height:0px;
  1685. }
  1686. #u42834_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:12px;
  1692. height:12px;
  1693. }
  1694. #u42834 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:62px;
  1698. top:511px;
  1699. width:12px;
  1700. height:12px;
  1701. display:flex;
  1702. -webkit-transform:rotate(315deg);
  1703. -moz-transform:rotate(315deg);
  1704. -ms-transform:rotate(315deg);
  1705. transform:rotate(315deg);
  1706. }
  1707. #u42834 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 2px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u42834_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. visibility:hidden;
  1719. }
  1720. #u42835_div {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:11px;
  1726. height:14px;
  1727. background:inherit;
  1728. background-color:rgba(51, 51, 51, 1);
  1729. border:none;
  1730. border-radius:4px;
  1731. -moz-box-shadow:none;
  1732. -webkit-box-shadow:none;
  1733. box-shadow:none;
  1734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1735. font-weight:400;
  1736. font-style:normal;
  1737. font-size:10px;
  1738. color:#FFFFFF;
  1739. }
  1740. #u42835 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:373px;
  1744. top:476px;
  1745. width:11px;
  1746. height:14px;
  1747. display:flex;
  1748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. font-size:10px;
  1752. color:#FFFFFF;
  1753. }
  1754. #u42835 .text {
  1755. position:absolute;
  1756. align-self:flex-start;
  1757. padding:0px 0px 0px 0px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u42835_text {
  1762. border-width:0px;
  1763. white-space:nowrap;
  1764. text-transform:none;
  1765. }
  1766. #u42836 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:0px;
  1772. height:0px;
  1773. }
  1774. #u42837_div {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:0px;
  1778. top:0px;
  1779. width:349px;
  1780. height:70px;
  1781. background:inherit;
  1782. background-color:rgba(242, 242, 242, 1);
  1783. border:none;
  1784. border-radius:4px;
  1785. -moz-box-shadow:none;
  1786. -webkit-box-shadow:none;
  1787. box-shadow:none;
  1788. }
  1789. #u42837 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:42px;
  1793. top:547px;
  1794. width:349px;
  1795. height:70px;
  1796. display:flex;
  1797. }
  1798. #u42837 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u42837_text {
  1806. border-width:0px;
  1807. word-wrap:break-word;
  1808. text-transform:none;
  1809. visibility:hidden;
  1810. }
  1811. #u42838_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:102px;
  1817. height:25px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1826. font-weight:500;
  1827. font-style:normal;
  1828. font-size:18px;
  1829. }
  1830. #u42838 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:60px;
  1834. top:558px;
  1835. width:102px;
  1836. height:25px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1839. font-weight:500;
  1840. font-style:normal;
  1841. font-size:18px;
  1842. }
  1843. #u42838 .text {
  1844. position:absolute;
  1845. align-self:flex-start;
  1846. padding:0px 0px 0px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u42838_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u42839_div {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:53px;
  1861. height:18px;
  1862. background:inherit;
  1863. background-color:rgba(255, 255, 255, 0);
  1864. border:none;
  1865. border-radius:0px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. color:#7F7F7F;
  1873. }
  1874. #u42839 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:86px;
  1878. top:589px;
  1879. width:53px;
  1880. height:18px;
  1881. display:flex;
  1882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1883. font-weight:400;
  1884. font-style:normal;
  1885. color:#7F7F7F;
  1886. }
  1887. #u42839 .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. #u42839_text {
  1895. border-width:0px;
  1896. white-space:nowrap;
  1897. text-transform:none;
  1898. }
  1899. #u42840 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:0px;
  1905. height:0px;
  1906. }
  1907. #u42841_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:12px;
  1913. height:12px;
  1914. }
  1915. #u42841 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:62px;
  1919. top:591px;
  1920. width:12px;
  1921. height:12px;
  1922. display:flex;
  1923. -webkit-transform:rotate(315deg);
  1924. -moz-transform:rotate(315deg);
  1925. -ms-transform:rotate(315deg);
  1926. transform:rotate(315deg);
  1927. }
  1928. #u42841 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:2px 2px 2px 2px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u42841_text {
  1936. border-width:0px;
  1937. word-wrap:break-word;
  1938. text-transform:none;
  1939. visibility:hidden;
  1940. }
  1941. #u42842_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:11px;
  1947. height:14px;
  1948. background:inherit;
  1949. background-color:rgba(51, 51, 51, 1);
  1950. border:none;
  1951. border-radius:4px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:10px;
  1959. color:#FFFFFF;
  1960. }
  1961. #u42842 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:373px;
  1965. top:557px;
  1966. width:11px;
  1967. height:14px;
  1968. display:flex;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:10px;
  1973. color:#FFFFFF;
  1974. }
  1975. #u42842 .text {
  1976. position:absolute;
  1977. align-self:flex-start;
  1978. padding:0px 0px 0px 0px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u42842_text {
  1983. border-width:0px;
  1984. white-space:nowrap;
  1985. text-transform:none;
  1986. }
  1987. #u42843 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:0px;
  1993. height:0px;
  1994. }
  1995. #u42844_div {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:349px;
  2001. height:70px;
  2002. background:inherit;
  2003. background-color:rgba(242, 242, 242, 1);
  2004. border:none;
  2005. border-radius:4px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. }
  2010. #u42844 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:42px;
  2014. top:627px;
  2015. width:349px;
  2016. height:70px;
  2017. display:flex;
  2018. }
  2019. #u42844 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 2px 2px 2px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u42844_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u42845_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:138px;
  2038. height:25px;
  2039. background:inherit;
  2040. background-color:rgba(255, 255, 255, 0);
  2041. border:none;
  2042. border-radius:0px;
  2043. -moz-box-shadow:none;
  2044. -webkit-box-shadow:none;
  2045. box-shadow:none;
  2046. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2047. font-weight:500;
  2048. font-style:normal;
  2049. font-size:18px;
  2050. }
  2051. #u42845 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:60px;
  2055. top:638px;
  2056. width:138px;
  2057. height:25px;
  2058. display:flex;
  2059. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2060. font-weight:500;
  2061. font-style:normal;
  2062. font-size:18px;
  2063. }
  2064. #u42845 .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. #u42845_text {
  2072. border-width:0px;
  2073. white-space:nowrap;
  2074. text-transform:none;
  2075. }
  2076. #u42846_div {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:53px;
  2082. height:18px;
  2083. background:inherit;
  2084. background-color:rgba(255, 255, 255, 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. color:#7F7F7F;
  2094. }
  2095. #u42846 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:86px;
  2099. top:669px;
  2100. width:53px;
  2101. height:18px;
  2102. display:flex;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. color:#7F7F7F;
  2107. }
  2108. #u42846 .text {
  2109. position:absolute;
  2110. align-self:flex-start;
  2111. padding:0px 0px 0px 0px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u42846_text {
  2116. border-width:0px;
  2117. white-space:nowrap;
  2118. text-transform:none;
  2119. }
  2120. #u42847 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:0px;
  2126. height:0px;
  2127. }
  2128. #u42848_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:12px;
  2134. height:12px;
  2135. }
  2136. #u42848 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:62px;
  2140. top:671px;
  2141. width:12px;
  2142. height:12px;
  2143. display:flex;
  2144. -webkit-transform:rotate(315deg);
  2145. -moz-transform:rotate(315deg);
  2146. -ms-transform:rotate(315deg);
  2147. transform:rotate(315deg);
  2148. }
  2149. #u42848 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u42848_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u42849_div {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:11px;
  2168. height:14px;
  2169. background:inherit;
  2170. background-color:rgba(51, 51, 51, 1);
  2171. border:none;
  2172. border-radius:4px;
  2173. -moz-box-shadow:none;
  2174. -webkit-box-shadow:none;
  2175. box-shadow:none;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:10px;
  2180. color:#FFFFFF;
  2181. }
  2182. #u42849 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:373px;
  2186. top:637px;
  2187. width:11px;
  2188. height:14px;
  2189. display:flex;
  2190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:10px;
  2194. color:#FFFFFF;
  2195. }
  2196. #u42849 .text {
  2197. position:absolute;
  2198. align-self:flex-start;
  2199. padding:0px 0px 0px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u42849_text {
  2204. border-width:0px;
  2205. white-space:nowrap;
  2206. text-transform:none;
  2207. }
  2208. #u42850_img {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:18px;
  2214. height:10px;
  2215. }
  2216. #u42850 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:208px;
  2220. top:749px;
  2221. width:18px;
  2222. height:10px;
  2223. display:flex;
  2224. }
  2225. #u42850 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 2px 2px 2px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u42850_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. visibility:hidden;
  2237. }
  2238. #u42852_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:433px;
  2244. height:865px;
  2245. }
  2246. #u42852 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:453px;
  2250. top:0px;
  2251. width:433px;
  2252. height:865px;
  2253. display:flex;
  2254. }
  2255. #u42852 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:2px 2px 2px 2px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u42852_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. visibility:hidden;
  2267. }
  2268. #u42853_div {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:375px;
  2274. height:40px;
  2275. background:inherit;
  2276. background-color:rgba(255, 255, 255, 1);
  2277. box-sizing:border-box;
  2278. border-width:1px;
  2279. border-style:solid;
  2280. border-color:rgba(215, 215, 215, 1);
  2281. border-left:0px;
  2282. border-top:0px;
  2283. border-right:0px;
  2284. border-radius:0px;
  2285. border-bottom-right-radius:0px;
  2286. border-bottom-left-radius:0px;
  2287. -moz-box-shadow:none;
  2288. -webkit-box-shadow:none;
  2289. box-shadow:none;
  2290. }
  2291. #u42853 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:482px;
  2295. top:67px;
  2296. width:375px;
  2297. height:40px;
  2298. display:flex;
  2299. }
  2300. #u42853 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:2px 2px 2px 2px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u42853_text {
  2308. border-width:0px;
  2309. word-wrap:break-word;
  2310. text-transform:none;
  2311. visibility:hidden;
  2312. }
  2313. #u42854 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:0px;
  2319. height:0px;
  2320. }
  2321. #u42855_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:88px;
  2327. height:32px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 1);
  2330. box-sizing:border-box;
  2331. border-width:1px;
  2332. border-style:solid;
  2333. border-color:rgba(242, 242, 242, 1);
  2334. border-radius:33px;
  2335. -moz-box-shadow:none;
  2336. -webkit-box-shadow:none;
  2337. box-shadow:none;
  2338. }
  2339. #u42855 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:762px;
  2343. top:71px;
  2344. width:88px;
  2345. height:32px;
  2346. display:flex;
  2347. }
  2348. #u42855 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 2px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u42855_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. visibility:hidden;
  2360. }
  2361. #u42856 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:0px;
  2367. height:0px;
  2368. }
  2369. #u42857_img {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:18px;
  2375. height:18px;
  2376. }
  2377. #u42857 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:825px;
  2381. top:78px;
  2382. width:18px;
  2383. height:18px;
  2384. display:flex;
  2385. }
  2386. #u42857 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 2px 2px 2px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u42857_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. visibility:hidden;
  2398. }
  2399. #u42858_img {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:6px;
  2405. height:6px;
  2406. }
  2407. #u42858 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:831px;
  2411. top:84px;
  2412. width:6px;
  2413. height:6px;
  2414. display:flex;
  2415. }
  2416. #u42858 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 2px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u42858_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. visibility:hidden;
  2428. }
  2429. #u42859 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:0px;
  2435. height:0px;
  2436. }
  2437. #u42860_img {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:5px;
  2443. height:5px;
  2444. }
  2445. #u42860 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:776px;
  2449. top:85px;
  2450. width:5px;
  2451. height:5px;
  2452. display:flex;
  2453. }
  2454. #u42860 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 2px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u42860_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. visibility:hidden;
  2466. }
  2467. #u42861_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:5px;
  2473. height:5px;
  2474. }
  2475. #u42861 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:792px;
  2479. top:85px;
  2480. width:5px;
  2481. height:5px;
  2482. display:flex;
  2483. }
  2484. #u42861 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u42861_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. visibility:hidden;
  2496. }
  2497. #u42862_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:7px;
  2503. height:7px;
  2504. }
  2505. #u42862 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:783px;
  2509. top:84px;
  2510. width:7px;
  2511. height:7px;
  2512. display:flex;
  2513. }
  2514. #u42862 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 2px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u42862_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u42863_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:19px;
  2533. height:2px;
  2534. }
  2535. #u42863 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:800px;
  2539. top:87px;
  2540. width:18px;
  2541. height:1px;
  2542. display:flex;
  2543. -webkit-transform:rotate(90deg);
  2544. -moz-transform:rotate(90deg);
  2545. -ms-transform:rotate(90deg);
  2546. transform:rotate(90deg);
  2547. }
  2548. #u42863 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 2px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u42863_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u42864_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:375px;
  2567. height:44px;
  2568. }
  2569. #u42864 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:482px;
  2573. top:24px;
  2574. width:375px;
  2575. height:44px;
  2576. display:flex;
  2577. }
  2578. #u42864 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:2px 2px 2px 2px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u42864_text {
  2586. border-width:0px;
  2587. word-wrap:break-word;
  2588. text-transform:none;
  2589. visibility:hidden;
  2590. }
  2591. #u42865_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:375px;
  2597. height:50px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 255, 1);
  2600. box-sizing:border-box;
  2601. border-width:1px;
  2602. border-style:solid;
  2603. border-color:rgba(242, 242, 242, 1);
  2604. border-radius:26px;
  2605. border-top-left-radius:0px;
  2606. border-top-right-radius:0px;
  2607. -moz-box-shadow:none;
  2608. -webkit-box-shadow:none;
  2609. box-shadow:none;
  2610. }
  2611. #u42865 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:482px;
  2615. top:788px;
  2616. width:375px;
  2617. height:50px;
  2618. display:flex;
  2619. }
  2620. #u42865 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 2px 2px 2px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u42865_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. visibility:hidden;
  2632. }
  2633. #u42866 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:0px;
  2639. height:0px;
  2640. }
  2641. #u42867_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:24px;
  2647. height:24px;
  2648. }
  2649. #u42867 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:522px;
  2653. top:792px;
  2654. width:24px;
  2655. height:24px;
  2656. display:flex;
  2657. font-size:8px;
  2658. }
  2659. #u42867 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u42867_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. }
  2671. #u42868_div {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:25px;
  2677. height:17px;
  2678. background:inherit;
  2679. background-color:rgba(255, 255, 255, 0);
  2680. border:none;
  2681. border-radius:0px;
  2682. -moz-box-shadow:none;
  2683. -webkit-box-shadow:none;
  2684. box-shadow:none;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. }
  2690. #u42868 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:522px;
  2694. top:817px;
  2695. width:25px;
  2696. height:17px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:12px;
  2702. }
  2703. #u42868 .text {
  2704. position:absolute;
  2705. align-self:flex-start;
  2706. padding:0px 0px 0px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u42868_text {
  2711. border-width:0px;
  2712. white-space:nowrap;
  2713. text-transform:none;
  2714. }
  2715. #u42869 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:0px;
  2721. height:0px;
  2722. }
  2723. #u42870_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:24px;
  2729. height:24px;
  2730. }
  2731. #u42870 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:792px;
  2735. top:794px;
  2736. width:24px;
  2737. height:24px;
  2738. display:flex;
  2739. font-size:8px;
  2740. }
  2741. #u42870 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 2px 2px 2px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u42870_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. }
  2753. #u42871_div {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:25px;
  2759. height:17px;
  2760. background:inherit;
  2761. background-color:rgba(255, 255, 255, 0);
  2762. border:none;
  2763. border-radius:0px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:12px;
  2771. }
  2772. #u42871 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:792px;
  2776. top:819px;
  2777. width:25px;
  2778. height:17px;
  2779. display:flex;
  2780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:12px;
  2784. }
  2785. #u42871 .text {
  2786. position:absolute;
  2787. align-self:flex-start;
  2788. padding:0px 0px 0px 0px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u42871_text {
  2793. border-width:0px;
  2794. white-space:nowrap;
  2795. text-transform:none;
  2796. }
  2797. #u42872_div {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:375px;
  2803. height:681px;
  2804. background:inherit;
  2805. background-color:rgba(242, 242, 242, 0.462745098039216);
  2806. border:none;
  2807. border-radius:0px;
  2808. -moz-box-shadow:none;
  2809. -webkit-box-shadow:none;
  2810. box-shadow:none;
  2811. }
  2812. #u42872 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:482px;
  2816. top:107px;
  2817. width:375px;
  2818. height:681px;
  2819. display:flex;
  2820. }
  2821. #u42872 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 2px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u42872_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u42873 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:0px;
  2840. height:0px;
  2841. }
  2842. #u42874_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:24px;
  2848. height:24px;
  2849. }
  2850. #u42874 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:704px;
  2854. top:792px;
  2855. width:24px;
  2856. height:24px;
  2857. display:flex;
  2858. font-size:8px;
  2859. }
  2860. #u42874 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 2px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u42874_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. }
  2872. #u42875_div {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:37px;
  2878. height:17px;
  2879. background:inherit;
  2880. background-color:rgba(255, 255, 255, 0);
  2881. border:none;
  2882. border-radius:0px;
  2883. -moz-box-shadow:none;
  2884. -webkit-box-shadow:none;
  2885. box-shadow:none;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:12px;
  2890. }
  2891. #u42875 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:698px;
  2895. top:817px;
  2896. width:37px;
  2897. height:17px;
  2898. display:flex;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:12px;
  2903. }
  2904. #u42875 .text {
  2905. position:absolute;
  2906. align-self:flex-start;
  2907. padding:0px 0px 0px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u42875_text {
  2912. border-width:0px;
  2913. white-space:nowrap;
  2914. text-transform:none;
  2915. }
  2916. #u42876 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:0px;
  2922. height:0px;
  2923. }
  2924. #u42877_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:24px;
  2930. height:24px;
  2931. }
  2932. #u42877 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:610px;
  2936. top:792px;
  2937. width:24px;
  2938. height:24px;
  2939. display:flex;
  2940. font-size:8px;
  2941. }
  2942. #u42877 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u42877_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u42878_div {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:37px;
  2960. height:17px;
  2961. background:inherit;
  2962. background-color:rgba(255, 255, 255, 0);
  2963. border:none;
  2964. border-radius:0px;
  2965. -moz-box-shadow:none;
  2966. -webkit-box-shadow:none;
  2967. box-shadow:none;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:12px;
  2972. }
  2973. #u42878 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:604px;
  2977. top:817px;
  2978. width:37px;
  2979. height:17px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. }
  2986. #u42878 .text {
  2987. position:absolute;
  2988. align-self:flex-start;
  2989. padding:0px 0px 0px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u42878_text {
  2994. border-width:0px;
  2995. white-space:nowrap;
  2996. text-transform:none;
  2997. }
  2998. #u42879_div {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:375px;
  3004. height:735px;
  3005. background:inherit;
  3006. background-color:rgba(242, 242, 242, 1);
  3007. box-sizing:border-box;
  3008. border-width:1px;
  3009. border-style:solid;
  3010. border-color:rgba(242, 242, 242, 1);
  3011. border-radius:26px;
  3012. border-top-left-radius:0px;
  3013. border-top-right-radius:0px;
  3014. -moz-box-shadow:none;
  3015. -webkit-box-shadow:none;
  3016. box-shadow:none;
  3017. }
  3018. #u42879 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:482px;
  3022. top:105px;
  3023. width:375px;
  3024. height:735px;
  3025. display:flex;
  3026. }
  3027. #u42879 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 2px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u42879_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. visibility:hidden;
  3039. }
  3040. #u42880_div {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:109px;
  3046. height:25px;
  3047. background:inherit;
  3048. background-color:rgba(255, 255, 255, 0);
  3049. border:none;
  3050. border-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3055. font-weight:500;
  3056. font-style:normal;
  3057. font-size:18px;
  3058. }
  3059. #u42880 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:519px;
  3063. top:74px;
  3064. width:109px;
  3065. height:25px;
  3066. display:flex;
  3067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3068. font-weight:500;
  3069. font-style:normal;
  3070. font-size:18px;
  3071. }
  3072. #u42880 .text {
  3073. position:absolute;
  3074. align-self:flex-start;
  3075. padding:0px 0px 0px 0px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u42880_text {
  3080. border-width:0px;
  3081. white-space:nowrap;
  3082. text-transform:none;
  3083. }
  3084. #u42881_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:13px;
  3090. height:19px;
  3091. }
  3092. #u42881 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:497px;
  3096. top:77px;
  3097. width:13px;
  3098. height:19px;
  3099. display:flex;
  3100. }
  3101. #u42881 .text {
  3102. position:absolute;
  3103. align-self:center;
  3104. padding:2px 2px 2px 2px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u42881_text {
  3109. border-width:0px;
  3110. word-wrap:break-word;
  3111. text-transform:none;
  3112. visibility:hidden;
  3113. }
  3114. #u42882_div {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:375px;
  3120. height:611px;
  3121. background:inherit;
  3122. background-color:rgba(255, 255, 255, 1);
  3123. border:none;
  3124. border-radius:0px;
  3125. -moz-box-shadow:none;
  3126. -webkit-box-shadow:none;
  3127. box-shadow:none;
  3128. }
  3129. #u42882 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:482px;
  3133. top:179px;
  3134. width:375px;
  3135. height:611px;
  3136. display:flex;
  3137. }
  3138. #u42882 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u42882_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u42883_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:349px;
  3157. height:53px;
  3158. }
  3159. #u42883 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:495px;
  3163. top:116px;
  3164. width:349px;
  3165. height:53px;
  3166. display:flex;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. }
  3171. #u42883 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 2px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u42883_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. }
  3183. #u42884 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:0px;
  3189. height:0px;
  3190. }
  3191. #u42885 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:0px;
  3197. height:0px;
  3198. }
  3199. #u42886_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:24px;
  3205. height:24px;
  3206. }
  3207. #u42886 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:497px;
  3211. top:201px;
  3212. width:24px;
  3213. height:24px;
  3214. display:flex;
  3215. }
  3216. #u42886 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 2px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u42886_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u42887_div {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:91px;
  3235. height:25px;
  3236. background:inherit;
  3237. background-color:rgba(255, 255, 255, 0);
  3238. border:none;
  3239. border-radius:0px;
  3240. -moz-box-shadow:none;
  3241. -webkit-box-shadow:none;
  3242. box-shadow:none;
  3243. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3244. font-weight:500;
  3245. font-style:normal;
  3246. font-size:18px;
  3247. }
  3248. #u42887 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:531px;
  3252. top:201px;
  3253. width:91px;
  3254. height:25px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3257. font-weight:500;
  3258. font-style:normal;
  3259. font-size:18px;
  3260. }
  3261. #u42887 .text {
  3262. position:absolute;
  3263. align-self:flex-start;
  3264. padding:0px 0px 0px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u42887_text {
  3269. border-width:0px;
  3270. white-space:nowrap;
  3271. text-transform:none;
  3272. }
  3273. #u42888_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:13px;
  3279. height:7px;
  3280. }
  3281. #u42888 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:831px;
  3285. top:210px;
  3286. width:13px;
  3287. height:7px;
  3288. display:flex;
  3289. -webkit-transform:rotate(180deg);
  3290. -moz-transform:rotate(180deg);
  3291. -ms-transform:rotate(180deg);
  3292. transform:rotate(180deg);
  3293. }
  3294. #u42888 .text {
  3295. position:absolute;
  3296. align-self:center;
  3297. padding:2px 2px 2px 2px;
  3298. box-sizing:border-box;
  3299. width:100%;
  3300. }
  3301. #u42888_text {
  3302. border-width:0px;
  3303. word-wrap:break-word;
  3304. text-transform:none;
  3305. visibility:hidden;
  3306. }
  3307. #u42889 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:0px;
  3313. height:0px;
  3314. }
  3315. #u42890_div {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:349px;
  3321. height:59px;
  3322. background:inherit;
  3323. background-color:rgba(242, 242, 242, 1);
  3324. border:none;
  3325. border-radius:4px;
  3326. -moz-box-shadow:none;
  3327. -webkit-box-shadow:none;
  3328. box-shadow:none;
  3329. }
  3330. #u42890 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:495px;
  3334. top:403px;
  3335. width:349px;
  3336. height:59px;
  3337. display:flex;
  3338. }
  3339. #u42890 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 2px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u42890_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. visibility:hidden;
  3351. }
  3352. #u42891_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:73px;
  3358. height:25px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 0);
  3361. border:none;
  3362. border-radius:0px;
  3363. -moz-box-shadow:none;
  3364. -webkit-box-shadow:none;
  3365. box-shadow:none;
  3366. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3367. font-weight:500;
  3368. font-style:normal;
  3369. font-size:18px;
  3370. }
  3371. #u42891 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:555px;
  3375. top:420px;
  3376. width:73px;
  3377. height:25px;
  3378. display:flex;
  3379. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3380. font-weight:500;
  3381. font-style:normal;
  3382. font-size:18px;
  3383. }
  3384. #u42891 .text {
  3385. position:absolute;
  3386. align-self:flex-start;
  3387. padding:0px 0px 0px 0px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u42891_text {
  3392. border-width:0px;
  3393. white-space:nowrap;
  3394. text-transform:none;
  3395. }
  3396. #u42892_img {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:22px;
  3402. height:30px;
  3403. }
  3404. #u42892 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:513px;
  3408. top:418px;
  3409. width:22px;
  3410. height:30px;
  3411. display:flex;
  3412. }
  3413. #u42892 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 2px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u42892_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. visibility:hidden;
  3425. }
  3426. #u42893_div {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:49px;
  3432. height:17px;
  3433. background:inherit;
  3434. background-color:rgba(255, 255, 255, 0);
  3435. border:none;
  3436. border-radius:0px;
  3437. -moz-box-shadow:none;
  3438. -webkit-box-shadow:none;
  3439. box-shadow:none;
  3440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:12px;
  3444. color:#D9001B;
  3445. }
  3446. #u42893 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:783px;
  3450. top:424px;
  3451. width:49px;
  3452. height:17px;
  3453. display:flex;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:12px;
  3458. color:#D9001B;
  3459. }
  3460. #u42893 .text {
  3461. position:absolute;
  3462. align-self:flex-start;
  3463. padding:0px 0px 0px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u42893_text {
  3468. border-width:0px;
  3469. white-space:nowrap;
  3470. text-transform:none;
  3471. }
  3472. #u42894_div {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:166px;
  3478. height:18px;
  3479. background:inherit;
  3480. background-color:rgba(255, 255, 255, 0);
  3481. border:none;
  3482. border-radius:0px;
  3483. -moz-box-shadow:none;
  3484. -webkit-box-shadow:none;
  3485. box-shadow:none;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. }
  3490. #u42894 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:495px;
  3494. top:484px;
  3495. width:166px;
  3496. height:18px;
  3497. display:flex;
  3498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. }
  3502. #u42894 .text {
  3503. position:absolute;
  3504. align-self:flex-start;
  3505. padding:0px 0px 0px 0px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u42894_text {
  3510. border-width:0px;
  3511. white-space:nowrap;
  3512. text-transform:none;
  3513. }
  3514. #u42895 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:0px;
  3520. height:0px;
  3521. }
  3522. #u42896_div {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:349px;
  3528. height:70px;
  3529. background:inherit;
  3530. background-color:rgba(242, 242, 242, 1);
  3531. border:none;
  3532. border-radius:4px;
  3533. -moz-box-shadow:none;
  3534. -webkit-box-shadow:none;
  3535. box-shadow:none;
  3536. }
  3537. #u42896 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:495px;
  3541. top:512px;
  3542. width:349px;
  3543. height:70px;
  3544. display:flex;
  3545. }
  3546. #u42896 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u42896_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u42897_div {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:102px;
  3565. height:25px;
  3566. background:inherit;
  3567. background-color:rgba(255, 255, 255, 0);
  3568. border:none;
  3569. border-radius:0px;
  3570. -moz-box-shadow:none;
  3571. -webkit-box-shadow:none;
  3572. box-shadow:none;
  3573. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3574. font-weight:500;
  3575. font-style:normal;
  3576. font-size:18px;
  3577. }
  3578. #u42897 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:513px;
  3582. top:523px;
  3583. width:102px;
  3584. height:25px;
  3585. display:flex;
  3586. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3587. font-weight:500;
  3588. font-style:normal;
  3589. font-size:18px;
  3590. }
  3591. #u42897 .text {
  3592. position:absolute;
  3593. align-self:flex-start;
  3594. padding:0px 0px 0px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u42897_text {
  3599. border-width:0px;
  3600. white-space:nowrap;
  3601. text-transform:none;
  3602. }
  3603. #u42898_div {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:53px;
  3609. height:18px;
  3610. background:inherit;
  3611. background-color:rgba(255, 255, 255, 0);
  3612. border:none;
  3613. border-radius:0px;
  3614. -moz-box-shadow:none;
  3615. -webkit-box-shadow:none;
  3616. box-shadow:none;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. color:#7F7F7F;
  3621. }
  3622. #u42898 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:539px;
  3626. top:554px;
  3627. width:53px;
  3628. height:18px;
  3629. display:flex;
  3630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. color:#7F7F7F;
  3634. }
  3635. #u42898 .text {
  3636. position:absolute;
  3637. align-self:flex-start;
  3638. padding:0px 0px 0px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u42898_text {
  3643. border-width:0px;
  3644. white-space:nowrap;
  3645. text-transform:none;
  3646. }
  3647. #u42899 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:0px;
  3653. height:0px;
  3654. }
  3655. #u42900_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:12px;
  3661. height:12px;
  3662. }
  3663. #u42900 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:515px;
  3667. top:556px;
  3668. width:12px;
  3669. height:12px;
  3670. display:flex;
  3671. -webkit-transform:rotate(315deg);
  3672. -moz-transform:rotate(315deg);
  3673. -ms-transform:rotate(315deg);
  3674. transform:rotate(315deg);
  3675. }
  3676. #u42900 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 2px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u42900_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. visibility:hidden;
  3688. }
  3689. #u42901_div {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:11px;
  3695. height:14px;
  3696. background:inherit;
  3697. background-color:rgba(51, 51, 51, 1);
  3698. border:none;
  3699. border-radius:4px;
  3700. -moz-box-shadow:none;
  3701. -webkit-box-shadow:none;
  3702. box-shadow:none;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:10px;
  3707. color:#FFFFFF;
  3708. }
  3709. #u42901 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:827px;
  3713. top:517px;
  3714. width:11px;
  3715. height:14px;
  3716. display:flex;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:10px;
  3721. color:#FFFFFF;
  3722. }
  3723. #u42901 .text {
  3724. position:absolute;
  3725. align-self:flex-start;
  3726. padding:0px 0px 0px 0px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u42901_text {
  3731. border-width:0px;
  3732. white-space:nowrap;
  3733. text-transform:none;
  3734. }
  3735. #u42902 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:0px;
  3741. height:0px;
  3742. }
  3743. #u42903_div {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:349px;
  3749. height:70px;
  3750. background:inherit;
  3751. background-color:rgba(242, 242, 242, 1);
  3752. border:none;
  3753. border-radius:4px;
  3754. -moz-box-shadow:none;
  3755. -webkit-box-shadow:none;
  3756. box-shadow:none;
  3757. }
  3758. #u42903 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:495px;
  3762. top:592px;
  3763. width:349px;
  3764. height:70px;
  3765. display:flex;
  3766. }
  3767. #u42903 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 2px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u42903_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u42904_div {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:102px;
  3786. height:25px;
  3787. background:inherit;
  3788. background-color:rgba(255, 255, 255, 0);
  3789. border:none;
  3790. border-radius:0px;
  3791. -moz-box-shadow:none;
  3792. -webkit-box-shadow:none;
  3793. box-shadow:none;
  3794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3795. font-weight:500;
  3796. font-style:normal;
  3797. font-size:18px;
  3798. }
  3799. #u42904 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:513px;
  3803. top:603px;
  3804. width:102px;
  3805. height:25px;
  3806. display:flex;
  3807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3808. font-weight:500;
  3809. font-style:normal;
  3810. font-size:18px;
  3811. }
  3812. #u42904 .text {
  3813. position:absolute;
  3814. align-self:flex-start;
  3815. padding:0px 0px 0px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u42904_text {
  3820. border-width:0px;
  3821. white-space:nowrap;
  3822. text-transform:none;
  3823. }
  3824. #u42905_div {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:53px;
  3830. height:18px;
  3831. background:inherit;
  3832. background-color:rgba(255, 255, 255, 0);
  3833. border:none;
  3834. border-radius:0px;
  3835. -moz-box-shadow:none;
  3836. -webkit-box-shadow:none;
  3837. box-shadow:none;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. color:#7F7F7F;
  3842. }
  3843. #u42905 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:539px;
  3847. top:634px;
  3848. width:53px;
  3849. height:18px;
  3850. display:flex;
  3851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3852. font-weight:400;
  3853. font-style:normal;
  3854. color:#7F7F7F;
  3855. }
  3856. #u42905 .text {
  3857. position:absolute;
  3858. align-self:flex-start;
  3859. padding:0px 0px 0px 0px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u42905_text {
  3864. border-width:0px;
  3865. white-space:nowrap;
  3866. text-transform:none;
  3867. }
  3868. #u42906 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:0px;
  3874. height:0px;
  3875. }
  3876. #u42907_img {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:12px;
  3882. height:12px;
  3883. }
  3884. #u42907 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:515px;
  3888. top:636px;
  3889. width:12px;
  3890. height:12px;
  3891. display:flex;
  3892. -webkit-transform:rotate(315deg);
  3893. -moz-transform:rotate(315deg);
  3894. -ms-transform:rotate(315deg);
  3895. transform:rotate(315deg);
  3896. }
  3897. #u42907 .text {
  3898. position:absolute;
  3899. align-self:center;
  3900. padding:2px 2px 2px 2px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u42907_text {
  3905. border-width:0px;
  3906. word-wrap:break-word;
  3907. text-transform:none;
  3908. visibility:hidden;
  3909. }
  3910. #u42908_div {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:11px;
  3916. height:14px;
  3917. background:inherit;
  3918. background-color:rgba(51, 51, 51, 1);
  3919. border:none;
  3920. border-radius:4px;
  3921. -moz-box-shadow:none;
  3922. -webkit-box-shadow:none;
  3923. box-shadow:none;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:10px;
  3928. color:#FFFFFF;
  3929. }
  3930. #u42908 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:827px;
  3934. top:598px;
  3935. width:11px;
  3936. height:14px;
  3937. display:flex;
  3938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:10px;
  3942. color:#FFFFFF;
  3943. }
  3944. #u42908 .text {
  3945. position:absolute;
  3946. align-self:flex-start;
  3947. padding:0px 0px 0px 0px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u42908_text {
  3952. border-width:0px;
  3953. white-space:nowrap;
  3954. text-transform:none;
  3955. }
  3956. #u42909_div {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:258px;
  3962. height:17px;
  3963. background:inherit;
  3964. background-color:rgba(255, 255, 255, 0);
  3965. border:none;
  3966. border-radius:0px;
  3967. -moz-box-shadow:none;
  3968. -webkit-box-shadow:none;
  3969. box-shadow:none;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:12px;
  3974. color:#D9001B;
  3975. }
  3976. #u42909 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:60px;
  3980. top:169px;
  3981. width:258px;
  3982. height:17px;
  3983. display:flex;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:12px;
  3988. color:#D9001B;
  3989. }
  3990. #u42909 .text {
  3991. position:absolute;
  3992. align-self:flex-start;
  3993. padding:0px 0px 0px 0px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u42909_text {
  3998. border-width:0px;
  3999. white-space:nowrap;
  4000. text-transform:none;
  4001. }
  4002. #u42910 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:0px;
  4008. height:0px;
  4009. }
  4010. #u42911_div {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:375px;
  4016. height:50px;
  4017. background:inherit;
  4018. background-color:rgba(255, 255, 255, 1);
  4019. box-sizing:border-box;
  4020. border-width:1px;
  4021. border-style:solid;
  4022. border-color:rgba(242, 242, 242, 1);
  4023. border-radius:26px;
  4024. border-top-left-radius:0px;
  4025. border-top-right-radius:0px;
  4026. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4027. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4028. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4029. }
  4030. #u42911 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:29px;
  4034. top:789px;
  4035. width:375px;
  4036. height:50px;
  4037. display:flex;
  4038. }
  4039. #u42911 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 2px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u42911_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u42912 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:0px;
  4058. height:0px;
  4059. }
  4060. #u42913_div {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:77px;
  4066. height:50px;
  4067. background:inherit;
  4068. background-color:rgba(255, 255, 255, 1);
  4069. border:none;
  4070. border-radius:0px;
  4071. border-top-left-radius:0px;
  4072. border-top-right-radius:0px;
  4073. -moz-box-shadow:none;
  4074. -webkit-box-shadow:none;
  4075. box-shadow:none;
  4076. }
  4077. #u42913 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:178px;
  4081. top:789px;
  4082. width:77px;
  4083. height:50px;
  4084. display:flex;
  4085. }
  4086. #u42913 .text {
  4087. position:absolute;
  4088. align-self:center;
  4089. padding:2px 2px 2px 2px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u42913_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u42914 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:0px;
  4105. height:0px;
  4106. }
  4107. #u42915_img {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:38px;
  4113. height:38px;
  4114. }
  4115. #u42915 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:198px;
  4119. top:779px;
  4120. width:38px;
  4121. height:38px;
  4122. display:flex;
  4123. font-size:12px;
  4124. color:#FFFFFF;
  4125. }
  4126. #u42915 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:2px 2px 2px 2px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u42915_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. }
  4138. #u42916_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:49px;
  4144. height:17px;
  4145. background:inherit;
  4146. background-color:rgba(255, 255, 255, 0);
  4147. border:none;
  4148. border-radius:0px;
  4149. -moz-box-shadow:none;
  4150. -webkit-box-shadow:none;
  4151. box-shadow:none;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. }
  4157. #u42916 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:192px;
  4161. top:818px;
  4162. width:49px;
  4163. height:17px;
  4164. display:flex;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. }
  4170. #u42916 .text {
  4171. position:absolute;
  4172. align-self:flex-start;
  4173. padding:0px 0px 0px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u42916_text {
  4178. border-width:0px;
  4179. white-space:nowrap;
  4180. text-transform:none;
  4181. }
  4182. #u42917 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:0px;
  4188. height:0px;
  4189. }
  4190. #u42918_div {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:0px;
  4194. top:0px;
  4195. width:75px;
  4196. height:50px;
  4197. background:inherit;
  4198. background-color:rgba(255, 255, 255, 1);
  4199. border:none;
  4200. border-right:0px;
  4201. border-radius:26px;
  4202. border-top-left-radius:0px;
  4203. border-top-right-radius:0px;
  4204. border-bottom-right-radius:0px;
  4205. -moz-box-shadow:none;
  4206. -webkit-box-shadow:none;
  4207. box-shadow:none;
  4208. }
  4209. #u42918 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:29px;
  4213. top:789px;
  4214. width:75px;
  4215. height:50px;
  4216. display:flex;
  4217. }
  4218. #u42918 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u42918_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u42919 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:0px;
  4237. height:0px;
  4238. }
  4239. #u42920_img {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:24px;
  4245. height:24px;
  4246. }
  4247. #u42920 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:54px;
  4251. top:793px;
  4252. width:24px;
  4253. height:24px;
  4254. display:flex;
  4255. font-size:8px;
  4256. }
  4257. #u42920 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 2px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u42920_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. }
  4269. #u42921_div {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:25px;
  4275. height:17px;
  4276. background:inherit;
  4277. background-color:rgba(255, 255, 255, 0);
  4278. border:none;
  4279. border-radius:0px;
  4280. -moz-box-shadow:none;
  4281. -webkit-box-shadow:none;
  4282. box-shadow:none;
  4283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:12px;
  4287. }
  4288. #u42921 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:54px;
  4292. top:818px;
  4293. width:25px;
  4294. height:17px;
  4295. display:flex;
  4296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:12px;
  4300. }
  4301. #u42921 .text {
  4302. position:absolute;
  4303. align-self:flex-start;
  4304. padding:0px 0px 0px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u42921_text {
  4309. border-width:0px;
  4310. white-space:nowrap;
  4311. text-transform:none;
  4312. }
  4313. #u42922 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:0px;
  4319. height:0px;
  4320. }
  4321. #u42923_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:75px;
  4327. height:50px;
  4328. background:inherit;
  4329. background-color:rgba(255, 255, 255, 1);
  4330. border:none;
  4331. border-left:0px;
  4332. border-radius:26px;
  4333. border-top-left-radius:0px;
  4334. border-top-right-radius:0px;
  4335. border-bottom-left-radius:0px;
  4336. -moz-box-shadow:none;
  4337. -webkit-box-shadow:none;
  4338. box-shadow:none;
  4339. }
  4340. #u42923 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:329px;
  4344. top:789px;
  4345. width:75px;
  4346. height:50px;
  4347. display:flex;
  4348. }
  4349. #u42923 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:2px 2px 2px 2px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u42923_text {
  4357. border-width:0px;
  4358. word-wrap:break-word;
  4359. text-transform:none;
  4360. visibility:hidden;
  4361. }
  4362. #u42924 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:0px;
  4368. height:0px;
  4369. }
  4370. #u42925_img {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:24px;
  4376. height:24px;
  4377. }
  4378. #u42925 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:354px;
  4382. top:795px;
  4383. width:24px;
  4384. height:24px;
  4385. display:flex;
  4386. font-size:8px;
  4387. }
  4388. #u42925 .text {
  4389. position:absolute;
  4390. align-self:center;
  4391. padding:2px 2px 2px 2px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u42925_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. }
  4400. #u42926_div {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:25px;
  4406. height:17px;
  4407. background:inherit;
  4408. background-color:rgba(255, 255, 255, 0);
  4409. border:none;
  4410. border-radius:0px;
  4411. -moz-box-shadow:none;
  4412. -webkit-box-shadow:none;
  4413. box-shadow:none;
  4414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:12px;
  4418. }
  4419. #u42926 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:354px;
  4423. top:820px;
  4424. width:25px;
  4425. height:17px;
  4426. display:flex;
  4427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. font-size:12px;
  4431. }
  4432. #u42926 .text {
  4433. position:absolute;
  4434. align-self:flex-start;
  4435. padding:0px 0px 0px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u42926_text {
  4440. border-width:0px;
  4441. white-space:nowrap;
  4442. text-transform:none;
  4443. }
  4444. #u42927 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:0px;
  4450. height:0px;
  4451. }
  4452. #u42928_div {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:75px;
  4458. height:50px;
  4459. background:inherit;
  4460. background-color:rgba(255, 255, 255, 1);
  4461. border:none;
  4462. border-radius:0px;
  4463. border-top-left-radius:0px;
  4464. border-top-right-radius:0px;
  4465. -moz-box-shadow:none;
  4466. -webkit-box-shadow:none;
  4467. box-shadow:none;
  4468. }
  4469. #u42928 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:254px;
  4473. top:789px;
  4474. width:75px;
  4475. height:50px;
  4476. display:flex;
  4477. }
  4478. #u42928 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 2px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u42928_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. visibility:hidden;
  4490. }
  4491. #u42929 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:0px;
  4497. height:0px;
  4498. }
  4499. #u42930_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:24px;
  4505. height:24px;
  4506. }
  4507. #u42930 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:279px;
  4511. top:793px;
  4512. width:24px;
  4513. height:24px;
  4514. display:flex;
  4515. font-size:8px;
  4516. }
  4517. #u42930 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:2px 2px 2px 2px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u42930_text {
  4525. border-width:0px;
  4526. word-wrap:break-word;
  4527. text-transform:none;
  4528. }
  4529. #u42931_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:25px;
  4535. height:17px;
  4536. background:inherit;
  4537. background-color:rgba(255, 255, 255, 0);
  4538. border:none;
  4539. border-radius:0px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:12px;
  4547. }
  4548. #u42931 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:279px;
  4552. top:818px;
  4553. width:25px;
  4554. height:17px;
  4555. display:flex;
  4556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4557. font-weight:400;
  4558. font-style:normal;
  4559. font-size:12px;
  4560. }
  4561. #u42931 .text {
  4562. position:absolute;
  4563. align-self:flex-start;
  4564. padding:0px 0px 0px 0px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u42931_text {
  4569. border-width:0px;
  4570. white-space:nowrap;
  4571. text-transform:none;
  4572. }
  4573. #u42932 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:0px;
  4579. height:0px;
  4580. }
  4581. #u42933_div {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:75px;
  4587. height:50px;
  4588. background:inherit;
  4589. background-color:rgba(255, 255, 255, 1);
  4590. border:none;
  4591. border-radius:0px;
  4592. border-top-left-radius:0px;
  4593. border-top-right-radius:0px;
  4594. -moz-box-shadow:none;
  4595. -webkit-box-shadow:none;
  4596. box-shadow:none;
  4597. }
  4598. #u42933 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:104px;
  4602. top:789px;
  4603. width:75px;
  4604. height:50px;
  4605. display:flex;
  4606. }
  4607. #u42933 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u42933_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u42934 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:0px;
  4626. height:0px;
  4627. }
  4628. #u42935_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:24px;
  4634. height:24px;
  4635. }
  4636. #u42935 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:129px;
  4640. top:793px;
  4641. width:24px;
  4642. height:24px;
  4643. display:flex;
  4644. font-size:8px;
  4645. }
  4646. #u42935 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:2px 2px 2px 2px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u42935_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. }
  4658. #u42936_div {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:37px;
  4664. height:17px;
  4665. background:inherit;
  4666. background-color:rgba(255, 255, 255, 0);
  4667. border:none;
  4668. border-radius:0px;
  4669. -moz-box-shadow:none;
  4670. -webkit-box-shadow:none;
  4671. box-shadow:none;
  4672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:12px;
  4676. }
  4677. #u42936 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:123px;
  4681. top:818px;
  4682. width:37px;
  4683. height:17px;
  4684. display:flex;
  4685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. font-size:12px;
  4689. }
  4690. #u42936 .text {
  4691. position:absolute;
  4692. align-self:flex-start;
  4693. padding:0px 0px 0px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u42936_text {
  4698. border-width:0px;
  4699. white-space:nowrap;
  4700. text-transform:none;
  4701. }
  4702. #u42937 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:0px;
  4708. height:0px;
  4709. }
  4710. #u42938_div {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:375px;
  4716. height:50px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 1);
  4719. box-sizing:border-box;
  4720. border-width:1px;
  4721. border-style:solid;
  4722. border-color:rgba(242, 242, 242, 1);
  4723. border-radius:26px;
  4724. border-top-left-radius:0px;
  4725. border-top-right-radius:0px;
  4726. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4727. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4728. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4729. }
  4730. #u42938 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:482px;
  4734. top:789px;
  4735. width:375px;
  4736. height:50px;
  4737. display:flex;
  4738. }
  4739. #u42938 .text {
  4740. position:absolute;
  4741. align-self:center;
  4742. padding:2px 2px 2px 2px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u42938_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. visibility:hidden;
  4751. }
  4752. #u42939 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:0px;
  4758. height:0px;
  4759. }
  4760. #u42940_div {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:77px;
  4766. height:50px;
  4767. background:inherit;
  4768. background-color:rgba(255, 255, 255, 1);
  4769. border:none;
  4770. border-radius:0px;
  4771. border-top-left-radius:0px;
  4772. border-top-right-radius:0px;
  4773. -moz-box-shadow:none;
  4774. -webkit-box-shadow:none;
  4775. box-shadow:none;
  4776. }
  4777. #u42940 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:631px;
  4781. top:789px;
  4782. width:77px;
  4783. height:50px;
  4784. display:flex;
  4785. }
  4786. #u42940 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:2px 2px 2px 2px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u42940_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. visibility:hidden;
  4798. }
  4799. #u42941 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:0px;
  4805. height:0px;
  4806. }
  4807. #u42942_img {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:38px;
  4813. height:38px;
  4814. }
  4815. #u42942 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:651px;
  4819. top:779px;
  4820. width:38px;
  4821. height:38px;
  4822. display:flex;
  4823. font-size:12px;
  4824. color:#FFFFFF;
  4825. }
  4826. #u42942 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 2px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u42942_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. }
  4838. #u42943_div {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:49px;
  4844. height:17px;
  4845. background:inherit;
  4846. background-color:rgba(255, 255, 255, 0);
  4847. border:none;
  4848. border-radius:0px;
  4849. -moz-box-shadow:none;
  4850. -webkit-box-shadow:none;
  4851. box-shadow:none;
  4852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. }
  4857. #u42943 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:645px;
  4861. top:818px;
  4862. width:49px;
  4863. height:17px;
  4864. display:flex;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:12px;
  4869. }
  4870. #u42943 .text {
  4871. position:absolute;
  4872. align-self:flex-start;
  4873. padding:0px 0px 0px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u42943_text {
  4878. border-width:0px;
  4879. white-space:nowrap;
  4880. text-transform:none;
  4881. }
  4882. #u42944 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:0px;
  4888. height:0px;
  4889. }
  4890. #u42945_div {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:75px;
  4896. height:50px;
  4897. background:inherit;
  4898. background-color:rgba(255, 255, 255, 1);
  4899. border:none;
  4900. border-right:0px;
  4901. border-radius:26px;
  4902. border-top-left-radius:0px;
  4903. border-top-right-radius:0px;
  4904. border-bottom-right-radius:0px;
  4905. -moz-box-shadow:none;
  4906. -webkit-box-shadow:none;
  4907. box-shadow:none;
  4908. }
  4909. #u42945 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:482px;
  4913. top:789px;
  4914. width:75px;
  4915. height:50px;
  4916. display:flex;
  4917. }
  4918. #u42945 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u42945_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u42946 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u42947_img {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:24px;
  4945. height:24px;
  4946. }
  4947. #u42947 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:507px;
  4951. top:793px;
  4952. width:24px;
  4953. height:24px;
  4954. display:flex;
  4955. font-size:8px;
  4956. }
  4957. #u42947 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 2px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u42947_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. }
  4969. #u42948_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:25px;
  4975. height:17px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 0);
  4978. border:none;
  4979. border-radius:0px;
  4980. -moz-box-shadow:none;
  4981. -webkit-box-shadow:none;
  4982. box-shadow:none;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:12px;
  4987. }
  4988. #u42948 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:507px;
  4992. top:818px;
  4993. width:25px;
  4994. height:17px;
  4995. display:flex;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. }
  5001. #u42948 .text {
  5002. position:absolute;
  5003. align-self:flex-start;
  5004. padding:0px 0px 0px 0px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u42948_text {
  5009. border-width:0px;
  5010. white-space:nowrap;
  5011. text-transform:none;
  5012. }
  5013. #u42949 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:0px;
  5019. height:0px;
  5020. }
  5021. #u42950_div {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:75px;
  5027. height:50px;
  5028. background:inherit;
  5029. background-color:rgba(255, 255, 255, 1);
  5030. border:none;
  5031. border-left:0px;
  5032. border-radius:26px;
  5033. border-top-left-radius:0px;
  5034. border-top-right-radius:0px;
  5035. border-bottom-left-radius:0px;
  5036. -moz-box-shadow:none;
  5037. -webkit-box-shadow:none;
  5038. box-shadow:none;
  5039. }
  5040. #u42950 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:782px;
  5044. top:789px;
  5045. width:75px;
  5046. height:50px;
  5047. display:flex;
  5048. }
  5049. #u42950 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u42950_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u42951 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:0px;
  5068. height:0px;
  5069. }
  5070. #u42952_img {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:24px;
  5076. height:24px;
  5077. }
  5078. #u42952 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:807px;
  5082. top:795px;
  5083. width:24px;
  5084. height:24px;
  5085. display:flex;
  5086. font-size:8px;
  5087. }
  5088. #u42952 .text {
  5089. position:absolute;
  5090. align-self:center;
  5091. padding:2px 2px 2px 2px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u42952_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. }
  5100. #u42953_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:25px;
  5106. height:17px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 0);
  5109. border:none;
  5110. border-radius:0px;
  5111. -moz-box-shadow:none;
  5112. -webkit-box-shadow:none;
  5113. box-shadow:none;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:12px;
  5118. }
  5119. #u42953 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:807px;
  5123. top:820px;
  5124. width:25px;
  5125. height:17px;
  5126. display:flex;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:12px;
  5131. }
  5132. #u42953 .text {
  5133. position:absolute;
  5134. align-self:flex-start;
  5135. padding:0px 0px 0px 0px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u42953_text {
  5140. border-width:0px;
  5141. white-space:nowrap;
  5142. text-transform:none;
  5143. }
  5144. #u42954 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:0px;
  5150. height:0px;
  5151. }
  5152. #u42955_div {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:75px;
  5158. height:50px;
  5159. background:inherit;
  5160. background-color:rgba(255, 255, 255, 1);
  5161. border:none;
  5162. border-radius:0px;
  5163. border-top-left-radius:0px;
  5164. border-top-right-radius:0px;
  5165. -moz-box-shadow:none;
  5166. -webkit-box-shadow:none;
  5167. box-shadow:none;
  5168. }
  5169. #u42955 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:707px;
  5173. top:789px;
  5174. width:75px;
  5175. height:50px;
  5176. display:flex;
  5177. }
  5178. #u42955 .text {
  5179. position:absolute;
  5180. align-self:center;
  5181. padding:2px 2px 2px 2px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u42955_text {
  5186. border-width:0px;
  5187. word-wrap:break-word;
  5188. text-transform:none;
  5189. visibility:hidden;
  5190. }
  5191. #u42956 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:0px;
  5197. height:0px;
  5198. }
  5199. #u42957_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:24px;
  5205. height:24px;
  5206. }
  5207. #u42957 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:732px;
  5211. top:793px;
  5212. width:24px;
  5213. height:24px;
  5214. display:flex;
  5215. font-size:8px;
  5216. }
  5217. #u42957 .text {
  5218. position:absolute;
  5219. align-self:center;
  5220. padding:2px 2px 2px 2px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u42957_text {
  5225. border-width:0px;
  5226. word-wrap:break-word;
  5227. text-transform:none;
  5228. }
  5229. #u42958_div {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:25px;
  5235. height:17px;
  5236. background:inherit;
  5237. background-color:rgba(255, 255, 255, 0);
  5238. border:none;
  5239. border-radius:0px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:12px;
  5247. }
  5248. #u42958 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:732px;
  5252. top:818px;
  5253. width:25px;
  5254. height:17px;
  5255. display:flex;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:12px;
  5260. }
  5261. #u42958 .text {
  5262. position:absolute;
  5263. align-self:flex-start;
  5264. padding:0px 0px 0px 0px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u42958_text {
  5269. border-width:0px;
  5270. white-space:nowrap;
  5271. text-transform:none;
  5272. }
  5273. #u42959 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:0px;
  5279. height:0px;
  5280. }
  5281. #u42960_div {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:75px;
  5287. height:50px;
  5288. background:inherit;
  5289. background-color:rgba(255, 255, 255, 1);
  5290. border:none;
  5291. border-radius:0px;
  5292. border-top-left-radius:0px;
  5293. border-top-right-radius:0px;
  5294. -moz-box-shadow:none;
  5295. -webkit-box-shadow:none;
  5296. box-shadow:none;
  5297. }
  5298. #u42960 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:557px;
  5302. top:789px;
  5303. width:75px;
  5304. height:50px;
  5305. display:flex;
  5306. }
  5307. #u42960 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 2px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u42960_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. visibility:hidden;
  5319. }
  5320. #u42961 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:0px;
  5326. height:0px;
  5327. }
  5328. #u42962_img {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:0px;
  5332. top:0px;
  5333. width:24px;
  5334. height:24px;
  5335. }
  5336. #u42962 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:582px;
  5340. top:793px;
  5341. width:24px;
  5342. height:24px;
  5343. display:flex;
  5344. font-size:8px;
  5345. }
  5346. #u42962 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:2px 2px 2px 2px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u42962_text {
  5354. border-width:0px;
  5355. word-wrap:break-word;
  5356. text-transform:none;
  5357. }
  5358. #u42963_div {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:37px;
  5364. height:17px;
  5365. background:inherit;
  5366. background-color:rgba(255, 255, 255, 0);
  5367. border:none;
  5368. border-radius:0px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. }
  5377. #u42963 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:576px;
  5381. top:818px;
  5382. width:37px;
  5383. height:17px;
  5384. display:flex;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:12px;
  5389. }
  5390. #u42963 .text {
  5391. position:absolute;
  5392. align-self:flex-start;
  5393. padding:0px 0px 0px 0px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u42963_text {
  5398. border-width:0px;
  5399. white-space:nowrap;
  5400. text-transform:none;
  5401. }
  5402. #u42964 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:0px;
  5408. height:0px;
  5409. }
  5410. #u42965_div {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:346px;
  5416. height:200px;
  5417. background:inherit;
  5418. background-color:rgba(255, 255, 255, 1);
  5419. border:none;
  5420. border-radius:9px;
  5421. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5422. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5423. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5424. }
  5425. #u42965 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:45px;
  5429. top:915px;
  5430. width:346px;
  5431. height:200px;
  5432. display:flex;
  5433. }
  5434. #u42965 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u42965_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. visibility:hidden;
  5446. }
  5447. #u42966_div {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:318px;
  5453. height:33px;
  5454. background:inherit;
  5455. background-color:rgba(255, 255, 255, 0);
  5456. border:none;
  5457. border-radius:0px;
  5458. -moz-box-shadow:none;
  5459. -webkit-box-shadow:none;
  5460. box-shadow:none;
  5461. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5462. font-weight:650;
  5463. font-style:normal;
  5464. font-size:24px;
  5465. text-align:center;
  5466. }
  5467. #u42966 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:57px;
  5471. top:966px;
  5472. width:318px;
  5473. height:33px;
  5474. display:flex;
  5475. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5476. font-weight:650;
  5477. font-style:normal;
  5478. font-size:24px;
  5479. text-align:center;
  5480. }
  5481. #u42966 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:0px 0px 0px 0px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u42966_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. }
  5493. #u42967_div {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:173px;
  5499. height:60px;
  5500. background:inherit;
  5501. background-color:rgba(255, 255, 255, 0);
  5502. box-sizing:border-box;
  5503. border-width:1px;
  5504. border-style:solid;
  5505. border-color:rgba(215, 215, 215, 1);
  5506. border-left:0px;
  5507. border-bottom:0px;
  5508. border-radius:0px;
  5509. border-top-left-radius:0px;
  5510. border-bottom-right-radius:0px;
  5511. -moz-box-shadow:none;
  5512. -webkit-box-shadow:none;
  5513. box-shadow:none;
  5514. font-family:'ArialMT', 'Arial', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:22px;
  5518. color:#0099FF;
  5519. text-align:center;
  5520. }
  5521. #u42967 {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:44px;
  5525. top:1055px;
  5526. width:173px;
  5527. height:60px;
  5528. display:flex;
  5529. font-family:'ArialMT', 'Arial', sans-serif;
  5530. font-weight:400;
  5531. font-style:normal;
  5532. font-size:22px;
  5533. color:#0099FF;
  5534. text-align:center;
  5535. }
  5536. #u42967 .text {
  5537. position:absolute;
  5538. align-self:center;
  5539. padding:0px 0px 0px 0px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u42967_text {
  5544. border-width:0px;
  5545. word-wrap:break-word;
  5546. text-transform:none;
  5547. }
  5548. #u42968_div {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:173px;
  5554. height:60px;
  5555. background:inherit;
  5556. background-color:rgba(255, 255, 255, 0);
  5557. box-sizing:border-box;
  5558. border-width:1px;
  5559. border-style:solid;
  5560. border-color:rgba(215, 215, 215, 1);
  5561. border-left:0px;
  5562. border-right:0px;
  5563. border-bottom:0px;
  5564. border-radius:0px;
  5565. border-top-left-radius:0px;
  5566. border-top-right-radius:0px;
  5567. -moz-box-shadow:none;
  5568. -webkit-box-shadow:none;
  5569. box-shadow:none;
  5570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5571. font-weight:400;
  5572. font-style:normal;
  5573. font-size:22px;
  5574. color:#0099FF;
  5575. text-align:center;
  5576. }
  5577. #u42968 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:217px;
  5581. top:1055px;
  5582. width:173px;
  5583. height:60px;
  5584. display:flex;
  5585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:22px;
  5589. color:#0099FF;
  5590. text-align:center;
  5591. }
  5592. #u42968 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:0px 0px 0px 0px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u42968_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. }
  5604. #u42969 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:495px;
  5608. top:239px;
  5609. width:349px;
  5610. height:154px;
  5611. }
  5612. #u42969_state0 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:349px;
  5618. height:154px;
  5619. overflow:auto;
  5620. -webkit-overflow-scrolling:touch;
  5621. -ms-overflow-y:hidden;
  5622. overflow-y:hidden;
  5623. background-image:none;
  5624. border:none;
  5625. border-radius:0px;
  5626. -moz-box-shadow:none;
  5627. -webkit-box-shadow:none;
  5628. box-shadow:none;
  5629. }
  5630. #u42969_state0_content {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:1px;
  5636. height:1px;
  5637. }
  5638. #u42970 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:0px;
  5644. height:0px;
  5645. }
  5646. #u42971_div {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:300px;
  5652. height:137px;
  5653. background:inherit;
  5654. background-color:rgba(242, 242, 242, 1);
  5655. border:none;
  5656. border-radius:4px;
  5657. -moz-box-shadow:none;
  5658. -webkit-box-shadow:none;
  5659. box-shadow:none;
  5660. }
  5661. #u42971 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:300px;
  5667. height:137px;
  5668. display:flex;
  5669. }
  5670. #u42971 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 2px 2px 2px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u42971_text {
  5678. border-width:0px;
  5679. word-wrap:break-word;
  5680. text-transform:none;
  5681. visibility:hidden;
  5682. }
  5683. #u42972_img {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:104px;
  5689. height:104px;
  5690. }
  5691. #u42972 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:14px;
  5695. top:15px;
  5696. width:104px;
  5697. height:104px;
  5698. display:flex;
  5699. }
  5700. #u42972 .text {
  5701. position:absolute;
  5702. align-self:center;
  5703. padding:2px 2px 2px 2px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u42972_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. visibility:hidden;
  5712. }
  5713. #u42973_div {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:134px;
  5719. height:60px;
  5720. background:inherit;
  5721. background-color:rgba(255, 255, 255, 0);
  5722. border:none;
  5723. border-radius:0px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5728. font-style:normal;
  5729. line-height:20px;
  5730. }
  5731. #u42973 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:136px;
  5735. top:29px;
  5736. width:134px;
  5737. height:60px;
  5738. display:flex;
  5739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5740. font-style:normal;
  5741. line-height:20px;
  5742. }
  5743. #u42973 .text {
  5744. position:absolute;
  5745. align-self:flex-start;
  5746. padding:0px 0px 0px 0px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u42973_text {
  5751. border-width:0px;
  5752. white-space:nowrap;
  5753. text-transform:none;
  5754. }
  5755. #u42974_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:133px;
  5761. height:20px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 0);
  5764. border:none;
  5765. border-radius:0px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:12px;
  5773. color:#0089FE;
  5774. line-height:20px;
  5775. }
  5776. #u42974 {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:136px;
  5780. top:99px;
  5781. width:133px;
  5782. height:20px;
  5783. display:flex;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:12px;
  5788. color:#0089FE;
  5789. line-height:20px;
  5790. }
  5791. #u42974 .text {
  5792. position:absolute;
  5793. align-self:flex-start;
  5794. padding:0px 0px 0px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u42974_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u42975 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:0px;
  5809. height:0px;
  5810. }
  5811. #u42976_div {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:300px;
  5817. height:137px;
  5818. background:inherit;
  5819. background-color:rgba(242, 242, 242, 1);
  5820. border:none;
  5821. border-radius:4px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. }
  5826. #u42976 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:310px;
  5830. top:0px;
  5831. width:300px;
  5832. height:137px;
  5833. display:flex;
  5834. }
  5835. #u42976 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 2px 2px 2px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u42976_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u42977_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:104px;
  5854. height:104px;
  5855. }
  5856. #u42977 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:324px;
  5860. top:15px;
  5861. width:104px;
  5862. height:104px;
  5863. display:flex;
  5864. }
  5865. #u42977 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 2px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u42977_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u42978_div {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:134px;
  5884. height:60px;
  5885. background:inherit;
  5886. background-color:rgba(255, 255, 255, 0);
  5887. border:none;
  5888. border-radius:0px;
  5889. -moz-box-shadow:none;
  5890. -webkit-box-shadow:none;
  5891. box-shadow:none;
  5892. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5893. font-style:normal;
  5894. line-height:20px;
  5895. }
  5896. #u42978 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:446px;
  5900. top:29px;
  5901. width:134px;
  5902. height:60px;
  5903. display:flex;
  5904. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5905. font-style:normal;
  5906. line-height:20px;
  5907. }
  5908. #u42978 .text {
  5909. position:absolute;
  5910. align-self:flex-start;
  5911. padding:0px 0px 0px 0px;
  5912. box-sizing:border-box;
  5913. width:100%;
  5914. }
  5915. #u42978_text {
  5916. border-width:0px;
  5917. white-space:nowrap;
  5918. text-transform:none;
  5919. }
  5920. #u42979_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:133px;
  5926. height:20px;
  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. color:#0089FE;
  5939. line-height:20px;
  5940. }
  5941. #u42979 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:446px;
  5945. top:99px;
  5946. width:133px;
  5947. height:20px;
  5948. display:flex;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:12px;
  5953. color:#0089FE;
  5954. line-height:20px;
  5955. }
  5956. #u42979 .text {
  5957. position:absolute;
  5958. align-self:flex-start;
  5959. padding:0px 0px 0px 0px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u42979_text {
  5964. border-width:0px;
  5965. white-space:nowrap;
  5966. text-transform:none;
  5967. }
  5968. #u42980 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:0px;
  5974. height:0px;
  5975. }
  5976. #u42981_div {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:300px;
  5982. height:137px;
  5983. background:inherit;
  5984. background-color:rgba(242, 242, 242, 1);
  5985. border:none;
  5986. border-radius:4px;
  5987. -moz-box-shadow:none;
  5988. -webkit-box-shadow:none;
  5989. box-shadow:none;
  5990. }
  5991. #u42981 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:620px;
  5995. top:0px;
  5996. width:300px;
  5997. height:137px;
  5998. display:flex;
  5999. }
  6000. #u42981 .text {
  6001. position:absolute;
  6002. align-self:center;
  6003. padding:2px 2px 2px 2px;
  6004. box-sizing:border-box;
  6005. width:100%;
  6006. }
  6007. #u42981_text {
  6008. border-width:0px;
  6009. word-wrap:break-word;
  6010. text-transform:none;
  6011. visibility:hidden;
  6012. }
  6013. #u42982_img {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:104px;
  6019. height:104px;
  6020. }
  6021. #u42982 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:634px;
  6025. top:15px;
  6026. width:104px;
  6027. height:104px;
  6028. display:flex;
  6029. }
  6030. #u42982 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:2px 2px 2px 2px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u42982_text {
  6038. border-width:0px;
  6039. word-wrap:break-word;
  6040. text-transform:none;
  6041. visibility:hidden;
  6042. }
  6043. #u42983_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:134px;
  6049. height:60px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 0);
  6052. border:none;
  6053. border-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6058. font-style:normal;
  6059. line-height:20px;
  6060. }
  6061. #u42983 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:756px;
  6065. top:29px;
  6066. width:134px;
  6067. height:60px;
  6068. display:flex;
  6069. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6070. font-style:normal;
  6071. line-height:20px;
  6072. }
  6073. #u42983 .text {
  6074. position:absolute;
  6075. align-self:flex-start;
  6076. padding:0px 0px 0px 0px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u42983_text {
  6081. border-width:0px;
  6082. white-space:nowrap;
  6083. text-transform:none;
  6084. }
  6085. #u42984_div {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:133px;
  6091. height:20px;
  6092. background:inherit;
  6093. background-color:rgba(255, 255, 255, 0);
  6094. border:none;
  6095. border-radius:0px;
  6096. -moz-box-shadow:none;
  6097. -webkit-box-shadow:none;
  6098. box-shadow:none;
  6099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:12px;
  6103. color:#0089FE;
  6104. line-height:20px;
  6105. }
  6106. #u42984 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:756px;
  6110. top:99px;
  6111. width:133px;
  6112. height:20px;
  6113. display:flex;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:12px;
  6118. color:#0089FE;
  6119. line-height:20px;
  6120. }
  6121. #u42984 .text {
  6122. position:absolute;
  6123. align-self:flex-start;
  6124. padding:0px 0px 0px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u42984_text {
  6129. border-width:0px;
  6130. white-space:nowrap;
  6131. text-transform:none;
  6132. }
  6133. #u42985_img {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:18px;
  6139. height:10px;
  6140. }
  6141. #u42985 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:661px;
  6145. top:749px;
  6146. width:18px;
  6147. height:10px;
  6148. display:flex;
  6149. }
  6150. #u42985 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 2px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u42985_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u42986 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:0px;
  6169. height:0px;
  6170. }
  6171. #u42987_div {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:349px;
  6177. height:70px;
  6178. background:inherit;
  6179. background-color:rgba(242, 242, 242, 1);
  6180. border:none;
  6181. border-radius:4px;
  6182. -moz-box-shadow:none;
  6183. -webkit-box-shadow:none;
  6184. box-shadow:none;
  6185. }
  6186. #u42987 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:495px;
  6190. top:672px;
  6191. width:349px;
  6192. height:70px;
  6193. display:flex;
  6194. }
  6195. #u42987 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 2px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u42987_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u42988_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:102px;
  6214. height:25px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 0);
  6217. border:none;
  6218. border-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6223. font-weight:500;
  6224. font-style:normal;
  6225. font-size:18px;
  6226. }
  6227. #u42988 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:513px;
  6231. top:683px;
  6232. width:102px;
  6233. height:25px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6236. font-weight:500;
  6237. font-style:normal;
  6238. font-size:18px;
  6239. }
  6240. #u42988 .text {
  6241. position:absolute;
  6242. align-self:flex-start;
  6243. padding:0px 0px 0px 0px;
  6244. box-sizing:border-box;
  6245. width:100%;
  6246. }
  6247. #u42988_text {
  6248. border-width:0px;
  6249. white-space:nowrap;
  6250. text-transform:none;
  6251. }
  6252. #u42989_div {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:0px;
  6256. top:0px;
  6257. width:53px;
  6258. height:18px;
  6259. background:inherit;
  6260. background-color:rgba(255, 255, 255, 0);
  6261. border:none;
  6262. border-radius:0px;
  6263. -moz-box-shadow:none;
  6264. -webkit-box-shadow:none;
  6265. box-shadow:none;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. color:#7F7F7F;
  6270. }
  6271. #u42989 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:539px;
  6275. top:714px;
  6276. width:53px;
  6277. height:18px;
  6278. display:flex;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. color:#7F7F7F;
  6283. }
  6284. #u42989 .text {
  6285. position:absolute;
  6286. align-self:flex-start;
  6287. padding:0px 0px 0px 0px;
  6288. box-sizing:border-box;
  6289. width:100%;
  6290. }
  6291. #u42989_text {
  6292. border-width:0px;
  6293. white-space:nowrap;
  6294. text-transform:none;
  6295. }
  6296. #u42990 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:0px;
  6302. height:0px;
  6303. }
  6304. #u42991_img {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:12px;
  6310. height:12px;
  6311. }
  6312. #u42991 {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:515px;
  6316. top:716px;
  6317. width:12px;
  6318. height:12px;
  6319. display:flex;
  6320. -webkit-transform:rotate(315deg);
  6321. -moz-transform:rotate(315deg);
  6322. -ms-transform:rotate(315deg);
  6323. transform:rotate(315deg);
  6324. }
  6325. #u42991 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 2px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u42991_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u42992_div {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:11px;
  6344. height:14px;
  6345. background:inherit;
  6346. background-color:rgba(51, 51, 51, 1);
  6347. border:none;
  6348. border-radius:4px;
  6349. -moz-box-shadow:none;
  6350. -webkit-box-shadow:none;
  6351. box-shadow:none;
  6352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:10px;
  6356. color:#FFFFFF;
  6357. }
  6358. #u42992 {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:827px;
  6362. top:678px;
  6363. width:11px;
  6364. height:14px;
  6365. display:flex;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:10px;
  6370. color:#FFFFFF;
  6371. }
  6372. #u42992 .text {
  6373. position:absolute;
  6374. align-self:flex-start;
  6375. padding:0px 0px 0px 0px;
  6376. box-sizing:border-box;
  6377. width:100%;
  6378. }
  6379. #u42992_text {
  6380. border-width:0px;
  6381. white-space:nowrap;
  6382. text-transform:none;
  6383. }
  6384. #u42993_img {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:433px;
  6390. height:865px;
  6391. }
  6392. #u42993 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:906px;
  6396. top:0px;
  6397. width:433px;
  6398. height:865px;
  6399. display:flex;
  6400. }
  6401. #u42993 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 2px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u42993_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u42994_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:537px;
  6420. height:250px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 0);
  6423. border:none;
  6424. border-radius:0px;
  6425. -moz-box-shadow:none;
  6426. -webkit-box-shadow:none;
  6427. box-shadow:none;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:12px;
  6432. line-height:25px;
  6433. }
  6434. #u42994 {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:1385px;
  6438. top:137px;
  6439. width:537px;
  6440. height:250px;
  6441. display:flex;
  6442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6443. font-weight:400;
  6444. font-style:normal;
  6445. font-size:12px;
  6446. line-height:25px;
  6447. }
  6448. #u42994 .text {
  6449. position:absolute;
  6450. align-self:flex-start;
  6451. padding:0px 0px 0px 0px;
  6452. box-sizing:border-box;
  6453. width:100%;
  6454. }
  6455. #u42994_text {
  6456. border-width:0px;
  6457. word-wrap:break-word;
  6458. text-transform:none;
  6459. }
  6460. #u42995 {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:0px;
  6466. height:0px;
  6467. }
  6468. #u42996_div {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:375px;
  6474. height:735px;
  6475. background:inherit;
  6476. background-color:rgba(51, 51, 51, 0.8);
  6477. border:none;
  6478. border-radius:26px;
  6479. border-top-left-radius:0px;
  6480. border-top-right-radius:0px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. }
  6485. #u42996 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:935px;
  6489. top:104px;
  6490. width:375px;
  6491. height:735px;
  6492. display:flex;
  6493. }
  6494. #u42996 .text {
  6495. position:absolute;
  6496. align-self:center;
  6497. padding:2px 2px 2px 2px;
  6498. box-sizing:border-box;
  6499. width:100%;
  6500. }
  6501. #u42996_text {
  6502. border-width:0px;
  6503. word-wrap:break-word;
  6504. text-transform:none;
  6505. visibility:hidden;
  6506. }
  6507. #u42997_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:346px;
  6513. height:600px;
  6514. background:inherit;
  6515. background-color:rgba(255, 255, 255, 1);
  6516. border:none;
  6517. border-radius:9px;
  6518. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6519. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6520. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6521. }
  6522. #u42997 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:949px;
  6526. top:137px;
  6527. width:346px;
  6528. height:600px;
  6529. display:flex;
  6530. }
  6531. #u42997 .text {
  6532. position:absolute;
  6533. align-self:center;
  6534. padding:2px 2px 2px 2px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u42997_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. visibility:hidden;
  6543. }
  6544. #u42998_div {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:318px;
  6550. height:20px;
  6551. background:inherit;
  6552. background-color:rgba(255, 255, 255, 0);
  6553. border:none;
  6554. border-radius:0px;
  6555. -moz-box-shadow:none;
  6556. -webkit-box-shadow:none;
  6557. box-shadow:none;
  6558. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6559. font-weight:500;
  6560. font-style:normal;
  6561. font-size:12px;
  6562. text-align:center;
  6563. line-height:20px;
  6564. }
  6565. #u42998 {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:962px;
  6569. top:497px;
  6570. width:318px;
  6571. height:20px;
  6572. display:flex;
  6573. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6574. font-weight:500;
  6575. font-style:normal;
  6576. font-size:12px;
  6577. text-align:center;
  6578. line-height:20px;
  6579. }
  6580. #u42998 .text {
  6581. position:absolute;
  6582. align-self:center;
  6583. padding:0px 0px 0px 0px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u42998_text {
  6588. border-width:0px;
  6589. word-wrap:break-word;
  6590. text-transform:none;
  6591. }
  6592. #u42999_img {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:40px;
  6598. height:40px;
  6599. }
  6600. #u42999 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:1102px;
  6604. top:754px;
  6605. width:40px;
  6606. height:40px;
  6607. display:flex;
  6608. }
  6609. #u42999 .text {
  6610. position:absolute;
  6611. align-self:center;
  6612. padding:2px 2px 2px 2px;
  6613. box-sizing:border-box;
  6614. width:100%;
  6615. }
  6616. #u42999_text {
  6617. border-width:0px;
  6618. word-wrap:break-word;
  6619. text-transform:none;
  6620. visibility:hidden;
  6621. }
  6622. #u43000_img {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:300px;
  6628. height:300px;
  6629. }
  6630. #u43000 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:971px;
  6634. top:177px;
  6635. width:300px;
  6636. height:300px;
  6637. display:flex;
  6638. }
  6639. #u43000 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:2px 2px 2px 2px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u43000_text {
  6647. border-width:0px;
  6648. word-wrap:break-word;
  6649. text-transform:none;
  6650. visibility:hidden;
  6651. }
  6652. #u43001 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:0px;
  6658. height:0px;
  6659. }
  6660. #u43002_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:318px;
  6666. height:60px;
  6667. background:inherit;
  6668. background-color:rgba(242, 242, 242, 1);
  6669. border:none;
  6670. border-radius:4px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6675. font-weight:500;
  6676. font-style:normal;
  6677. font-size:12px;
  6678. text-align:center;
  6679. line-height:20px;
  6680. }
  6681. #u43002 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:963px;
  6685. top:533px;
  6686. width:318px;
  6687. height:60px;
  6688. display:flex;
  6689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6690. font-weight:500;
  6691. font-style:normal;
  6692. font-size:12px;
  6693. text-align:center;
  6694. line-height:20px;
  6695. }
  6696. #u43002 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:0px 0px 0px 0px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u43002_text {
  6704. border-width:0px;
  6705. word-wrap:break-word;
  6706. text-transform:none;
  6707. visibility:hidden;
  6708. }
  6709. #u43003_div {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:304px;
  6715. height:40px;
  6716. background:inherit;
  6717. background-color:rgba(255, 255, 255, 0);
  6718. border:none;
  6719. border-radius:0px;
  6720. -moz-box-shadow:none;
  6721. -webkit-box-shadow:none;
  6722. box-shadow:none;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:10px;
  6727. line-height:20px;
  6728. }
  6729. #u43003 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:973px;
  6733. top:543px;
  6734. width:304px;
  6735. height:40px;
  6736. display:flex;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:10px;
  6741. line-height:20px;
  6742. }
  6743. #u43003 .text {
  6744. position:absolute;
  6745. align-self:flex-start;
  6746. padding:0px 0px 0px 0px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u43003_text {
  6751. border-width:0px;
  6752. word-wrap:break-word;
  6753. text-transform:none;
  6754. }
  6755. #u43004 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:0px;
  6761. height:0px;
  6762. }
  6763. #u43005_div {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:318px;
  6769. height:60px;
  6770. background:inherit;
  6771. background-color:rgba(242, 242, 242, 1);
  6772. border:none;
  6773. border-radius:4px;
  6774. -moz-box-shadow:none;
  6775. -webkit-box-shadow:none;
  6776. box-shadow:none;
  6777. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6778. font-weight:500;
  6779. font-style:normal;
  6780. font-size:12px;
  6781. text-align:center;
  6782. line-height:20px;
  6783. }
  6784. #u43005 {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:963px;
  6788. top:594px;
  6789. width:318px;
  6790. height:60px;
  6791. display:flex;
  6792. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6793. font-weight:500;
  6794. font-style:normal;
  6795. font-size:12px;
  6796. text-align:center;
  6797. line-height:20px;
  6798. }
  6799. #u43005 .text {
  6800. position:absolute;
  6801. align-self:center;
  6802. padding:0px 0px 0px 0px;
  6803. box-sizing:border-box;
  6804. width:100%;
  6805. }
  6806. #u43005_text {
  6807. border-width:0px;
  6808. word-wrap:break-word;
  6809. text-transform:none;
  6810. visibility:hidden;
  6811. }
  6812. #u43006_div {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:304px;
  6818. height:40px;
  6819. background:inherit;
  6820. background-color:rgba(255, 255, 255, 0);
  6821. border:none;
  6822. border-radius:0px;
  6823. -moz-box-shadow:none;
  6824. -webkit-box-shadow:none;
  6825. box-shadow:none;
  6826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:10px;
  6830. line-height:20px;
  6831. }
  6832. #u43006 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:973px;
  6836. top:604px;
  6837. width:304px;
  6838. height:40px;
  6839. display:flex;
  6840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:10px;
  6844. line-height:20px;
  6845. }
  6846. #u43006 .text {
  6847. position:absolute;
  6848. align-self:flex-start;
  6849. padding:0px 0px 0px 0px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u43006_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. }
  6858. #u43007_div {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:349px;
  6864. height:74px;
  6865. background:inherit;
  6866. background-color:rgba(51, 51, 51, 0.8);
  6867. border:none;
  6868. border-radius:4px;
  6869. -moz-box-shadow:none;
  6870. -webkit-box-shadow:none;
  6871. box-shadow:none;
  6872. font-size:15px;
  6873. color:#FFFFFF;
  6874. }
  6875. #u43007 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:42px;
  6879. top:404px;
  6880. width:349px;
  6881. height:74px;
  6882. display:flex;
  6883. font-size:15px;
  6884. color:#FFFFFF;
  6885. }
  6886. #u43007 .text {
  6887. position:absolute;
  6888. align-self:center;
  6889. padding:2px 10px 2px 10px;
  6890. box-sizing:border-box;
  6891. width:100%;
  6892. }
  6893. #u43007_text {
  6894. border-width:0px;
  6895. word-wrap:break-word;
  6896. text-transform:none;
  6897. }
  6898. #u43008 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:0px;
  6904. height:0px;
  6905. }
  6906. #u43009_div {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:346px;
  6912. height:220px;
  6913. background:inherit;
  6914. background-color:rgba(255, 255, 255, 1);
  6915. border:none;
  6916. border-radius:9px;
  6917. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6918. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6919. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6920. }
  6921. #u43009 {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:419px;
  6925. top:915px;
  6926. width:346px;
  6927. height:220px;
  6928. display:flex;
  6929. }
  6930. #u43009 .text {
  6931. position:absolute;
  6932. align-self:center;
  6933. padding:2px 2px 2px 2px;
  6934. box-sizing:border-box;
  6935. width:100%;
  6936. }
  6937. #u43009_text {
  6938. border-width:0px;
  6939. word-wrap:break-word;
  6940. text-transform:none;
  6941. visibility:hidden;
  6942. }
  6943. #u43010_div {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:291px;
  6949. height:28px;
  6950. background:inherit;
  6951. background-color:rgba(255, 255, 255, 0);
  6952. border:none;
  6953. border-radius:0px;
  6954. -moz-box-shadow:none;
  6955. -webkit-box-shadow:none;
  6956. box-shadow:none;
  6957. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6958. font-style:normal;
  6959. font-size:20px;
  6960. text-align:center;
  6961. }
  6962. #u43010 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:445px;
  6966. top:959px;
  6967. width:291px;
  6968. height:28px;
  6969. display:flex;
  6970. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6971. font-style:normal;
  6972. font-size:20px;
  6973. text-align:center;
  6974. }
  6975. #u43010 .text {
  6976. position:absolute;
  6977. align-self:center;
  6978. padding:0px 0px 0px 0px;
  6979. box-sizing:border-box;
  6980. width:100%;
  6981. }
  6982. #u43010_text {
  6983. border-width:0px;
  6984. word-wrap:break-word;
  6985. text-transform:none;
  6986. }
  6987. #u43011_div {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:173px;
  6993. height:60px;
  6994. background:inherit;
  6995. background-color:rgba(255, 255, 255, 0);
  6996. box-sizing:border-box;
  6997. border-width:1px;
  6998. border-style:solid;
  6999. border-color:rgba(215, 215, 215, 1);
  7000. border-left:0px;
  7001. border-bottom:0px;
  7002. border-radius:0px;
  7003. border-top-left-radius:0px;
  7004. border-bottom-right-radius:0px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. font-family:'ArialMT', 'Arial', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. font-size:22px;
  7012. color:#0099FF;
  7013. text-align:center;
  7014. }
  7015. #u43011 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:419px;
  7019. top:1075px;
  7020. width:173px;
  7021. height:60px;
  7022. display:flex;
  7023. font-family:'ArialMT', 'Arial', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:22px;
  7027. color:#0099FF;
  7028. text-align:center;
  7029. }
  7030. #u43011 .text {
  7031. position:absolute;
  7032. align-self:center;
  7033. padding:0px 0px 0px 0px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u43011_text {
  7038. border-width:0px;
  7039. word-wrap:break-word;
  7040. text-transform:none;
  7041. }
  7042. #u43012_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:173px;
  7048. height:60px;
  7049. background:inherit;
  7050. background-color:rgba(255, 255, 255, 0);
  7051. box-sizing:border-box;
  7052. border-width:1px;
  7053. border-style:solid;
  7054. border-color:rgba(215, 215, 215, 1);
  7055. border-left:0px;
  7056. border-right:0px;
  7057. border-bottom:0px;
  7058. border-radius:0px;
  7059. border-top-left-radius:0px;
  7060. border-top-right-radius:0px;
  7061. -moz-box-shadow:none;
  7062. -webkit-box-shadow:none;
  7063. box-shadow:none;
  7064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7065. font-weight:400;
  7066. font-style:normal;
  7067. font-size:22px;
  7068. color:#0099FF;
  7069. text-align:center;
  7070. }
  7071. #u43012 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:592px;
  7075. top:1075px;
  7076. width:173px;
  7077. height:60px;
  7078. display:flex;
  7079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:22px;
  7083. color:#0099FF;
  7084. text-align:center;
  7085. }
  7086. #u43012 .text {
  7087. position:absolute;
  7088. align-self:center;
  7089. padding:0px 0px 0px 0px;
  7090. box-sizing:border-box;
  7091. width:100%;
  7092. }
  7093. #u43012_text {
  7094. border-width:0px;
  7095. word-wrap:break-word;
  7096. text-transform:none;
  7097. }
  7098. #u43013_input {
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:224px;
  7103. height:40px;
  7104. padding:2px 2px 2px 2px;
  7105. font-family:'ArialMT', 'Arial', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:18px;
  7109. letter-spacing:normal;
  7110. color:#0089FE;
  7111. vertical-align:none;
  7112. text-align:left;
  7113. text-transform:none;
  7114. background-color:transparent;
  7115. border-color:transparent;
  7116. }
  7117. #u43013_input.disabled {
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:224px;
  7122. height:40px;
  7123. padding:2px 2px 2px 2px;
  7124. font-family:'ArialMT', 'Arial', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:18px;
  7128. letter-spacing:normal;
  7129. color:#0089FE;
  7130. vertical-align:none;
  7131. text-align:left;
  7132. text-transform:none;
  7133. background-color:transparent;
  7134. border-color:transparent;
  7135. }
  7136. #u43013_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:224px;
  7142. height:40px;
  7143. background:inherit;
  7144. background-color:rgba(242, 242, 242, 1);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-size:18px;
  7151. color:#0089FE;
  7152. }
  7153. #u43013 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:479px;
  7157. top:1005px;
  7158. width:224px;
  7159. height:40px;
  7160. display:flex;
  7161. font-size:18px;
  7162. color:#0089FE;
  7163. }
  7164. #u43013 .text {
  7165. position:absolute;
  7166. align-self:flex-start;
  7167. padding:2px 2px 2px 2px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u43013_div.disabled {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:224px;
  7177. height:40px;
  7178. background:inherit;
  7179. background-color:rgba(240, 240, 240, 1);
  7180. border:none;
  7181. border-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-size:18px;
  7186. color:#0089FE;
  7187. }
  7188. #u43013.disabled {
  7189. }
  7190. .u43013_input_option {
  7191. font-size:18px;
  7192. }
  7193. #u43014_div {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:152px;
  7199. height:17px;
  7200. background:inherit;
  7201. background-color:rgba(255, 255, 255, 0);
  7202. border:none;
  7203. border-radius:0px;
  7204. -moz-box-shadow:none;
  7205. -webkit-box-shadow:none;
  7206. box-shadow:none;
  7207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:12px;
  7211. color:#D9001B;
  7212. }
  7213. #u43014 {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:86px;
  7217. top:-58px;
  7218. width:152px;
  7219. height:17px;
  7220. display:flex;
  7221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7222. font-weight:400;
  7223. font-style:normal;
  7224. font-size:12px;
  7225. color:#D9001B;
  7226. }
  7227. #u43014 .text {
  7228. position:absolute;
  7229. align-self:flex-start;
  7230. padding:0px 0px 0px 0px;
  7231. box-sizing:border-box;
  7232. width:100%;
  7233. }
  7234. #u43014_text {
  7235. border-width:0px;
  7236. white-space:nowrap;
  7237. text-transform:none;
  7238. }