styles.css 108 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:893px;
  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. #u51610 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u51611 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u51611 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u51611_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u51611_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u51612_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u51612 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u51612 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u51612_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u51613 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u51614_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u51614 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u51614 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u51614_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u51615 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u51616 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u51616 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u51616_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u51616_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u51617 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u51617 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u51617_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u51617_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u51618 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u51619 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u51619 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u51619_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u51619_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u51620 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u51620 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u51620_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u51620_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u51621 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u51621 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u51621_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u51621_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u51622 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u51622 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u51622_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u51622_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u51623 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u51623 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u51623_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u51623_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51624_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u51624 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u51624 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u51624_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u51625 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u51626 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u51626 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u51626_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u51626_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u51627_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u51627 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u51627 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u51627_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u51628 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u51629 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u51629 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u51629_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u51629_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u51630_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u51630 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u51630 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u51630_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u51631_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u51631 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u51631 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u51631_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u51632 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u51633 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u51633 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u51633_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u51633_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u51634_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u51634 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u51634 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u51634_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u51635 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u51636 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u51636 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u51636_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u51636_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u51637_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u51637 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u51637 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u51637_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u51638_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:732px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u51638 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u51638 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u51638_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u51639_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:83px;
  849. background:inherit;
  850. background-color:rgba(24, 120, 255, 1);
  851. box-sizing:border-box;
  852. border-width:1px;
  853. border-style:solid;
  854. border-color:rgba(215, 215, 215, 1);
  855. border-left:0px;
  856. border-top:0px;
  857. border-right:0px;
  858. border-radius:0px;
  859. border-bottom-right-radius:0px;
  860. border-bottom-left-radius:0px;
  861. filter:drop-shadow(none);
  862. transition:none;
  863. }
  864. #u51639 {
  865. border-width:0px;
  866. position:absolute;
  867. left:29px;
  868. top:67px;
  869. width:375px;
  870. height:83px;
  871. display:flex;
  872. transition:none;
  873. transform-origin:50% 50%;
  874. }
  875. #u51639 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u51639_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. visibility:hidden;
  887. }
  888. #u51640_div {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:375px;
  894. height:100px;
  895. background:inherit;
  896. background-color:rgba(255, 255, 255, 1);
  897. box-sizing:border-box;
  898. border-width:1px;
  899. border-style:solid;
  900. border-color:rgba(215, 215, 215, 1);
  901. border-left:0px;
  902. border-top:0px;
  903. border-right:0px;
  904. border-radius:0px;
  905. border-bottom-right-radius:0px;
  906. border-bottom-left-radius:0px;
  907. filter:drop-shadow(none);
  908. transition:none;
  909. }
  910. #u51640 {
  911. border-width:0px;
  912. position:absolute;
  913. left:29px;
  914. top:150px;
  915. width:375px;
  916. height:100px;
  917. display:flex;
  918. transition:none;
  919. transform-origin:50% 50%;
  920. }
  921. #u51640 .text {
  922. position:absolute;
  923. align-self:center;
  924. padding:2px 2px 2px 2px;
  925. box-sizing:border-box;
  926. width:100%;
  927. }
  928. #u51640_text {
  929. border-width:0px;
  930. word-wrap:break-word;
  931. text-transform:none;
  932. visibility:hidden;
  933. }
  934. #u51641 {
  935. border-width:0px;
  936. position:absolute;
  937. left:29px;
  938. top:24px;
  939. width:375px;
  940. height:44px;
  941. display:flex;
  942. transition:none;
  943. }
  944. #u51641 .text {
  945. position:absolute;
  946. align-self:center;
  947. padding:2px 2px 2px 2px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u51641_img {
  952. border-width:0px;
  953. position:absolute;
  954. left:0px;
  955. top:0px;
  956. width:375px;
  957. height:44px;
  958. }
  959. #u51641_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. visibility:hidden;
  964. }
  965. #u51642 {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:0px;
  971. height:0px;
  972. }
  973. #u51643_div {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:88px;
  979. height:32px;
  980. background:inherit;
  981. background-color:rgba(255, 255, 255, 1);
  982. box-sizing:border-box;
  983. border-width:1px;
  984. border-style:solid;
  985. border-color:rgba(242, 242, 242, 1);
  986. border-radius:33px;
  987. filter:drop-shadow(none);
  988. transition:none;
  989. }
  990. #u51643 {
  991. border-width:0px;
  992. position:absolute;
  993. left:309px;
  994. top:71px;
  995. width:88px;
  996. height:32px;
  997. display:flex;
  998. transition:none;
  999. transform-origin:50% 50%;
  1000. }
  1001. #u51643 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:2px 2px 2px 2px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u51643_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. visibility:hidden;
  1013. }
  1014. #u51644 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:0px;
  1020. height:0px;
  1021. }
  1022. #u51645 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:372px;
  1026. top:78px;
  1027. width:18px;
  1028. height:18px;
  1029. display:flex;
  1030. transition:none;
  1031. }
  1032. #u51645 .text {
  1033. position:absolute;
  1034. align-self:center;
  1035. padding:2px 2px 2px 2px;
  1036. box-sizing:border-box;
  1037. width:100%;
  1038. }
  1039. #u51645_img {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:18px;
  1045. height:18px;
  1046. }
  1047. #u51645_text {
  1048. border-width:0px;
  1049. word-wrap:break-word;
  1050. text-transform:none;
  1051. visibility:hidden;
  1052. }
  1053. #u51646 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:378px;
  1057. top:84px;
  1058. width:6px;
  1059. height:6px;
  1060. display:flex;
  1061. transition:none;
  1062. }
  1063. #u51646 .text {
  1064. position:absolute;
  1065. align-self:center;
  1066. padding:2px 2px 2px 2px;
  1067. box-sizing:border-box;
  1068. width:100%;
  1069. }
  1070. #u51646_img {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:6px;
  1076. height:6px;
  1077. }
  1078. #u51646_text {
  1079. border-width:0px;
  1080. word-wrap:break-word;
  1081. text-transform:none;
  1082. visibility:hidden;
  1083. }
  1084. #u51647 {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:0px;
  1090. height:0px;
  1091. }
  1092. #u51648 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:323px;
  1096. top:85px;
  1097. width:5px;
  1098. height:5px;
  1099. display:flex;
  1100. transition:none;
  1101. }
  1102. #u51648 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u51648_img {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:5px;
  1115. height:5px;
  1116. }
  1117. #u51648_text {
  1118. border-width:0px;
  1119. word-wrap:break-word;
  1120. text-transform:none;
  1121. visibility:hidden;
  1122. }
  1123. #u51649 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:339px;
  1127. top:85px;
  1128. width:5px;
  1129. height:5px;
  1130. display:flex;
  1131. transition:none;
  1132. }
  1133. #u51649 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u51649_img {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:5px;
  1146. height:5px;
  1147. }
  1148. #u51649_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u51650 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:330px;
  1158. top:84px;
  1159. width:7px;
  1160. height:7px;
  1161. display:flex;
  1162. transition:none;
  1163. }
  1164. #u51650 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u51650_img {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:7px;
  1177. height:7px;
  1178. }
  1179. #u51650_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u51651 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:347px;
  1189. top:87px;
  1190. width:18px;
  1191. height:1px;
  1192. display:flex;
  1193. -webkit-transform:rotate(90deg);
  1194. -moz-transform:rotate(90deg);
  1195. -ms-transform:rotate(90deg);
  1196. transform:rotate(90deg);
  1197. transition:none;
  1198. }
  1199. #u51651 .text {
  1200. position:absolute;
  1201. align-self:center;
  1202. padding:2px 2px 2px 2px;
  1203. box-sizing:border-box;
  1204. width:100%;
  1205. }
  1206. #u51651_img {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:19px;
  1212. height:2px;
  1213. }
  1214. #u51651_text {
  1215. border-width:0px;
  1216. word-wrap:break-word;
  1217. text-transform:none;
  1218. visibility:hidden;
  1219. }
  1220. #u51652_div {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:12px;
  1226. height:12px;
  1227. background:inherit;
  1228. background-color:rgba(255, 255, 255, 0);
  1229. box-sizing:border-box;
  1230. border-width:2px;
  1231. border-style:solid;
  1232. border-color:rgba(51, 51, 51, 1);
  1233. border-right:0px;
  1234. border-bottom:0px;
  1235. border-radius:0px;
  1236. border-top-right-radius:0px;
  1237. border-bottom-left-radius:0px;
  1238. filter:drop-shadow(none);
  1239. transition:none;
  1240. }
  1241. #u51652 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:44px;
  1245. top:81px;
  1246. width:12px;
  1247. height:12px;
  1248. display:flex;
  1249. -webkit-transform:rotate(315deg);
  1250. -moz-transform:rotate(315deg);
  1251. -ms-transform:rotate(315deg);
  1252. transform:rotate(315deg);
  1253. transition:none;
  1254. transform-origin:50% 50%;
  1255. }
  1256. #u51652 .text {
  1257. position:absolute;
  1258. align-self:center;
  1259. padding:2px 2px 2px 2px;
  1260. box-sizing:border-box;
  1261. width:100%;
  1262. }
  1263. #u51652_text {
  1264. border-width:0px;
  1265. word-wrap:break-word;
  1266. text-transform:none;
  1267. visibility:hidden;
  1268. }
  1269. #u51653_div {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:30px;
  1275. height:18px;
  1276. background:inherit;
  1277. background-color:rgba(242, 242, 242, 0);
  1278. box-sizing:border-box;
  1279. border-width:1px;
  1280. border-style:solid;
  1281. border-color:rgba(236, 128, 141, 1);
  1282. border-radius:17px;
  1283. filter:drop-shadow(none);
  1284. transition:none;
  1285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1286. font-weight:400;
  1287. font-style:normal;
  1288. font-size:10px;
  1289. color:#EC808D;
  1290. text-align:center;
  1291. }
  1292. #u51653 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:109px;
  1296. top:164px;
  1297. width:30px;
  1298. height:18px;
  1299. display:flex;
  1300. transition:none;
  1301. transform-origin:50% 50%;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. font-size:10px;
  1306. color:#EC808D;
  1307. text-align:center;
  1308. }
  1309. #u51653 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 3px 2px 3px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u51653_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. }
  1321. #u51654_div {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:73px;
  1327. height:30px;
  1328. background:inherit;
  1329. background-color:rgba(255, 255, 255, 0);
  1330. border-left:0px;
  1331. border-top:0px;
  1332. border-right:0px;
  1333. border-radius:0px;
  1334. border-bottom-right-radius:0px;
  1335. border-bottom-left-radius:0px;
  1336. filter:drop-shadow(none);
  1337. transition:none;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:12px;
  1342. color:#FFFFFF;
  1343. text-align:right;
  1344. line-height:30px;
  1345. }
  1346. #u51654 {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:311px;
  1350. top:120px;
  1351. width:73px;
  1352. height:30px;
  1353. display:flex;
  1354. transition:none;
  1355. transform-origin:50% 50%;
  1356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1357. font-weight:400;
  1358. font-style:normal;
  1359. font-size:12px;
  1360. color:#FFFFFF;
  1361. text-align:right;
  1362. line-height:30px;
  1363. }
  1364. #u51654 .text {
  1365. position:absolute;
  1366. align-self:flex-start;
  1367. padding:0px 0px 0px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u51654_text {
  1372. border-width:0px;
  1373. white-space:nowrap;
  1374. text-transform:none;
  1375. }
  1376. #u51655_div {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:41px;
  1382. height:14px;
  1383. background:inherit;
  1384. background-color:rgba(255, 255, 255, 0);
  1385. border-left:0px;
  1386. border-top:0px;
  1387. border-right:0px;
  1388. border-radius:0px;
  1389. border-bottom-right-radius:0px;
  1390. border-bottom-left-radius:0px;
  1391. filter:drop-shadow(none);
  1392. transition:none;
  1393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1394. font-weight:400;
  1395. font-style:normal;
  1396. font-size:10px;
  1397. color:#AAAAAA;
  1398. }
  1399. #u51655 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:91px;
  1403. top:197px;
  1404. width:41px;
  1405. height:14px;
  1406. display:flex;
  1407. transition:none;
  1408. transform-origin:50% 50%;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:10px;
  1413. color:#AAAAAA;
  1414. }
  1415. #u51655 .text {
  1416. position:absolute;
  1417. align-self:flex-start;
  1418. padding:0px 0px 0px 0px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u51655_text {
  1423. border-width:0px;
  1424. white-space:nowrap;
  1425. text-transform:none;
  1426. }
  1427. #u51656_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:92px;
  1433. height:25px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border-radius:0px;
  1437. filter:drop-shadow(none);
  1438. transition:none;
  1439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. font-size:18px;
  1443. color:#FFFFFF;
  1444. }
  1445. #u51656 {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:42px;
  1449. top:113px;
  1450. width:92px;
  1451. height:25px;
  1452. display:flex;
  1453. transition:none;
  1454. transform-origin:50% 50%;
  1455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1456. font-weight:400;
  1457. font-style:normal;
  1458. font-size:18px;
  1459. color:#FFFFFF;
  1460. }
  1461. #u51656 .text {
  1462. position:absolute;
  1463. align-self:flex-start;
  1464. padding:0px 0px 0px 0px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u51656_text {
  1469. border-width:0px;
  1470. white-space:nowrap;
  1471. text-transform:none;
  1472. }
  1473. #u51657 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:0px;
  1479. height:0px;
  1480. }
  1481. #u51658 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:35px;
  1485. top:260px;
  1486. width:355px;
  1487. height:70px;
  1488. display:flex;
  1489. transition:none;
  1490. }
  1491. #u51658 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 2px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u51658_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:355px;
  1504. height:70px;
  1505. }
  1506. #u51658_text {
  1507. border-width:0px;
  1508. word-wrap:break-word;
  1509. text-transform:none;
  1510. visibility:hidden;
  1511. }
  1512. #u51659_div {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:37px;
  1518. height:30px;
  1519. background:inherit;
  1520. background-color:rgba(255, 255, 255, 0);
  1521. border-left:0px;
  1522. border-top:0px;
  1523. border-right:0px;
  1524. border-radius:0px;
  1525. border-bottom-right-radius:0px;
  1526. border-bottom-left-radius:0px;
  1527. filter:drop-shadow(none);
  1528. transition:none;
  1529. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1530. font-weight:500;
  1531. font-style:normal;
  1532. font-size:14px;
  1533. line-height:30px;
  1534. }
  1535. #u51659 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:85px;
  1539. top:271px;
  1540. width:37px;
  1541. height:30px;
  1542. display:flex;
  1543. transition:none;
  1544. transform-origin:50% 50%;
  1545. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1546. font-weight:500;
  1547. font-style:normal;
  1548. font-size:14px;
  1549. line-height:30px;
  1550. }
  1551. #u51659 .text {
  1552. position:absolute;
  1553. align-self:flex-start;
  1554. padding:0px 0px 0px 0px;
  1555. box-sizing:border-box;
  1556. width:100%;
  1557. }
  1558. #u51659_text {
  1559. border-width:0px;
  1560. white-space:nowrap;
  1561. text-transform:none;
  1562. }
  1563. #u51660_div {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:0px;
  1567. top:0px;
  1568. width:45px;
  1569. height:25px;
  1570. background:inherit;
  1571. background-color:rgba(255, 255, 255, 0);
  1572. border-left:0px;
  1573. border-top:0px;
  1574. border-right:0px;
  1575. border-radius:0px;
  1576. border-bottom-right-radius:0px;
  1577. border-bottom-left-radius:0px;
  1578. filter:drop-shadow(none);
  1579. transition:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:11px;
  1584. color:#7F7F7F;
  1585. line-height:25px;
  1586. }
  1587. #u51660 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:85px;
  1591. top:301px;
  1592. width:45px;
  1593. height:25px;
  1594. display:flex;
  1595. transition:none;
  1596. transform-origin:50% 50%;
  1597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1598. font-weight:400;
  1599. font-style:normal;
  1600. font-size:11px;
  1601. color:#7F7F7F;
  1602. line-height:25px;
  1603. }
  1604. #u51660 .text {
  1605. position:absolute;
  1606. align-self:flex-start;
  1607. padding:0px 0px 0px 0px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u51660_text {
  1612. border-width:0px;
  1613. white-space:nowrap;
  1614. text-transform:none;
  1615. }
  1616. #u51661_div {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:37px;
  1622. height:25px;
  1623. background:inherit;
  1624. background-color:rgba(255, 255, 255, 0);
  1625. border-left:0px;
  1626. border-top:0px;
  1627. border-right:0px;
  1628. border-radius:0px;
  1629. border-bottom-right-radius:0px;
  1630. border-bottom-left-radius:0px;
  1631. filter:drop-shadow(none);
  1632. transition:none;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. line-height:25px;
  1638. }
  1639. #u51661 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:322px;
  1643. top:282px;
  1644. width:37px;
  1645. height:25px;
  1646. display:flex;
  1647. transition:none;
  1648. transform-origin:50% 50%;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:12px;
  1653. line-height:25px;
  1654. }
  1655. #u51661 .text {
  1656. position:absolute;
  1657. align-self:flex-start;
  1658. padding:0px 0px 0px 0px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u51661_text {
  1663. border-width:0px;
  1664. white-space:nowrap;
  1665. text-transform:none;
  1666. }
  1667. #u51662_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:8px;
  1673. height:8px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 0);
  1676. box-sizing:border-box;
  1677. border-width:1px;
  1678. border-style:solid;
  1679. border-color:rgba(127, 127, 127, 1);
  1680. border-right:0px;
  1681. border-bottom:0px;
  1682. border-radius:0px;
  1683. border-top-right-radius:0px;
  1684. border-bottom-left-radius:0px;
  1685. filter:drop-shadow(none);
  1686. transition:none;
  1687. }
  1688. #u51662 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:365px;
  1692. top:291px;
  1693. width:8px;
  1694. height:8px;
  1695. display:flex;
  1696. -webkit-transform:rotate(135deg);
  1697. -moz-transform:rotate(135deg);
  1698. -ms-transform:rotate(135deg);
  1699. transform:rotate(135deg);
  1700. transition:none;
  1701. transform-origin:50% 50%;
  1702. }
  1703. #u51662 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 2px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u51662_text {
  1711. border-width:0px;
  1712. word-wrap:break-word;
  1713. text-transform:none;
  1714. visibility:hidden;
  1715. }
  1716. #u51663_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:30px;
  1722. height:30px;
  1723. background:inherit;
  1724. background-color:rgba(24, 144, 255, 1);
  1725. box-sizing:border-box;
  1726. border-width:1px;
  1727. border-style:solid;
  1728. border-color:rgba(24, 144, 255, 1);
  1729. border-radius:17px;
  1730. filter:drop-shadow(none);
  1731. transition:none;
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:9px;
  1736. color:#FFFFFF;
  1737. text-align:center;
  1738. }
  1739. #u51663 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:45px;
  1743. top:271px;
  1744. width:30px;
  1745. height:30px;
  1746. display:flex;
  1747. transition:none;
  1748. transform-origin:50% 50%;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:9px;
  1753. color:#FFFFFF;
  1754. text-align:center;
  1755. }
  1756. #u51663 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 3px 2px 3px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u51663_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. }
  1768. #u51664_div {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:57px;
  1774. height:30px;
  1775. background:inherit;
  1776. background-color:rgba(255, 255, 255, 0);
  1777. border-left:0px;
  1778. border-top:0px;
  1779. border-right:0px;
  1780. border-radius:0px;
  1781. border-bottom-right-radius:0px;
  1782. border-bottom-left-radius:0px;
  1783. filter:drop-shadow(none);
  1784. transition:none;
  1785. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1786. font-weight:500;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. line-height:30px;
  1790. }
  1791. #u51664 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:42px;
  1795. top:158px;
  1796. width:57px;
  1797. height:30px;
  1798. display:flex;
  1799. transition:none;
  1800. transform-origin:50% 50%;
  1801. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1802. font-weight:500;
  1803. font-style:normal;
  1804. font-size:14px;
  1805. line-height:30px;
  1806. }
  1807. #u51664 .text {
  1808. position:absolute;
  1809. align-self:flex-start;
  1810. padding:0px 0px 0px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u51664_text {
  1815. border-width:0px;
  1816. white-space:nowrap;
  1817. text-transform:none;
  1818. }
  1819. #u51665_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:85px;
  1825. height:14px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 0);
  1828. border-left:0px;
  1829. border-top:0px;
  1830. border-right:0px;
  1831. border-radius:0px;
  1832. border-bottom-right-radius:0px;
  1833. border-bottom-left-radius:0px;
  1834. filter:drop-shadow(none);
  1835. transition:none;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:10px;
  1840. color:#AAAAAA;
  1841. }
  1842. #u51665 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:69px;
  1846. top:224px;
  1847. width:85px;
  1848. height:14px;
  1849. display:flex;
  1850. transition:none;
  1851. transform-origin:50% 50%;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:10px;
  1856. color:#AAAAAA;
  1857. }
  1858. #u51665 .text {
  1859. position:absolute;
  1860. align-self:flex-start;
  1861. padding:0px 0px 0px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u51665_text {
  1866. border-width:0px;
  1867. white-space:nowrap;
  1868. text-transform:none;
  1869. }
  1870. #u51666_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:41px;
  1876. height:14px;
  1877. background:inherit;
  1878. background-color:rgba(255, 255, 255, 0);
  1879. border-left:0px;
  1880. border-top:0px;
  1881. border-right:0px;
  1882. border-radius:0px;
  1883. border-bottom-right-radius:0px;
  1884. border-bottom-left-radius:0px;
  1885. filter:drop-shadow(none);
  1886. transition:none;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:10px;
  1891. color:#AAAAAA;
  1892. }
  1893. #u51666 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:311px;
  1897. top:197px;
  1898. width:41px;
  1899. height:14px;
  1900. display:flex;
  1901. transition:none;
  1902. transform-origin:50% 50%;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:10px;
  1907. color:#AAAAAA;
  1908. }
  1909. #u51666 .text {
  1910. position:absolute;
  1911. align-self:flex-start;
  1912. padding:0px 0px 0px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u51666_text {
  1917. border-width:0px;
  1918. white-space:nowrap;
  1919. text-transform:none;
  1920. }
  1921. #u51667_div {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:85px;
  1927. height:14px;
  1928. background:inherit;
  1929. background-color:rgba(255, 255, 255, 0);
  1930. border-left:0px;
  1931. border-top:0px;
  1932. border-right:0px;
  1933. border-radius:0px;
  1934. border-bottom-right-radius:0px;
  1935. border-bottom-left-radius:0px;
  1936. filter:drop-shadow(none);
  1937. transition:none;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:10px;
  1942. color:#AAAAAA;
  1943. }
  1944. #u51667 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:289px;
  1948. top:224px;
  1949. width:85px;
  1950. height:14px;
  1951. display:flex;
  1952. transition:none;
  1953. transform-origin:50% 50%;
  1954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1955. font-weight:400;
  1956. font-style:normal;
  1957. font-size:10px;
  1958. color:#AAAAAA;
  1959. }
  1960. #u51667 .text {
  1961. position:absolute;
  1962. align-self:flex-start;
  1963. padding:0px 0px 0px 0px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u51667_text {
  1968. border-width:0px;
  1969. white-space:nowrap;
  1970. text-transform:none;
  1971. }
  1972. #u51668 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u51669_div {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:6px;
  1986. height:6px;
  1987. background:inherit;
  1988. background-color:rgba(170, 170, 170, 1);
  1989. border-radius:17px;
  1990. filter:drop-shadow(none);
  1991. transition:none;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:12px;
  1996. color:#555555;
  1997. }
  1998. #u51669 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:109px;
  2002. top:215px;
  2003. width:6px;
  2004. height:6px;
  2005. display:flex;
  2006. transition:none;
  2007. transform-origin:50% 50%;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:12px;
  2012. color:#555555;
  2013. }
  2014. #u51669 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 3px 2px 3px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u51669_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. visibility:hidden;
  2026. }
  2027. #u51670_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:6px;
  2033. height:6px;
  2034. background:inherit;
  2035. background-color:rgba(170, 170, 170, 1);
  2036. border-radius:17px;
  2037. filter:drop-shadow(none);
  2038. transition:none;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. color:#555555;
  2044. }
  2045. #u51670 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:329px;
  2049. top:215px;
  2050. width:6px;
  2051. height:6px;
  2052. display:flex;
  2053. transition:none;
  2054. transform-origin:50% 50%;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:12px;
  2059. color:#555555;
  2060. }
  2061. #u51670 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 3px 2px 3px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u51670_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. visibility:hidden;
  2073. }
  2074. #u51671 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:120px;
  2078. top:218px;
  2079. width:206px;
  2080. height:1px;
  2081. display:flex;
  2082. transition:none;
  2083. }
  2084. #u51671 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u51671_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:207px;
  2097. height:2px;
  2098. }
  2099. #u51671_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. visibility:hidden;
  2104. }
  2105. #u51672 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:0px;
  2111. height:0px;
  2112. }
  2113. #u51673 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:35px;
  2117. top:340px;
  2118. width:355px;
  2119. height:70px;
  2120. display:flex;
  2121. transition:none;
  2122. }
  2123. #u51673 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 2px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u51673_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:355px;
  2136. height:70px;
  2137. }
  2138. #u51673_text {
  2139. border-width:0px;
  2140. word-wrap:break-word;
  2141. text-transform:none;
  2142. visibility:hidden;
  2143. }
  2144. #u51674_div {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:35px;
  2150. height:30px;
  2151. background:inherit;
  2152. background-color:rgba(255, 255, 255, 0);
  2153. border-left:0px;
  2154. border-top:0px;
  2155. border-right:0px;
  2156. border-radius:0px;
  2157. border-bottom-right-radius:0px;
  2158. border-bottom-left-radius:0px;
  2159. filter:drop-shadow(none);
  2160. transition:none;
  2161. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2162. font-weight:500;
  2163. font-style:normal;
  2164. font-size:14px;
  2165. line-height:30px;
  2166. }
  2167. #u51674 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:85px;
  2171. top:351px;
  2172. width:35px;
  2173. height:30px;
  2174. display:flex;
  2175. transition:none;
  2176. transform-origin:50% 50%;
  2177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2178. font-weight:500;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. line-height:30px;
  2182. }
  2183. #u51674 .text {
  2184. position:absolute;
  2185. align-self:flex-start;
  2186. padding:0px 0px 0px 0px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u51674_text {
  2191. border-width:0px;
  2192. white-space:nowrap;
  2193. text-transform:none;
  2194. }
  2195. #u51675_div {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:45px;
  2201. height:25px;
  2202. background:inherit;
  2203. background-color:rgba(255, 255, 255, 0);
  2204. border-left:0px;
  2205. border-top:0px;
  2206. border-right:0px;
  2207. border-radius:0px;
  2208. border-bottom-right-radius:0px;
  2209. border-bottom-left-radius:0px;
  2210. filter:drop-shadow(none);
  2211. transition:none;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:11px;
  2216. color:#7F7F7F;
  2217. line-height:25px;
  2218. }
  2219. #u51675 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:85px;
  2223. top:381px;
  2224. width:45px;
  2225. height:25px;
  2226. display:flex;
  2227. transition:none;
  2228. transform-origin:50% 50%;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:11px;
  2233. color:#7F7F7F;
  2234. line-height:25px;
  2235. }
  2236. #u51675 .text {
  2237. position:absolute;
  2238. align-self:flex-start;
  2239. padding:0px 0px 0px 0px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u51675_text {
  2244. border-width:0px;
  2245. white-space:nowrap;
  2246. text-transform:none;
  2247. }
  2248. #u51676_div {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:37px;
  2254. height:25px;
  2255. background:inherit;
  2256. background-color:rgba(255, 255, 255, 0);
  2257. border-left:0px;
  2258. border-top:0px;
  2259. border-right:0px;
  2260. border-radius:0px;
  2261. border-bottom-right-radius:0px;
  2262. border-bottom-left-radius:0px;
  2263. filter:drop-shadow(none);
  2264. transition:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:12px;
  2269. line-height:25px;
  2270. }
  2271. #u51676 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:322px;
  2275. top:362px;
  2276. width:37px;
  2277. height:25px;
  2278. display:flex;
  2279. transition:none;
  2280. transform-origin:50% 50%;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. line-height:25px;
  2286. }
  2287. #u51676 .text {
  2288. position:absolute;
  2289. align-self:flex-start;
  2290. padding:0px 0px 0px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u51676_text {
  2295. border-width:0px;
  2296. white-space:nowrap;
  2297. text-transform:none;
  2298. }
  2299. #u51677_div {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:8px;
  2305. height:8px;
  2306. background:inherit;
  2307. background-color:rgba(255, 255, 255, 0);
  2308. box-sizing:border-box;
  2309. border-width:1px;
  2310. border-style:solid;
  2311. border-color:rgba(127, 127, 127, 1);
  2312. border-right:0px;
  2313. border-bottom:0px;
  2314. border-radius:0px;
  2315. border-top-right-radius:0px;
  2316. border-bottom-left-radius:0px;
  2317. filter:drop-shadow(none);
  2318. transition:none;
  2319. }
  2320. #u51677 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:365px;
  2324. top:371px;
  2325. width:8px;
  2326. height:8px;
  2327. display:flex;
  2328. -webkit-transform:rotate(135deg);
  2329. -moz-transform:rotate(135deg);
  2330. -ms-transform:rotate(135deg);
  2331. transform:rotate(135deg);
  2332. transition:none;
  2333. transform-origin:50% 50%;
  2334. }
  2335. #u51677 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 2px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u51677_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. visibility:hidden;
  2347. }
  2348. #u51678_div {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:30px;
  2354. height:30px;
  2355. background:inherit;
  2356. background-color:rgba(24, 144, 255, 1);
  2357. box-sizing:border-box;
  2358. border-width:1px;
  2359. border-style:solid;
  2360. border-color:rgba(24, 144, 255, 1);
  2361. border-radius:17px;
  2362. filter:drop-shadow(none);
  2363. transition:none;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:9px;
  2368. color:#FFFFFF;
  2369. text-align:center;
  2370. }
  2371. #u51678 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:45px;
  2375. top:351px;
  2376. width:30px;
  2377. height:30px;
  2378. display:flex;
  2379. transition:none;
  2380. transform-origin:50% 50%;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:9px;
  2385. color:#FFFFFF;
  2386. text-align:center;
  2387. }
  2388. #u51678 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 3px 2px 3px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u51678_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. }
  2400. #u51679 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:0px;
  2406. height:0px;
  2407. }
  2408. #u51680 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:35px;
  2412. top:420px;
  2413. width:355px;
  2414. height:70px;
  2415. display:flex;
  2416. transition:none;
  2417. }
  2418. #u51680 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 2px 2px 2px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u51680_img {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:355px;
  2431. height:70px;
  2432. }
  2433. #u51680_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. visibility:hidden;
  2438. }
  2439. #u51681_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:57px;
  2445. height:30px;
  2446. background:inherit;
  2447. background-color:rgba(255, 255, 255, 0);
  2448. border-left:0px;
  2449. border-top:0px;
  2450. border-right:0px;
  2451. border-radius:0px;
  2452. border-bottom-right-radius:0px;
  2453. border-bottom-left-radius:0px;
  2454. filter:drop-shadow(none);
  2455. transition:none;
  2456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2457. font-weight:500;
  2458. font-style:normal;
  2459. font-size:14px;
  2460. line-height:30px;
  2461. }
  2462. #u51681 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:85px;
  2466. top:431px;
  2467. width:57px;
  2468. height:30px;
  2469. display:flex;
  2470. transition:none;
  2471. transform-origin:50% 50%;
  2472. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2473. font-weight:500;
  2474. font-style:normal;
  2475. font-size:14px;
  2476. line-height:30px;
  2477. }
  2478. #u51681 .text {
  2479. position:absolute;
  2480. align-self:flex-start;
  2481. padding:0px 0px 0px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u51681_text {
  2486. border-width:0px;
  2487. white-space:nowrap;
  2488. text-transform:none;
  2489. }
  2490. #u51682_div {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:67px;
  2496. height:25px;
  2497. background:inherit;
  2498. background-color:rgba(255, 255, 255, 0);
  2499. border-left:0px;
  2500. border-top:0px;
  2501. border-right:0px;
  2502. border-radius:0px;
  2503. border-bottom-right-radius:0px;
  2504. border-bottom-left-radius:0px;
  2505. filter:drop-shadow(none);
  2506. transition:none;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:11px;
  2511. color:#7F7F7F;
  2512. line-height:25px;
  2513. }
  2514. #u51682 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:85px;
  2518. top:461px;
  2519. width:67px;
  2520. height:25px;
  2521. display:flex;
  2522. transition:none;
  2523. transform-origin:50% 50%;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:11px;
  2528. color:#7F7F7F;
  2529. line-height:25px;
  2530. }
  2531. #u51682 .text {
  2532. position:absolute;
  2533. align-self:flex-start;
  2534. padding:0px 0px 0px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u51682_text {
  2539. border-width:0px;
  2540. white-space:nowrap;
  2541. text-transform:none;
  2542. }
  2543. #u51683_div {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:37px;
  2549. height:25px;
  2550. background:inherit;
  2551. background-color:rgba(255, 255, 255, 0);
  2552. border-left:0px;
  2553. border-top:0px;
  2554. border-right:0px;
  2555. border-radius:0px;
  2556. border-bottom-right-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. filter:drop-shadow(none);
  2559. transition:none;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. line-height:25px;
  2565. }
  2566. #u51683 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:322px;
  2570. top:442px;
  2571. width:37px;
  2572. height:25px;
  2573. display:flex;
  2574. transition:none;
  2575. transform-origin:50% 50%;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:12px;
  2580. line-height:25px;
  2581. }
  2582. #u51683 .text {
  2583. position:absolute;
  2584. align-self:flex-start;
  2585. padding:0px 0px 0px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u51683_text {
  2590. border-width:0px;
  2591. white-space:nowrap;
  2592. text-transform:none;
  2593. }
  2594. #u51684_div {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:8px;
  2600. height:8px;
  2601. background:inherit;
  2602. background-color:rgba(255, 255, 255, 0);
  2603. box-sizing:border-box;
  2604. border-width:1px;
  2605. border-style:solid;
  2606. border-color:rgba(127, 127, 127, 1);
  2607. border-right:0px;
  2608. border-bottom:0px;
  2609. border-radius:0px;
  2610. border-top-right-radius:0px;
  2611. border-bottom-left-radius:0px;
  2612. filter:drop-shadow(none);
  2613. transition:none;
  2614. }
  2615. #u51684 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:365px;
  2619. top:451px;
  2620. width:8px;
  2621. height:8px;
  2622. display:flex;
  2623. -webkit-transform:rotate(135deg);
  2624. -moz-transform:rotate(135deg);
  2625. -ms-transform:rotate(135deg);
  2626. transform:rotate(135deg);
  2627. transition:none;
  2628. transform-origin:50% 50%;
  2629. }
  2630. #u51684 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:2px 2px 2px 2px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u51684_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. visibility:hidden;
  2642. }
  2643. #u51685_div {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:30px;
  2649. height:30px;
  2650. background:inherit;
  2651. background-color:rgba(24, 144, 255, 1);
  2652. box-sizing:border-box;
  2653. border-width:1px;
  2654. border-style:solid;
  2655. border-color:rgba(24, 144, 255, 1);
  2656. border-radius:17px;
  2657. filter:drop-shadow(none);
  2658. transition:none;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:9px;
  2663. color:#FFFFFF;
  2664. text-align:center;
  2665. }
  2666. #u51685 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:45px;
  2670. top:431px;
  2671. width:30px;
  2672. height:30px;
  2673. display:flex;
  2674. transition:none;
  2675. transform-origin:50% 50%;
  2676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2677. font-weight:400;
  2678. font-style:normal;
  2679. font-size:9px;
  2680. color:#FFFFFF;
  2681. text-align:center;
  2682. }
  2683. #u51685 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:2px 3px 2px 3px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u51685_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. }
  2695. #u51686 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:460px;
  2699. top:0px;
  2700. width:433px;
  2701. height:865px;
  2702. }
  2703. #u51687 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:433px;
  2709. height:865px;
  2710. display:flex;
  2711. transition:none;
  2712. }
  2713. #u51687 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u51687_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:433px;
  2726. height:865px;
  2727. }
  2728. #u51687_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u51688_div {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:375px;
  2740. height:40px;
  2741. background:inherit;
  2742. background-color:rgba(255, 255, 255, 1);
  2743. box-sizing:border-box;
  2744. border-width:1px;
  2745. border-style:solid;
  2746. border-color:rgba(215, 215, 215, 1);
  2747. border-left:0px;
  2748. border-top:0px;
  2749. border-right:0px;
  2750. border-radius:0px;
  2751. border-bottom-right-radius:0px;
  2752. border-bottom-left-radius:0px;
  2753. filter:drop-shadow(none);
  2754. transition:none;
  2755. }
  2756. #u51688 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:29px;
  2760. top:67px;
  2761. width:375px;
  2762. height:40px;
  2763. display:flex;
  2764. transition:none;
  2765. transform-origin:50% 50%;
  2766. }
  2767. #u51688 .text {
  2768. position:absolute;
  2769. align-self:center;
  2770. padding:2px 2px 2px 2px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u51688_text {
  2775. border-width:0px;
  2776. word-wrap:break-word;
  2777. text-transform:none;
  2778. visibility:hidden;
  2779. }
  2780. #u51689 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:0px;
  2786. height:0px;
  2787. }
  2788. #u51690_div {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:88px;
  2794. height:32px;
  2795. background:inherit;
  2796. background-color:rgba(255, 255, 255, 1);
  2797. box-sizing:border-box;
  2798. border-width:1px;
  2799. border-style:solid;
  2800. border-color:rgba(242, 242, 242, 1);
  2801. border-radius:33px;
  2802. filter:drop-shadow(none);
  2803. transition:none;
  2804. }
  2805. #u51690 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:309px;
  2809. top:71px;
  2810. width:88px;
  2811. height:32px;
  2812. display:flex;
  2813. transition:none;
  2814. transform-origin:50% 50%;
  2815. }
  2816. #u51690 .text {
  2817. position:absolute;
  2818. align-self:center;
  2819. padding:2px 2px 2px 2px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u51690_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. visibility:hidden;
  2828. }
  2829. #u51691 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:0px;
  2835. height:0px;
  2836. }
  2837. #u51692 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:372px;
  2841. top:78px;
  2842. width:18px;
  2843. height:18px;
  2844. display:flex;
  2845. transition:none;
  2846. }
  2847. #u51692 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 2px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u51692_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:18px;
  2860. height:18px;
  2861. }
  2862. #u51692_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. visibility:hidden;
  2867. }
  2868. #u51693 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:378px;
  2872. top:84px;
  2873. width:6px;
  2874. height:6px;
  2875. display:flex;
  2876. transition:none;
  2877. }
  2878. #u51693 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 2px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u51693_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:6px;
  2891. height:6px;
  2892. }
  2893. #u51693_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u51694 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:0px;
  2905. height:0px;
  2906. }
  2907. #u51695 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:323px;
  2911. top:85px;
  2912. width:5px;
  2913. height:5px;
  2914. display:flex;
  2915. transition:none;
  2916. }
  2917. #u51695 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u51695_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:5px;
  2930. height:5px;
  2931. }
  2932. #u51695_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u51696 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:339px;
  2942. top:85px;
  2943. width:5px;
  2944. height:5px;
  2945. display:flex;
  2946. transition:none;
  2947. }
  2948. #u51696 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 2px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u51696_img {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:5px;
  2961. height:5px;
  2962. }
  2963. #u51696_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u51697 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:330px;
  2973. top:84px;
  2974. width:7px;
  2975. height:7px;
  2976. display:flex;
  2977. transition:none;
  2978. }
  2979. #u51697 .text {
  2980. position:absolute;
  2981. align-self:center;
  2982. padding:2px 2px 2px 2px;
  2983. box-sizing:border-box;
  2984. width:100%;
  2985. }
  2986. #u51697_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:7px;
  2992. height:7px;
  2993. }
  2994. #u51697_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u51698 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:347px;
  3004. top:87px;
  3005. width:18px;
  3006. height:1px;
  3007. display:flex;
  3008. -webkit-transform:rotate(90deg);
  3009. -moz-transform:rotate(90deg);
  3010. -ms-transform:rotate(90deg);
  3011. transform:rotate(90deg);
  3012. transition:none;
  3013. }
  3014. #u51698 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 2px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u51698_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:19px;
  3027. height:2px;
  3028. }
  3029. #u51698_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u51699 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:29px;
  3039. top:24px;
  3040. width:375px;
  3041. height:44px;
  3042. display:flex;
  3043. transition:none;
  3044. }
  3045. #u51699 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u51699_img {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:375px;
  3058. height:44px;
  3059. }
  3060. #u51699_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u51700_div {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:375px;
  3072. height:50px;
  3073. background:inherit;
  3074. background-color:rgba(255, 255, 255, 1);
  3075. box-sizing:border-box;
  3076. border-width:1px;
  3077. border-style:solid;
  3078. border-color:rgba(242, 242, 242, 1);
  3079. border-radius:26px;
  3080. border-top-left-radius:0px;
  3081. border-top-right-radius:0px;
  3082. filter:drop-shadow(none);
  3083. transition:none;
  3084. }
  3085. #u51700 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:29px;
  3089. top:788px;
  3090. width:375px;
  3091. height:50px;
  3092. display:flex;
  3093. transition:none;
  3094. transform-origin:50% 50%;
  3095. }
  3096. #u51700 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 2px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u51700_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u51701 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:0px;
  3115. height:0px;
  3116. }
  3117. #u51702 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:69px;
  3121. top:792px;
  3122. width:24px;
  3123. height:24px;
  3124. display:flex;
  3125. transition:none;
  3126. font-size:8px;
  3127. }
  3128. #u51702 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 2px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u51702_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:24px;
  3141. height:24px;
  3142. }
  3143. #u51702_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. }
  3148. #u51703_div {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:25px;
  3154. height:17px;
  3155. background:inherit;
  3156. background-color:rgba(255, 255, 255, 0);
  3157. border-radius:0px;
  3158. filter:drop-shadow(none);
  3159. transition:none;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. }
  3165. #u51703 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:69px;
  3169. top:817px;
  3170. width:25px;
  3171. height:17px;
  3172. display:flex;
  3173. transition:none;
  3174. transform-origin:50% 50%;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:12px;
  3179. }
  3180. #u51703 .text {
  3181. position:absolute;
  3182. align-self:flex-start;
  3183. padding:0px 0px 0px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u51703_text {
  3188. border-width:0px;
  3189. white-space:nowrap;
  3190. text-transform:none;
  3191. }
  3192. #u51704 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:0px;
  3198. height:0px;
  3199. }
  3200. #u51705 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:339px;
  3204. top:794px;
  3205. width:24px;
  3206. height:24px;
  3207. display:flex;
  3208. transition:none;
  3209. font-size:8px;
  3210. }
  3211. #u51705 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u51705_img {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:24px;
  3224. height:24px;
  3225. }
  3226. #u51705_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. }
  3231. #u51706_div {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:25px;
  3237. height:17px;
  3238. background:inherit;
  3239. background-color:rgba(255, 255, 255, 0);
  3240. border-radius:0px;
  3241. filter:drop-shadow(none);
  3242. transition:none;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:12px;
  3247. }
  3248. #u51706 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:339px;
  3252. top:819px;
  3253. width:25px;
  3254. height:17px;
  3255. display:flex;
  3256. transition:none;
  3257. transform-origin:50% 50%;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:12px;
  3262. }
  3263. #u51706 .text {
  3264. position:absolute;
  3265. align-self:flex-start;
  3266. padding:0px 0px 0px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u51706_text {
  3271. border-width:0px;
  3272. white-space:nowrap;
  3273. text-transform:none;
  3274. }
  3275. #u51707_div {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:375px;
  3281. height:681px;
  3282. background:inherit;
  3283. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3284. border-radius:0px;
  3285. filter:drop-shadow(none);
  3286. transition:none;
  3287. }
  3288. #u51707 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:29px;
  3292. top:107px;
  3293. width:375px;
  3294. height:681px;
  3295. display:flex;
  3296. transition:none;
  3297. transform-origin:50% 50%;
  3298. }
  3299. #u51707 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 2px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u51707_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u51708 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:0px;
  3318. height:0px;
  3319. }
  3320. #u51709 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:251px;
  3324. top:792px;
  3325. width:24px;
  3326. height:24px;
  3327. display:flex;
  3328. transition:none;
  3329. font-size:8px;
  3330. }
  3331. #u51709 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 2px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u51709_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:24px;
  3344. height:24px;
  3345. }
  3346. #u51709_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. }
  3351. #u51710_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:37px;
  3357. height:17px;
  3358. background:inherit;
  3359. background-color:rgba(255, 255, 255, 0);
  3360. border-radius:0px;
  3361. filter:drop-shadow(none);
  3362. transition:none;
  3363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. font-size:12px;
  3367. }
  3368. #u51710 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:245px;
  3372. top:817px;
  3373. width:37px;
  3374. height:17px;
  3375. display:flex;
  3376. transition:none;
  3377. transform-origin:50% 50%;
  3378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:12px;
  3382. }
  3383. #u51710 .text {
  3384. position:absolute;
  3385. align-self:flex-start;
  3386. padding:0px 0px 0px 0px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u51710_text {
  3391. border-width:0px;
  3392. white-space:nowrap;
  3393. text-transform:none;
  3394. }
  3395. #u51711 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:0px;
  3401. height:0px;
  3402. }
  3403. #u51712 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:157px;
  3407. top:792px;
  3408. width:24px;
  3409. height:24px;
  3410. display:flex;
  3411. transition:none;
  3412. font-size:8px;
  3413. }
  3414. #u51712 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 2px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u51712_img {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:24px;
  3427. height:24px;
  3428. }
  3429. #u51712_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. }
  3434. #u51713_div {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:37px;
  3440. height:17px;
  3441. background:inherit;
  3442. background-color:rgba(255, 255, 255, 0);
  3443. border-radius:0px;
  3444. filter:drop-shadow(none);
  3445. transition:none;
  3446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:12px;
  3450. }
  3451. #u51713 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:151px;
  3455. top:817px;
  3456. width:37px;
  3457. height:17px;
  3458. display:flex;
  3459. transition:none;
  3460. transform-origin:50% 50%;
  3461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3462. font-weight:400;
  3463. font-style:normal;
  3464. font-size:12px;
  3465. }
  3466. #u51713 .text {
  3467. position:absolute;
  3468. align-self:flex-start;
  3469. padding:0px 0px 0px 0px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u51713_text {
  3474. border-width:0px;
  3475. white-space:nowrap;
  3476. text-transform:none;
  3477. }
  3478. #u51714_div {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:375px;
  3484. height:732px;
  3485. background:inherit;
  3486. background-color:rgba(242, 242, 242, 0.996078431372549);
  3487. border-top:0px;
  3488. border-radius:28px;
  3489. border-top-left-radius:0px;
  3490. border-top-right-radius:0px;
  3491. filter:drop-shadow(none);
  3492. transition:none;
  3493. }
  3494. #u51714 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:489px;
  3498. top:107px;
  3499. width:375px;
  3500. height:732px;
  3501. display:flex;
  3502. transition:none;
  3503. transform-origin:50% 50%;
  3504. }
  3505. #u51714 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 2px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u51714_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u51715_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:375px;
  3524. height:83px;
  3525. background:inherit;
  3526. background-color:rgba(24, 120, 255, 1);
  3527. box-sizing:border-box;
  3528. border-width:1px;
  3529. border-style:solid;
  3530. border-color:rgba(215, 215, 215, 1);
  3531. border-left:0px;
  3532. border-top:0px;
  3533. border-right:0px;
  3534. border-radius:0px;
  3535. border-bottom-right-radius:0px;
  3536. border-bottom-left-radius:0px;
  3537. filter:drop-shadow(none);
  3538. transition:none;
  3539. }
  3540. #u51715 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:489px;
  3544. top:67px;
  3545. width:375px;
  3546. height:83px;
  3547. display:flex;
  3548. transition:none;
  3549. transform-origin:50% 50%;
  3550. }
  3551. #u51715 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 2px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u51715_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u51716_div {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:375px;
  3570. height:100px;
  3571. background:inherit;
  3572. background-color:rgba(255, 255, 255, 1);
  3573. box-sizing:border-box;
  3574. border-width:1px;
  3575. border-style:solid;
  3576. border-color:rgba(215, 215, 215, 1);
  3577. border-left:0px;
  3578. border-top:0px;
  3579. border-right:0px;
  3580. border-radius:0px;
  3581. border-bottom-right-radius:0px;
  3582. border-bottom-left-radius:0px;
  3583. filter:drop-shadow(none);
  3584. transition:none;
  3585. }
  3586. #u51716 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:489px;
  3590. top:150px;
  3591. width:375px;
  3592. height:100px;
  3593. display:flex;
  3594. transition:none;
  3595. transform-origin:50% 50%;
  3596. }
  3597. #u51716 .text {
  3598. position:absolute;
  3599. align-self:center;
  3600. padding:2px 2px 2px 2px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u51716_text {
  3605. border-width:0px;
  3606. word-wrap:break-word;
  3607. text-transform:none;
  3608. visibility:hidden;
  3609. }
  3610. #u51717 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:489px;
  3614. top:24px;
  3615. width:375px;
  3616. height:44px;
  3617. display:flex;
  3618. transition:none;
  3619. }
  3620. #u51717 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 2px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u51717_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:375px;
  3633. height:44px;
  3634. }
  3635. #u51717_text {
  3636. border-width:0px;
  3637. word-wrap:break-word;
  3638. text-transform:none;
  3639. visibility:hidden;
  3640. }
  3641. #u51718 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:0px;
  3647. height:0px;
  3648. }
  3649. #u51719_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:88px;
  3655. height:32px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 1);
  3658. box-sizing:border-box;
  3659. border-width:1px;
  3660. border-style:solid;
  3661. border-color:rgba(242, 242, 242, 1);
  3662. border-radius:33px;
  3663. filter:drop-shadow(none);
  3664. transition:none;
  3665. }
  3666. #u51719 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:769px;
  3670. top:71px;
  3671. width:88px;
  3672. height:32px;
  3673. display:flex;
  3674. transition:none;
  3675. transform-origin:50% 50%;
  3676. }
  3677. #u51719 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:2px 2px 2px 2px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u51719_text {
  3685. border-width:0px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u51720 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:0px;
  3696. height:0px;
  3697. }
  3698. #u51721 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:832px;
  3702. top:78px;
  3703. width:18px;
  3704. height:18px;
  3705. display:flex;
  3706. transition:none;
  3707. }
  3708. #u51721 .text {
  3709. position:absolute;
  3710. align-self:center;
  3711. padding:2px 2px 2px 2px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u51721_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:18px;
  3721. height:18px;
  3722. }
  3723. #u51721_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u51722 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:838px;
  3733. top:84px;
  3734. width:6px;
  3735. height:6px;
  3736. display:flex;
  3737. transition:none;
  3738. }
  3739. #u51722 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:2px 2px 2px 2px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u51722_img {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:6px;
  3752. height:6px;
  3753. }
  3754. #u51722_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. visibility:hidden;
  3759. }
  3760. #u51723 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:0px;
  3766. height:0px;
  3767. }
  3768. #u51724 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:783px;
  3772. top:85px;
  3773. width:5px;
  3774. height:5px;
  3775. display:flex;
  3776. transition:none;
  3777. }
  3778. #u51724 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 2px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u51724_img {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:5px;
  3791. height:5px;
  3792. }
  3793. #u51724_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u51725 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:799px;
  3803. top:85px;
  3804. width:5px;
  3805. height:5px;
  3806. display:flex;
  3807. transition:none;
  3808. }
  3809. #u51725 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 2px 2px 2px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u51725_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:5px;
  3822. height:5px;
  3823. }
  3824. #u51725_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u51726 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:790px;
  3834. top:84px;
  3835. width:7px;
  3836. height:7px;
  3837. display:flex;
  3838. transition:none;
  3839. }
  3840. #u51726 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 2px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u51726_img {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:7px;
  3853. height:7px;
  3854. }
  3855. #u51726_text {
  3856. border-width:0px;
  3857. word-wrap:break-word;
  3858. text-transform:none;
  3859. visibility:hidden;
  3860. }
  3861. #u51727 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:807px;
  3865. top:87px;
  3866. width:18px;
  3867. height:1px;
  3868. display:flex;
  3869. -webkit-transform:rotate(90deg);
  3870. -moz-transform:rotate(90deg);
  3871. -ms-transform:rotate(90deg);
  3872. transform:rotate(90deg);
  3873. transition:none;
  3874. }
  3875. #u51727 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u51727_img {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:19px;
  3888. height:2px;
  3889. }
  3890. #u51727_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. visibility:hidden;
  3895. }
  3896. #u51728_div {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:12px;
  3902. height:12px;
  3903. background:inherit;
  3904. background-color:rgba(255, 255, 255, 0);
  3905. box-sizing:border-box;
  3906. border-width:2px;
  3907. border-style:solid;
  3908. border-color:rgba(51, 51, 51, 1);
  3909. border-right:0px;
  3910. border-bottom:0px;
  3911. border-radius:0px;
  3912. border-top-right-radius:0px;
  3913. border-bottom-left-radius:0px;
  3914. filter:drop-shadow(none);
  3915. transition:none;
  3916. }
  3917. #u51728 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:504px;
  3921. top:81px;
  3922. width:12px;
  3923. height:12px;
  3924. display:flex;
  3925. -webkit-transform:rotate(315deg);
  3926. -moz-transform:rotate(315deg);
  3927. -ms-transform:rotate(315deg);
  3928. transform:rotate(315deg);
  3929. transition:none;
  3930. transform-origin:50% 50%;
  3931. }
  3932. #u51728 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 2px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u51728_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u51729_div {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:30px;
  3951. height:18px;
  3952. background:inherit;
  3953. background-color:rgba(242, 242, 242, 0);
  3954. box-sizing:border-box;
  3955. border-width:1px;
  3956. border-style:solid;
  3957. border-color:rgba(236, 128, 141, 1);
  3958. border-radius:17px;
  3959. filter:drop-shadow(none);
  3960. transition:none;
  3961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:10px;
  3965. color:#EC808D;
  3966. text-align:center;
  3967. }
  3968. #u51729 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:569px;
  3972. top:164px;
  3973. width:30px;
  3974. height:18px;
  3975. display:flex;
  3976. transition:none;
  3977. transform-origin:50% 50%;
  3978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3979. font-weight:400;
  3980. font-style:normal;
  3981. font-size:10px;
  3982. color:#EC808D;
  3983. text-align:center;
  3984. }
  3985. #u51729 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 3px 2px 3px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u51729_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. }
  3997. #u51730_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:73px;
  4003. height:30px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 0);
  4006. border-left:0px;
  4007. border-top:0px;
  4008. border-right:0px;
  4009. border-radius:0px;
  4010. border-bottom-right-radius:0px;
  4011. border-bottom-left-radius:0px;
  4012. filter:drop-shadow(none);
  4013. transition:none;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:12px;
  4018. color:#FFFFFF;
  4019. text-align:right;
  4020. line-height:30px;
  4021. }
  4022. #u51730 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:771px;
  4026. top:120px;
  4027. width:73px;
  4028. height:30px;
  4029. display:flex;
  4030. transition:none;
  4031. transform-origin:50% 50%;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:12px;
  4036. color:#FFFFFF;
  4037. text-align:right;
  4038. line-height:30px;
  4039. }
  4040. #u51730 .text {
  4041. position:absolute;
  4042. align-self:flex-start;
  4043. padding:0px 0px 0px 0px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u51730_text {
  4048. border-width:0px;
  4049. white-space:nowrap;
  4050. text-transform:none;
  4051. }
  4052. #u51731_div {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:41px;
  4058. height:14px;
  4059. background:inherit;
  4060. background-color:rgba(255, 255, 255, 0);
  4061. border-left:0px;
  4062. border-top:0px;
  4063. border-right:0px;
  4064. border-radius:0px;
  4065. border-bottom-right-radius:0px;
  4066. border-bottom-left-radius:0px;
  4067. filter:drop-shadow(none);
  4068. transition:none;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:10px;
  4073. color:#AAAAAA;
  4074. }
  4075. #u51731 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:551px;
  4079. top:197px;
  4080. width:41px;
  4081. height:14px;
  4082. display:flex;
  4083. transition:none;
  4084. transform-origin:50% 50%;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:10px;
  4089. color:#AAAAAA;
  4090. }
  4091. #u51731 .text {
  4092. position:absolute;
  4093. align-self:flex-start;
  4094. padding:0px 0px 0px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u51731_text {
  4099. border-width:0px;
  4100. white-space:nowrap;
  4101. text-transform:none;
  4102. }
  4103. #u51732_div {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:92px;
  4109. height:25px;
  4110. background:inherit;
  4111. background-color:rgba(255, 255, 255, 0);
  4112. border-radius:0px;
  4113. filter:drop-shadow(none);
  4114. transition:none;
  4115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4116. font-weight:400;
  4117. font-style:normal;
  4118. font-size:18px;
  4119. color:#FFFFFF;
  4120. }
  4121. #u51732 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:502px;
  4125. top:113px;
  4126. width:92px;
  4127. height:25px;
  4128. display:flex;
  4129. transition:none;
  4130. transform-origin:50% 50%;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:18px;
  4135. color:#FFFFFF;
  4136. }
  4137. #u51732 .text {
  4138. position:absolute;
  4139. align-self:flex-start;
  4140. padding:0px 0px 0px 0px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u51732_text {
  4145. border-width:0px;
  4146. white-space:nowrap;
  4147. text-transform:none;
  4148. }
  4149. #u51733 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:0px;
  4155. height:0px;
  4156. }
  4157. #u51734_div {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:375px;
  4163. height:60px;
  4164. background:inherit;
  4165. background-color:rgba(255, 255, 255, 1);
  4166. box-sizing:border-box;
  4167. border-width:1px;
  4168. border-style:solid;
  4169. border-color:rgba(242, 242, 242, 1);
  4170. border-radius:20px;
  4171. border-top-left-radius:0px;
  4172. border-top-right-radius:0px;
  4173. filter:drop-shadow(none);
  4174. transition:none;
  4175. }
  4176. #u51734 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:489px;
  4180. top:779px;
  4181. width:375px;
  4182. height:60px;
  4183. display:flex;
  4184. transition:none;
  4185. transform-origin:50% 50%;
  4186. }
  4187. #u51734 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 2px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u51734_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u51735_div {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:338px;
  4206. height:40px;
  4207. background:inherit;
  4208. background-color:rgba(170, 170, 170, 1);
  4209. border-radius:63px;
  4210. filter:drop-shadow(none);
  4211. transition:none;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:14px;
  4216. color:#FFFFFF;
  4217. }
  4218. #u51735 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:505px;
  4222. top:789px;
  4223. width:338px;
  4224. height:40px;
  4225. display:flex;
  4226. transition:none;
  4227. transform-origin:50% 50%;
  4228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4229. font-weight:400;
  4230. font-style:normal;
  4231. font-size:14px;
  4232. color:#FFFFFF;
  4233. }
  4234. #u51735 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 2px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u51735_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. }
  4246. #u51736 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:0px;
  4252. height:0px;
  4253. }
  4254. #u51737 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:495px;
  4258. top:260px;
  4259. width:355px;
  4260. height:70px;
  4261. display:flex;
  4262. transition:none;
  4263. }
  4264. #u51737 .text {
  4265. position:absolute;
  4266. align-self:center;
  4267. padding:2px 2px 2px 2px;
  4268. box-sizing:border-box;
  4269. width:100%;
  4270. }
  4271. #u51737_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:355px;
  4277. height:70px;
  4278. }
  4279. #u51737_text {
  4280. border-width:0px;
  4281. word-wrap:break-word;
  4282. text-transform:none;
  4283. visibility:hidden;
  4284. }
  4285. #u51738_div {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:0px;
  4289. top:0px;
  4290. width:37px;
  4291. height:30px;
  4292. background:inherit;
  4293. background-color:rgba(255, 255, 255, 0);
  4294. border-left:0px;
  4295. border-top:0px;
  4296. border-right:0px;
  4297. border-radius:0px;
  4298. border-bottom-right-radius:0px;
  4299. border-bottom-left-radius:0px;
  4300. filter:drop-shadow(none);
  4301. transition:none;
  4302. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4303. font-weight:500;
  4304. font-style:normal;
  4305. font-size:14px;
  4306. line-height:30px;
  4307. }
  4308. #u51738 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:545px;
  4312. top:271px;
  4313. width:37px;
  4314. height:30px;
  4315. display:flex;
  4316. transition:none;
  4317. transform-origin:50% 50%;
  4318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4319. font-weight:500;
  4320. font-style:normal;
  4321. font-size:14px;
  4322. line-height:30px;
  4323. }
  4324. #u51738 .text {
  4325. position:absolute;
  4326. align-self:flex-start;
  4327. padding:0px 0px 0px 0px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u51738_text {
  4332. border-width:0px;
  4333. white-space:nowrap;
  4334. text-transform:none;
  4335. }
  4336. #u51739_div {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:45px;
  4342. height:25px;
  4343. background:inherit;
  4344. background-color:rgba(255, 255, 255, 0);
  4345. border-left:0px;
  4346. border-top:0px;
  4347. border-right:0px;
  4348. border-radius:0px;
  4349. border-bottom-right-radius:0px;
  4350. border-bottom-left-radius:0px;
  4351. filter:drop-shadow(none);
  4352. transition:none;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:11px;
  4357. color:#7F7F7F;
  4358. line-height:25px;
  4359. }
  4360. #u51739 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:545px;
  4364. top:301px;
  4365. width:45px;
  4366. height:25px;
  4367. display:flex;
  4368. transition:none;
  4369. transform-origin:50% 50%;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:11px;
  4374. color:#7F7F7F;
  4375. line-height:25px;
  4376. }
  4377. #u51739 .text {
  4378. position:absolute;
  4379. align-self:flex-start;
  4380. padding:0px 0px 0px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u51739_text {
  4385. border-width:0px;
  4386. white-space:nowrap;
  4387. text-transform:none;
  4388. }
  4389. #u51740_div {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:37px;
  4395. height:25px;
  4396. background:inherit;
  4397. background-color:rgba(255, 255, 255, 0);
  4398. border-left:0px;
  4399. border-top:0px;
  4400. border-right:0px;
  4401. border-radius:0px;
  4402. border-bottom-right-radius:0px;
  4403. border-bottom-left-radius:0px;
  4404. filter:drop-shadow(none);
  4405. transition:none;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:12px;
  4410. line-height:25px;
  4411. }
  4412. #u51740 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:782px;
  4416. top:282px;
  4417. width:37px;
  4418. height:25px;
  4419. display:flex;
  4420. transition:none;
  4421. transform-origin:50% 50%;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:12px;
  4426. line-height:25px;
  4427. }
  4428. #u51740 .text {
  4429. position:absolute;
  4430. align-self:flex-start;
  4431. padding:0px 0px 0px 0px;
  4432. box-sizing:border-box;
  4433. width:100%;
  4434. }
  4435. #u51740_text {
  4436. border-width:0px;
  4437. white-space:nowrap;
  4438. text-transform:none;
  4439. }
  4440. #u51741_div {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:0px;
  4445. width:8px;
  4446. height:8px;
  4447. background:inherit;
  4448. background-color:rgba(255, 255, 255, 0);
  4449. box-sizing:border-box;
  4450. border-width:1px;
  4451. border-style:solid;
  4452. border-color:rgba(127, 127, 127, 1);
  4453. border-right:0px;
  4454. border-bottom:0px;
  4455. border-radius:0px;
  4456. border-top-right-radius:0px;
  4457. border-bottom-left-radius:0px;
  4458. filter:drop-shadow(none);
  4459. transition:none;
  4460. }
  4461. #u51741 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:825px;
  4465. top:291px;
  4466. width:8px;
  4467. height:8px;
  4468. display:flex;
  4469. -webkit-transform:rotate(135deg);
  4470. -moz-transform:rotate(135deg);
  4471. -ms-transform:rotate(135deg);
  4472. transform:rotate(135deg);
  4473. transition:none;
  4474. transform-origin:50% 50%;
  4475. }
  4476. #u51741 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 2px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u51741_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. visibility:hidden;
  4488. }
  4489. #u51742_div {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:30px;
  4495. height:30px;
  4496. background:inherit;
  4497. background-color:rgba(24, 144, 255, 1);
  4498. box-sizing:border-box;
  4499. border-width:1px;
  4500. border-style:solid;
  4501. border-color:rgba(24, 144, 255, 1);
  4502. border-radius:17px;
  4503. filter:drop-shadow(none);
  4504. transition:none;
  4505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. font-size:9px;
  4509. color:#FFFFFF;
  4510. text-align:center;
  4511. }
  4512. #u51742 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:505px;
  4516. top:271px;
  4517. width:30px;
  4518. height:30px;
  4519. display:flex;
  4520. transition:none;
  4521. transform-origin:50% 50%;
  4522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4523. font-weight:400;
  4524. font-style:normal;
  4525. font-size:9px;
  4526. color:#FFFFFF;
  4527. text-align:center;
  4528. }
  4529. #u51742 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 3px 2px 3px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u51742_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. }
  4541. #u51743_div {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:57px;
  4547. height:30px;
  4548. background:inherit;
  4549. background-color:rgba(255, 255, 255, 0);
  4550. border-left:0px;
  4551. border-top:0px;
  4552. border-right:0px;
  4553. border-radius:0px;
  4554. border-bottom-right-radius:0px;
  4555. border-bottom-left-radius:0px;
  4556. filter:drop-shadow(none);
  4557. transition:none;
  4558. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4559. font-weight:500;
  4560. font-style:normal;
  4561. font-size:14px;
  4562. line-height:30px;
  4563. }
  4564. #u51743 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:502px;
  4568. top:158px;
  4569. width:57px;
  4570. height:30px;
  4571. display:flex;
  4572. transition:none;
  4573. transform-origin:50% 50%;
  4574. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4575. font-weight:500;
  4576. font-style:normal;
  4577. font-size:14px;
  4578. line-height:30px;
  4579. }
  4580. #u51743 .text {
  4581. position:absolute;
  4582. align-self:flex-start;
  4583. padding:0px 0px 0px 0px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u51743_text {
  4588. border-width:0px;
  4589. white-space:nowrap;
  4590. text-transform:none;
  4591. }
  4592. #u51744_div {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:85px;
  4598. height:14px;
  4599. background:inherit;
  4600. background-color:rgba(255, 255, 255, 0);
  4601. border-left:0px;
  4602. border-top:0px;
  4603. border-right:0px;
  4604. border-radius:0px;
  4605. border-bottom-right-radius:0px;
  4606. border-bottom-left-radius:0px;
  4607. filter:drop-shadow(none);
  4608. transition:none;
  4609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:10px;
  4613. color:#AAAAAA;
  4614. }
  4615. #u51744 {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:529px;
  4619. top:224px;
  4620. width:85px;
  4621. height:14px;
  4622. display:flex;
  4623. transition:none;
  4624. transform-origin:50% 50%;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:10px;
  4629. color:#AAAAAA;
  4630. }
  4631. #u51744 .text {
  4632. position:absolute;
  4633. align-self:flex-start;
  4634. padding:0px 0px 0px 0px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u51744_text {
  4639. border-width:0px;
  4640. white-space:nowrap;
  4641. text-transform:none;
  4642. }
  4643. #u51745_div {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:41px;
  4649. height:14px;
  4650. background:inherit;
  4651. background-color:rgba(255, 255, 255, 0);
  4652. border-left:0px;
  4653. border-top:0px;
  4654. border-right:0px;
  4655. border-radius:0px;
  4656. border-bottom-right-radius:0px;
  4657. border-bottom-left-radius:0px;
  4658. filter:drop-shadow(none);
  4659. transition:none;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:10px;
  4664. color:#AAAAAA;
  4665. }
  4666. #u51745 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:771px;
  4670. top:197px;
  4671. width:41px;
  4672. height:14px;
  4673. display:flex;
  4674. transition:none;
  4675. transform-origin:50% 50%;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:10px;
  4680. color:#AAAAAA;
  4681. }
  4682. #u51745 .text {
  4683. position:absolute;
  4684. align-self:flex-start;
  4685. padding:0px 0px 0px 0px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u51745_text {
  4690. border-width:0px;
  4691. white-space:nowrap;
  4692. text-transform:none;
  4693. }
  4694. #u51746_div {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:85px;
  4700. height:14px;
  4701. background:inherit;
  4702. background-color:rgba(255, 255, 255, 0);
  4703. border-left:0px;
  4704. border-top:0px;
  4705. border-right:0px;
  4706. border-radius:0px;
  4707. border-bottom-right-radius:0px;
  4708. border-bottom-left-radius:0px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:10px;
  4715. color:#AAAAAA;
  4716. }
  4717. #u51746 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:749px;
  4721. top:224px;
  4722. width:85px;
  4723. height:14px;
  4724. display:flex;
  4725. transition:none;
  4726. transform-origin:50% 50%;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:10px;
  4731. color:#AAAAAA;
  4732. }
  4733. #u51746 .text {
  4734. position:absolute;
  4735. align-self:flex-start;
  4736. padding:0px 0px 0px 0px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u51746_text {
  4741. border-width:0px;
  4742. white-space:nowrap;
  4743. text-transform:none;
  4744. }
  4745. #u51747 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:0px;
  4751. height:0px;
  4752. }
  4753. #u51748_div {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:6px;
  4759. height:6px;
  4760. background:inherit;
  4761. background-color:rgba(170, 170, 170, 1);
  4762. border-radius:17px;
  4763. filter:drop-shadow(none);
  4764. transition:none;
  4765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4766. font-weight:400;
  4767. font-style:normal;
  4768. font-size:12px;
  4769. color:#555555;
  4770. }
  4771. #u51748 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:569px;
  4775. top:215px;
  4776. width:6px;
  4777. height:6px;
  4778. display:flex;
  4779. transition:none;
  4780. transform-origin:50% 50%;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. color:#555555;
  4786. }
  4787. #u51748 .text {
  4788. position:absolute;
  4789. align-self:center;
  4790. padding:2px 3px 2px 3px;
  4791. box-sizing:border-box;
  4792. width:100%;
  4793. }
  4794. #u51748_text {
  4795. border-width:0px;
  4796. word-wrap:break-word;
  4797. text-transform:none;
  4798. visibility:hidden;
  4799. }
  4800. #u51749_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:6px;
  4806. height:6px;
  4807. background:inherit;
  4808. background-color:rgba(170, 170, 170, 1);
  4809. border-radius:17px;
  4810. filter:drop-shadow(none);
  4811. transition:none;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:12px;
  4816. color:#555555;
  4817. }
  4818. #u51749 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:789px;
  4822. top:215px;
  4823. width:6px;
  4824. height:6px;
  4825. display:flex;
  4826. transition:none;
  4827. transform-origin:50% 50%;
  4828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:12px;
  4832. color:#555555;
  4833. }
  4834. #u51749 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 3px 2px 3px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u51749_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u51750 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:580px;
  4851. top:218px;
  4852. width:206px;
  4853. height:1px;
  4854. display:flex;
  4855. transition:none;
  4856. }
  4857. #u51750 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 2px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u51750_img {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:207px;
  4870. height:2px;
  4871. }
  4872. #u51750_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. visibility:hidden;
  4877. }
  4878. #u51751 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:0px;
  4884. height:0px;
  4885. }
  4886. #u51752 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:495px;
  4890. top:340px;
  4891. width:355px;
  4892. height:70px;
  4893. display:flex;
  4894. transition:none;
  4895. }
  4896. #u51752 .text {
  4897. position:absolute;
  4898. align-self:center;
  4899. padding:2px 2px 2px 2px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u51752_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:355px;
  4909. height:70px;
  4910. }
  4911. #u51752_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. visibility:hidden;
  4916. }
  4917. #u51753_div {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:35px;
  4923. height:30px;
  4924. background:inherit;
  4925. background-color:rgba(255, 255, 255, 0);
  4926. border-left:0px;
  4927. border-top:0px;
  4928. border-right:0px;
  4929. border-radius:0px;
  4930. border-bottom-right-radius:0px;
  4931. border-bottom-left-radius:0px;
  4932. filter:drop-shadow(none);
  4933. transition:none;
  4934. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4935. font-weight:500;
  4936. font-style:normal;
  4937. font-size:14px;
  4938. line-height:30px;
  4939. }
  4940. #u51753 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:545px;
  4944. top:351px;
  4945. width:35px;
  4946. height:30px;
  4947. display:flex;
  4948. transition:none;
  4949. transform-origin:50% 50%;
  4950. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4951. font-weight:500;
  4952. font-style:normal;
  4953. font-size:14px;
  4954. line-height:30px;
  4955. }
  4956. #u51753 .text {
  4957. position:absolute;
  4958. align-self:flex-start;
  4959. padding:0px 0px 0px 0px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u51753_text {
  4964. border-width:0px;
  4965. white-space:nowrap;
  4966. text-transform:none;
  4967. }
  4968. #u51754_div {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:45px;
  4974. height:25px;
  4975. background:inherit;
  4976. background-color:rgba(255, 255, 255, 0);
  4977. border-left:0px;
  4978. border-top:0px;
  4979. border-right:0px;
  4980. border-radius:0px;
  4981. border-bottom-right-radius:0px;
  4982. border-bottom-left-radius:0px;
  4983. filter:drop-shadow(none);
  4984. transition:none;
  4985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. font-size:11px;
  4989. color:#7F7F7F;
  4990. line-height:25px;
  4991. }
  4992. #u51754 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:545px;
  4996. top:381px;
  4997. width:45px;
  4998. height:25px;
  4999. display:flex;
  5000. transition:none;
  5001. transform-origin:50% 50%;
  5002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5003. font-weight:400;
  5004. font-style:normal;
  5005. font-size:11px;
  5006. color:#7F7F7F;
  5007. line-height:25px;
  5008. }
  5009. #u51754 .text {
  5010. position:absolute;
  5011. align-self:flex-start;
  5012. padding:0px 0px 0px 0px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u51754_text {
  5017. border-width:0px;
  5018. white-space:nowrap;
  5019. text-transform:none;
  5020. }
  5021. #u51755_div {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:37px;
  5027. height:25px;
  5028. background:inherit;
  5029. background-color:rgba(255, 255, 255, 0);
  5030. border-left:0px;
  5031. border-top:0px;
  5032. border-right:0px;
  5033. border-radius:0px;
  5034. border-bottom-right-radius:0px;
  5035. border-bottom-left-radius:0px;
  5036. filter:drop-shadow(none);
  5037. transition:none;
  5038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:12px;
  5042. line-height:25px;
  5043. }
  5044. #u51755 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:782px;
  5048. top:362px;
  5049. width:37px;
  5050. height:25px;
  5051. display:flex;
  5052. transition:none;
  5053. transform-origin:50% 50%;
  5054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:12px;
  5058. line-height:25px;
  5059. }
  5060. #u51755 .text {
  5061. position:absolute;
  5062. align-self:flex-start;
  5063. padding:0px 0px 0px 0px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u51755_text {
  5068. border-width:0px;
  5069. white-space:nowrap;
  5070. text-transform:none;
  5071. }
  5072. #u51756_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:8px;
  5078. height:8px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 0);
  5081. box-sizing:border-box;
  5082. border-width:1px;
  5083. border-style:solid;
  5084. border-color:rgba(127, 127, 127, 1);
  5085. border-right:0px;
  5086. border-bottom:0px;
  5087. border-radius:0px;
  5088. border-top-right-radius:0px;
  5089. border-bottom-left-radius:0px;
  5090. filter:drop-shadow(none);
  5091. transition:none;
  5092. }
  5093. #u51756 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:825px;
  5097. top:371px;
  5098. width:8px;
  5099. height:8px;
  5100. display:flex;
  5101. -webkit-transform:rotate(135deg);
  5102. -moz-transform:rotate(135deg);
  5103. -ms-transform:rotate(135deg);
  5104. transform:rotate(135deg);
  5105. transition:none;
  5106. transform-origin:50% 50%;
  5107. }
  5108. #u51756 .text {
  5109. position:absolute;
  5110. align-self:center;
  5111. padding:2px 2px 2px 2px;
  5112. box-sizing:border-box;
  5113. width:100%;
  5114. }
  5115. #u51756_text {
  5116. border-width:0px;
  5117. word-wrap:break-word;
  5118. text-transform:none;
  5119. visibility:hidden;
  5120. }
  5121. #u51757_div {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:30px;
  5127. height:30px;
  5128. background:inherit;
  5129. background-color:rgba(24, 144, 255, 1);
  5130. box-sizing:border-box;
  5131. border-width:1px;
  5132. border-style:solid;
  5133. border-color:rgba(24, 144, 255, 1);
  5134. border-radius:17px;
  5135. filter:drop-shadow(none);
  5136. transition:none;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:9px;
  5141. color:#FFFFFF;
  5142. text-align:center;
  5143. }
  5144. #u51757 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:505px;
  5148. top:351px;
  5149. width:30px;
  5150. height:30px;
  5151. display:flex;
  5152. transition:none;
  5153. transform-origin:50% 50%;
  5154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:9px;
  5158. color:#FFFFFF;
  5159. text-align:center;
  5160. }
  5161. #u51757 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 3px 2px 3px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u51757_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. }
  5173. #u51758 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:0px;
  5179. height:0px;
  5180. }
  5181. #u51759 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:495px;
  5185. top:420px;
  5186. width:355px;
  5187. height:70px;
  5188. display:flex;
  5189. transition:none;
  5190. }
  5191. #u51759 .text {
  5192. position:absolute;
  5193. align-self:center;
  5194. padding:2px 2px 2px 2px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u51759_img {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:355px;
  5204. height:70px;
  5205. }
  5206. #u51759_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. visibility:hidden;
  5211. }
  5212. #u51760_div {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:49px;
  5218. height:30px;
  5219. background:inherit;
  5220. background-color:rgba(255, 255, 255, 0);
  5221. border-left:0px;
  5222. border-top:0px;
  5223. border-right:0px;
  5224. border-radius:0px;
  5225. border-bottom-right-radius:0px;
  5226. border-bottom-left-radius:0px;
  5227. filter:drop-shadow(none);
  5228. transition:none;
  5229. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5230. font-weight:500;
  5231. font-style:normal;
  5232. font-size:14px;
  5233. line-height:30px;
  5234. }
  5235. #u51760 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:545px;
  5239. top:431px;
  5240. width:49px;
  5241. height:30px;
  5242. display:flex;
  5243. transition:none;
  5244. transform-origin:50% 50%;
  5245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5246. font-weight:500;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. line-height:30px;
  5250. }
  5251. #u51760 .text {
  5252. position:absolute;
  5253. align-self:flex-start;
  5254. padding:0px 0px 0px 0px;
  5255. box-sizing:border-box;
  5256. width:100%;
  5257. }
  5258. #u51760_text {
  5259. border-width:0px;
  5260. white-space:nowrap;
  5261. text-transform:none;
  5262. }
  5263. #u51761_div {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:30px;
  5269. height:25px;
  5270. background:inherit;
  5271. background-color:rgba(255, 255, 255, 0);
  5272. border-left:0px;
  5273. border-top:0px;
  5274. border-right:0px;
  5275. border-radius:0px;
  5276. border-bottom-right-radius:0px;
  5277. border-bottom-left-radius:0px;
  5278. filter:drop-shadow(none);
  5279. transition:none;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:11px;
  5284. color:#7F7F7F;
  5285. line-height:25px;
  5286. }
  5287. #u51761 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:545px;
  5291. top:461px;
  5292. width:30px;
  5293. height:25px;
  5294. display:flex;
  5295. transition:none;
  5296. transform-origin:50% 50%;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:11px;
  5301. color:#7F7F7F;
  5302. line-height:25px;
  5303. }
  5304. #u51761 .text {
  5305. position:absolute;
  5306. align-self:flex-start;
  5307. padding:0px 0px 0px 0px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u51761_text {
  5312. border-width:0px;
  5313. white-space:nowrap;
  5314. text-transform:none;
  5315. }
  5316. #u51762_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:73px;
  5322. height:25px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 0);
  5325. border-left:0px;
  5326. border-top:0px;
  5327. border-right:0px;
  5328. border-radius:0px;
  5329. border-bottom-right-radius:0px;
  5330. border-bottom-left-radius:0px;
  5331. filter:drop-shadow(none);
  5332. transition:none;
  5333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:12px;
  5337. line-height:25px;
  5338. }
  5339. #u51762 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:746px;
  5343. top:442px;
  5344. width:73px;
  5345. height:25px;
  5346. display:flex;
  5347. transition:none;
  5348. transform-origin:50% 50%;
  5349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:12px;
  5353. line-height:25px;
  5354. }
  5355. #u51762 .text {
  5356. position:absolute;
  5357. align-self:flex-start;
  5358. padding:0px 0px 0px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u51762_text {
  5363. border-width:0px;
  5364. white-space:nowrap;
  5365. text-transform:none;
  5366. }
  5367. #u51763_div {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:30px;
  5373. height:30px;
  5374. background:inherit;
  5375. background-color:rgba(24, 144, 255, 1);
  5376. box-sizing:border-box;
  5377. border-width:1px;
  5378. border-style:solid;
  5379. border-color:rgba(24, 144, 255, 1);
  5380. border-radius:17px;
  5381. filter:drop-shadow(none);
  5382. transition:none;
  5383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:10px;
  5387. color:#FFFFFF;
  5388. text-align:center;
  5389. }
  5390. #u51763 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:505px;
  5394. top:431px;
  5395. width:30px;
  5396. height:30px;
  5397. display:flex;
  5398. transition:none;
  5399. transform-origin:50% 50%;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:10px;
  5404. color:#FFFFFF;
  5405. text-align:center;
  5406. }
  5407. #u51763 .text {
  5408. position:absolute;
  5409. align-self:center;
  5410. padding:2px 3px 2px 3px;
  5411. box-sizing:border-box;
  5412. width:100%;
  5413. }
  5414. #u51763_text {
  5415. border-width:0px;
  5416. word-wrap:break-word;
  5417. text-transform:none;
  5418. }
  5419. #u51764_div {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:8px;
  5425. height:8px;
  5426. background:inherit;
  5427. background-color:rgba(255, 255, 255, 0);
  5428. box-sizing:border-box;
  5429. border-width:1px;
  5430. border-style:solid;
  5431. border-color:rgba(127, 127, 127, 1);
  5432. border-right:0px;
  5433. border-bottom:0px;
  5434. border-radius:0px;
  5435. border-top-right-radius:0px;
  5436. border-bottom-left-radius:0px;
  5437. filter:drop-shadow(none);
  5438. transition:none;
  5439. }
  5440. #u51764 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:825px;
  5444. top:451px;
  5445. width:8px;
  5446. height:8px;
  5447. display:flex;
  5448. -webkit-transform:rotate(135deg);
  5449. -moz-transform:rotate(135deg);
  5450. -ms-transform:rotate(135deg);
  5451. transform:rotate(135deg);
  5452. transition:none;
  5453. transform-origin:50% 50%;
  5454. }
  5455. #u51764 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:2px 2px 2px 2px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u51764_text {
  5463. border-width:0px;
  5464. word-wrap:break-word;
  5465. text-transform:none;
  5466. visibility:hidden;
  5467. }
  5468. #u51765 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:0px;
  5474. height:0px;
  5475. }
  5476. #u51766_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:375px;
  5482. height:60px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 1);
  5485. box-sizing:border-box;
  5486. border-width:1px;
  5487. border-style:solid;
  5488. border-color:rgba(242, 242, 242, 1);
  5489. border-radius:20px;
  5490. border-top-left-radius:0px;
  5491. border-top-right-radius:0px;
  5492. filter:drop-shadow(none);
  5493. transition:none;
  5494. }
  5495. #u51766 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:29px;
  5499. top:779px;
  5500. width:375px;
  5501. height:60px;
  5502. display:flex;
  5503. transition:none;
  5504. transform-origin:50% 50%;
  5505. }
  5506. #u51766 .text {
  5507. position:absolute;
  5508. align-self:center;
  5509. padding:2px 2px 2px 2px;
  5510. box-sizing:border-box;
  5511. width:100%;
  5512. }
  5513. #u51766_text {
  5514. border-width:0px;
  5515. word-wrap:break-word;
  5516. text-transform:none;
  5517. visibility:hidden;
  5518. }
  5519. #u51767_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:97px;
  5525. height:40px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 1);
  5528. box-sizing:border-box;
  5529. border-width:1px;
  5530. border-style:solid;
  5531. border-color:rgba(121, 121, 121, 1);
  5532. border-radius:63px;
  5533. filter:drop-shadow(none);
  5534. transition:none;
  5535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:14px;
  5539. color:#555555;
  5540. }
  5541. #u51767 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:79px;
  5545. top:789px;
  5546. width:97px;
  5547. height:40px;
  5548. display:flex;
  5549. transition:none;
  5550. transform-origin:50% 50%;
  5551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. font-size:14px;
  5555. color:#555555;
  5556. }
  5557. #u51767 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:2px 2px 2px 2px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u51767_text {
  5565. border-width:0px;
  5566. word-wrap:break-word;
  5567. text-transform:none;
  5568. }
  5569. #u51768_div {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:97px;
  5575. height:40px;
  5576. background:inherit;
  5577. background-color:rgba(255, 255, 255, 1);
  5578. box-sizing:border-box;
  5579. border-width:1px;
  5580. border-style:solid;
  5581. border-color:rgba(121, 121, 121, 1);
  5582. border-radius:63px;
  5583. filter:drop-shadow(none);
  5584. transition:none;
  5585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:14px;
  5589. color:#555555;
  5590. }
  5591. #u51768 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:186px;
  5595. top:789px;
  5596. width:97px;
  5597. height:40px;
  5598. display:flex;
  5599. transition:none;
  5600. transform-origin:50% 50%;
  5601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:14px;
  5605. color:#555555;
  5606. }
  5607. #u51768 .text {
  5608. position:absolute;
  5609. align-self:center;
  5610. padding:2px 2px 2px 2px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u51768_text {
  5615. border-width:0px;
  5616. word-wrap:break-word;
  5617. text-transform:none;
  5618. }
  5619. #u51769_div {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:97px;
  5625. height:40px;
  5626. background:inherit;
  5627. background-color:rgba(24, 144, 255, 1);
  5628. border-radius:63px;
  5629. filter:drop-shadow(none);
  5630. transition:none;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:14px;
  5635. color:#FFFFFF;
  5636. }
  5637. #u51769 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:293px;
  5641. top:789px;
  5642. width:97px;
  5643. height:40px;
  5644. display:flex;
  5645. transition:none;
  5646. transform-origin:50% 50%;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:14px;
  5651. color:#FFFFFF;
  5652. }
  5653. #u51769 .text {
  5654. position:absolute;
  5655. align-self:center;
  5656. padding:2px 2px 2px 2px;
  5657. box-sizing:border-box;
  5658. width:100%;
  5659. }
  5660. #u51769_text {
  5661. border-width:0px;
  5662. word-wrap:break-word;
  5663. text-transform:none;
  5664. }
  5665. #u51770 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:0px;
  5671. height:0px;
  5672. }
  5673. #u51771 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:495px;
  5677. top:500px;
  5678. width:355px;
  5679. height:70px;
  5680. display:flex;
  5681. transition:none;
  5682. }
  5683. #u51771 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 2px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u51771_img {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:355px;
  5696. height:70px;
  5697. }
  5698. #u51771_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u51772_div {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:57px;
  5710. height:30px;
  5711. background:inherit;
  5712. background-color:rgba(255, 255, 255, 0);
  5713. border-left:0px;
  5714. border-top:0px;
  5715. border-right:0px;
  5716. border-radius:0px;
  5717. border-bottom-right-radius:0px;
  5718. border-bottom-left-radius:0px;
  5719. filter:drop-shadow(none);
  5720. transition:none;
  5721. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5722. font-weight:500;
  5723. font-style:normal;
  5724. font-size:14px;
  5725. line-height:30px;
  5726. }
  5727. #u51772 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:545px;
  5731. top:511px;
  5732. width:57px;
  5733. height:30px;
  5734. display:flex;
  5735. transition:none;
  5736. transform-origin:50% 50%;
  5737. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5738. font-weight:500;
  5739. font-style:normal;
  5740. font-size:14px;
  5741. line-height:30px;
  5742. }
  5743. #u51772 .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. #u51772_text {
  5751. border-width:0px;
  5752. white-space:nowrap;
  5753. text-transform:none;
  5754. }
  5755. #u51773_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:67px;
  5761. height:25px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 0);
  5764. border-left:0px;
  5765. border-top:0px;
  5766. border-right:0px;
  5767. border-radius:0px;
  5768. border-bottom-right-radius:0px;
  5769. border-bottom-left-radius:0px;
  5770. filter:drop-shadow(none);
  5771. transition:none;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:11px;
  5776. color:#7F7F7F;
  5777. line-height:25px;
  5778. }
  5779. #u51773 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:545px;
  5783. top:541px;
  5784. width:67px;
  5785. height:25px;
  5786. display:flex;
  5787. transition:none;
  5788. transform-origin:50% 50%;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:11px;
  5793. color:#7F7F7F;
  5794. line-height:25px;
  5795. }
  5796. #u51773 .text {
  5797. position:absolute;
  5798. align-self:flex-start;
  5799. padding:0px 0px 0px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u51773_text {
  5804. border-width:0px;
  5805. white-space:nowrap;
  5806. text-transform:none;
  5807. }
  5808. #u51774_div {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:73px;
  5814. height:25px;
  5815. background:inherit;
  5816. background-color:rgba(255, 255, 255, 0);
  5817. border-left:0px;
  5818. border-top:0px;
  5819. border-right:0px;
  5820. border-radius:0px;
  5821. border-bottom-right-radius:0px;
  5822. border-bottom-left-radius:0px;
  5823. filter:drop-shadow(none);
  5824. transition:none;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:12px;
  5829. line-height:25px;
  5830. }
  5831. #u51774 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:746px;
  5835. top:522px;
  5836. width:73px;
  5837. height:25px;
  5838. display:flex;
  5839. transition:none;
  5840. transform-origin:50% 50%;
  5841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. font-size:12px;
  5845. line-height:25px;
  5846. }
  5847. #u51774 .text {
  5848. position:absolute;
  5849. align-self:flex-start;
  5850. padding:0px 0px 0px 0px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u51774_text {
  5855. border-width:0px;
  5856. white-space:nowrap;
  5857. text-transform:none;
  5858. }
  5859. #u51775_div {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:30px;
  5865. height:30px;
  5866. background:inherit;
  5867. background-color:rgba(24, 144, 255, 1);
  5868. box-sizing:border-box;
  5869. border-width:1px;
  5870. border-style:solid;
  5871. border-color:rgba(24, 144, 255, 1);
  5872. border-radius:17px;
  5873. filter:drop-shadow(none);
  5874. transition:none;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:9px;
  5879. color:#FFFFFF;
  5880. text-align:center;
  5881. }
  5882. #u51775 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:505px;
  5886. top:511px;
  5887. width:30px;
  5888. height:30px;
  5889. display:flex;
  5890. transition:none;
  5891. transform-origin:50% 50%;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:9px;
  5896. color:#FFFFFF;
  5897. text-align:center;
  5898. }
  5899. #u51775 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 3px 2px 3px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u51775_text {
  5907. border-width:0px;
  5908. word-wrap:break-word;
  5909. text-transform:none;
  5910. }
  5911. #u51776_div {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:8px;
  5917. height:8px;
  5918. background:inherit;
  5919. background-color:rgba(255, 255, 255, 0);
  5920. box-sizing:border-box;
  5921. border-width:1px;
  5922. border-style:solid;
  5923. border-color:rgba(127, 127, 127, 1);
  5924. border-right:0px;
  5925. border-bottom:0px;
  5926. border-radius:0px;
  5927. border-top-right-radius:0px;
  5928. border-bottom-left-radius:0px;
  5929. filter:drop-shadow(none);
  5930. transition:none;
  5931. }
  5932. #u51776 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:825px;
  5936. top:531px;
  5937. width:8px;
  5938. height:8px;
  5939. display:flex;
  5940. -webkit-transform:rotate(135deg);
  5941. -moz-transform:rotate(135deg);
  5942. -ms-transform:rotate(135deg);
  5943. transform:rotate(135deg);
  5944. transition:none;
  5945. transform-origin:50% 50%;
  5946. }
  5947. #u51776 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u51776_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u51777_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:344px;
  5966. height:240px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 0);
  5969. border-radius:0px;
  5970. filter:drop-shadow(none);
  5971. transition:none;
  5972. color:#D9001B;
  5973. line-height:30px;
  5974. }
  5975. #u51777 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:45px;
  5979. top:500px;
  5980. width:344px;
  5981. height:240px;
  5982. display:flex;
  5983. transition:none;
  5984. transform-origin:50% 50%;
  5985. color:#D9001B;
  5986. line-height:30px;
  5987. }
  5988. #u51777 .text {
  5989. position:absolute;
  5990. align-self:flex-start;
  5991. padding:0px 0px 0px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u51777_text {
  5996. border-width:0px;
  5997. word-wrap:break-word;
  5998. text-transform:none;
  5999. }