styles.css 106 KB

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