styles.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1345px;
  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. #u198452_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u198452 {
  28. border-width:0px;
  29. position:absolute;
  30. left:456px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u198452 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u198452_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u198453_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. #u198453 {
  73. border-width:0px;
  74. position:absolute;
  75. left:485px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u198453 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u198453_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u198454 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u198455_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. #u198455 {
  121. border-width:0px;
  122. position:absolute;
  123. left:765px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u198455 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u198455_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u198456 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u198457_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u198457 {
  159. border-width:0px;
  160. position:absolute;
  161. left:828px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u198457 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u198457_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u198458_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u198458 {
  189. border-width:0px;
  190. position:absolute;
  191. left:834px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u198458 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u198458_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u198459 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u198460_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u198460 {
  227. border-width:0px;
  228. position:absolute;
  229. left:779px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u198460 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u198460_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u198461_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u198461 {
  257. border-width:0px;
  258. position:absolute;
  259. left:795px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u198461 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u198461_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u198462_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u198462 {
  287. border-width:0px;
  288. position:absolute;
  289. left:786px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u198462 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u198462_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u198463_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u198463 {
  317. border-width:0px;
  318. position:absolute;
  319. left:803px;
  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. #u198463 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u198463_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u198464_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u198464 {
  351. border-width:0px;
  352. position:absolute;
  353. left:485px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u198464 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u198464_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u198465_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. #u198465 {
  393. border-width:0px;
  394. position:absolute;
  395. left:485px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u198465 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u198465_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u198466 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u198467_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u198467 {
  431. border-width:0px;
  432. position:absolute;
  433. left:525px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u198467 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u198467_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u198468_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. #u198468 {
  472. border-width:0px;
  473. position:absolute;
  474. left:525px;
  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. #u198468 .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. #u198468_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u198469 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u198470_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u198470 {
  513. border-width:0px;
  514. position:absolute;
  515. left:795px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u198470 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u198470_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u198471_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. #u198471 {
  554. border-width:0px;
  555. position:absolute;
  556. left:795px;
  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. #u198471 .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. #u198471_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u198472_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. #u198472 {
  594. border-width:0px;
  595. position:absolute;
  596. left:485px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u198472 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u198472_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u198473 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u198474_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u198474 {
  632. border-width:0px;
  633. position:absolute;
  634. left:707px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u198474 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u198474_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u198475_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. #u198475 {
  673. border-width:0px;
  674. position:absolute;
  675. left:701px;
  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. #u198475 .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. #u198475_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u198476 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u198477_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u198477 {
  714. border-width:0px;
  715. position:absolute;
  716. left:613px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u198477 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u198477_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u198478_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. #u198478 {
  755. border-width:0px;
  756. position:absolute;
  757. left:607px;
  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. #u198478 .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. #u198478_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u198479_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:23px;
  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. #u198479 {
  798. border-width:0px;
  799. position:absolute;
  800. left:485px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u198479 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u198479_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u198480 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u198481_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:375px;
  833. height:380px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 255, 1);
  836. border:none;
  837. border-radius:0px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. }
  842. #u198481 {
  843. border-width:0px;
  844. position:absolute;
  845. left:485px;
  846. top:107px;
  847. width:375px;
  848. height:380px;
  849. display:flex;
  850. }
  851. #u198481 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u198481_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u198482_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:353px;
  870. height:160px;
  871. background:inherit;
  872. background-color:rgba(255, 255, 255, 0);
  873. border:none;
  874. border-top:0px;
  875. border-right:0px;
  876. border-bottom:0px;
  877. border-radius:0px;
  878. border-top-left-radius:0px;
  879. border-bottom-left-radius:0px;
  880. -moz-box-shadow:none;
  881. -webkit-box-shadow:none;
  882. box-shadow:none;
  883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  884. font-weight:400;
  885. font-style:normal;
  886. line-height:30px;
  887. }
  888. #u198482 {
  889. border-width:0px;
  890. position:absolute;
  891. left:498px;
  892. top:117px;
  893. width:353px;
  894. height:160px;
  895. display:flex;
  896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  897. font-weight:400;
  898. font-style:normal;
  899. line-height:30px;
  900. }
  901. #u198482 .text {
  902. position:absolute;
  903. align-self:flex-start;
  904. padding:5px 10px 5px 0px;
  905. box-sizing:border-box;
  906. width:100%;
  907. }
  908. #u198482_text {
  909. border-width:0px;
  910. word-wrap:break-word;
  911. text-transform:none;
  912. }
  913. #u198483_div {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:353px;
  919. height:190px;
  920. background:inherit;
  921. background-color:rgba(255, 255, 255, 0);
  922. border:none;
  923. border-top:0px;
  924. border-right:0px;
  925. border-bottom:0px;
  926. border-radius:0px;
  927. border-top-left-radius:0px;
  928. border-bottom-left-radius:0px;
  929. -moz-box-shadow:none;
  930. -webkit-box-shadow:none;
  931. box-shadow:none;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:12px;
  936. line-height:30px;
  937. }
  938. #u198483 {
  939. border-width:0px;
  940. position:absolute;
  941. left:498px;
  942. top:292px;
  943. width:353px;
  944. height:190px;
  945. display:flex;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:12px;
  950. line-height:30px;
  951. }
  952. #u198483 .text {
  953. position:absolute;
  954. align-self:flex-start;
  955. padding:5px 10px 5px 0px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u198483_text {
  960. border-width:0px;
  961. word-wrap:break-word;
  962. text-transform:none;
  963. }
  964. #u198484_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:350px;
  970. height:2px;
  971. }
  972. #u198484 {
  973. border-width:0px;
  974. position:absolute;
  975. left:498px;
  976. top:283px;
  977. width:349px;
  978. height:1px;
  979. display:flex;
  980. }
  981. #u198484 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 2px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u198484_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. visibility:hidden;
  993. }
  994. #u198486_img {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:433px;
  1000. height:865px;
  1001. }
  1002. #u198486 {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:433px;
  1008. height:865px;
  1009. display:flex;
  1010. }
  1011. #u198486 .text {
  1012. position:absolute;
  1013. align-self:center;
  1014. padding:2px 2px 2px 2px;
  1015. box-sizing:border-box;
  1016. width:100%;
  1017. }
  1018. #u198486_text {
  1019. border-width:0px;
  1020. word-wrap:break-word;
  1021. text-transform:none;
  1022. visibility:hidden;
  1023. }
  1024. #u198487_div {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:375px;
  1030. height:40px;
  1031. background:inherit;
  1032. background-color:rgba(255, 255, 255, 1);
  1033. box-sizing:border-box;
  1034. border-width:1px;
  1035. border-style:solid;
  1036. border-color:rgba(215, 215, 215, 1);
  1037. border-left:0px;
  1038. border-top:0px;
  1039. border-right:0px;
  1040. border-radius:0px;
  1041. border-bottom-right-radius:0px;
  1042. border-bottom-left-radius:0px;
  1043. -moz-box-shadow:none;
  1044. -webkit-box-shadow:none;
  1045. box-shadow:none;
  1046. }
  1047. #u198487 {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:29px;
  1051. top:67px;
  1052. width:375px;
  1053. height:40px;
  1054. display:flex;
  1055. }
  1056. #u198487 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u198487_text {
  1064. border-width:0px;
  1065. word-wrap:break-word;
  1066. text-transform:none;
  1067. visibility:hidden;
  1068. }
  1069. #u198488 {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:0px;
  1075. height:0px;
  1076. }
  1077. #u198489_div {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:88px;
  1083. height:32px;
  1084. background:inherit;
  1085. background-color:rgba(255, 255, 255, 1);
  1086. box-sizing:border-box;
  1087. border-width:1px;
  1088. border-style:solid;
  1089. border-color:rgba(242, 242, 242, 1);
  1090. border-radius:33px;
  1091. -moz-box-shadow:none;
  1092. -webkit-box-shadow:none;
  1093. box-shadow:none;
  1094. }
  1095. #u198489 {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:309px;
  1099. top:71px;
  1100. width:88px;
  1101. height:32px;
  1102. display:flex;
  1103. }
  1104. #u198489 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u198489_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. visibility:hidden;
  1116. }
  1117. #u198490 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:0px;
  1123. height:0px;
  1124. }
  1125. #u198491_img {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:18px;
  1131. height:18px;
  1132. }
  1133. #u198491 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:372px;
  1137. top:78px;
  1138. width:18px;
  1139. height:18px;
  1140. display:flex;
  1141. }
  1142. #u198491 .text {
  1143. position:absolute;
  1144. align-self:center;
  1145. padding:2px 2px 2px 2px;
  1146. box-sizing:border-box;
  1147. width:100%;
  1148. }
  1149. #u198491_text {
  1150. border-width:0px;
  1151. word-wrap:break-word;
  1152. text-transform:none;
  1153. visibility:hidden;
  1154. }
  1155. #u198492_img {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:6px;
  1161. height:6px;
  1162. }
  1163. #u198492 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:378px;
  1167. top:84px;
  1168. width:6px;
  1169. height:6px;
  1170. display:flex;
  1171. }
  1172. #u198492 .text {
  1173. position:absolute;
  1174. align-self:center;
  1175. padding:2px 2px 2px 2px;
  1176. box-sizing:border-box;
  1177. width:100%;
  1178. }
  1179. #u198492_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u198493 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:0px;
  1191. height:0px;
  1192. }
  1193. #u198494_img {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:5px;
  1199. height:5px;
  1200. }
  1201. #u198494 {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:323px;
  1205. top:85px;
  1206. width:5px;
  1207. height:5px;
  1208. display:flex;
  1209. }
  1210. #u198494 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u198494_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u198495_img {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:5px;
  1229. height:5px;
  1230. }
  1231. #u198495 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:339px;
  1235. top:85px;
  1236. width:5px;
  1237. height:5px;
  1238. display:flex;
  1239. }
  1240. #u198495 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:2px 2px 2px 2px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u198495_text {
  1248. border-width:0px;
  1249. word-wrap:break-word;
  1250. text-transform:none;
  1251. visibility:hidden;
  1252. }
  1253. #u198496_img {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:7px;
  1259. height:7px;
  1260. }
  1261. #u198496 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:330px;
  1265. top:84px;
  1266. width:7px;
  1267. height:7px;
  1268. display:flex;
  1269. }
  1270. #u198496 .text {
  1271. position:absolute;
  1272. align-self:center;
  1273. padding:2px 2px 2px 2px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u198496_text {
  1278. border-width:0px;
  1279. word-wrap:break-word;
  1280. text-transform:none;
  1281. visibility:hidden;
  1282. }
  1283. #u198497_img {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:19px;
  1289. height:2px;
  1290. }
  1291. #u198497 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:347px;
  1295. top:87px;
  1296. width:18px;
  1297. height:1px;
  1298. display:flex;
  1299. -webkit-transform:rotate(90deg);
  1300. -moz-transform:rotate(90deg);
  1301. -ms-transform:rotate(90deg);
  1302. transform:rotate(90deg);
  1303. }
  1304. #u198497 .text {
  1305. position:absolute;
  1306. align-self:center;
  1307. padding:2px 2px 2px 2px;
  1308. box-sizing:border-box;
  1309. width:100%;
  1310. }
  1311. #u198497_text {
  1312. border-width:0px;
  1313. word-wrap:break-word;
  1314. text-transform:none;
  1315. visibility:hidden;
  1316. }
  1317. #u198498_img {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:375px;
  1323. height:44px;
  1324. }
  1325. #u198498 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:29px;
  1329. top:24px;
  1330. width:375px;
  1331. height:44px;
  1332. display:flex;
  1333. }
  1334. #u198498 .text {
  1335. position:absolute;
  1336. align-self:center;
  1337. padding:2px 2px 2px 2px;
  1338. box-sizing:border-box;
  1339. width:100%;
  1340. }
  1341. #u198498_text {
  1342. border-width:0px;
  1343. word-wrap:break-word;
  1344. text-transform:none;
  1345. visibility:hidden;
  1346. }
  1347. #u198499_div {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:375px;
  1353. height:50px;
  1354. background:inherit;
  1355. background-color:rgba(255, 255, 255, 1);
  1356. box-sizing:border-box;
  1357. border-width:1px;
  1358. border-style:solid;
  1359. border-color:rgba(242, 242, 242, 1);
  1360. border-radius:26px;
  1361. border-top-left-radius:0px;
  1362. border-top-right-radius:0px;
  1363. -moz-box-shadow:none;
  1364. -webkit-box-shadow:none;
  1365. box-shadow:none;
  1366. }
  1367. #u198499 {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:29px;
  1371. top:788px;
  1372. width:375px;
  1373. height:50px;
  1374. display:flex;
  1375. }
  1376. #u198499 .text {
  1377. position:absolute;
  1378. align-self:center;
  1379. padding:2px 2px 2px 2px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u198499_text {
  1384. border-width:0px;
  1385. word-wrap:break-word;
  1386. text-transform:none;
  1387. visibility:hidden;
  1388. }
  1389. #u198500 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:0px;
  1395. height:0px;
  1396. }
  1397. #u198501_img {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:24px;
  1403. height:24px;
  1404. }
  1405. #u198501 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:69px;
  1409. top:792px;
  1410. width:24px;
  1411. height:24px;
  1412. display:flex;
  1413. font-size:8px;
  1414. }
  1415. #u198501 .text {
  1416. position:absolute;
  1417. align-self:center;
  1418. padding:2px 2px 2px 2px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u198501_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. }
  1427. #u198502_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:25px;
  1433. height:17px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. font-size:12px;
  1445. }
  1446. #u198502 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:69px;
  1450. top:817px;
  1451. width:25px;
  1452. height:17px;
  1453. display:flex;
  1454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:12px;
  1458. }
  1459. #u198502 .text {
  1460. position:absolute;
  1461. align-self:flex-start;
  1462. padding:0px 0px 0px 0px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u198502_text {
  1467. border-width:0px;
  1468. white-space:nowrap;
  1469. text-transform:none;
  1470. }
  1471. #u198503 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:0px;
  1477. height:0px;
  1478. }
  1479. #u198504_img {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:24px;
  1485. height:24px;
  1486. }
  1487. #u198504 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:339px;
  1491. top:794px;
  1492. width:24px;
  1493. height:24px;
  1494. display:flex;
  1495. font-size:8px;
  1496. }
  1497. #u198504 .text {
  1498. position:absolute;
  1499. align-self:center;
  1500. padding:2px 2px 2px 2px;
  1501. box-sizing:border-box;
  1502. width:100%;
  1503. }
  1504. #u198504_text {
  1505. border-width:0px;
  1506. word-wrap:break-word;
  1507. text-transform:none;
  1508. }
  1509. #u198505_div {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:0px;
  1513. top:0px;
  1514. width:25px;
  1515. height:17px;
  1516. background:inherit;
  1517. background-color:rgba(255, 255, 255, 0);
  1518. border:none;
  1519. border-radius:0px;
  1520. -moz-box-shadow:none;
  1521. -webkit-box-shadow:none;
  1522. box-shadow:none;
  1523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:12px;
  1527. }
  1528. #u198505 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:339px;
  1532. top:819px;
  1533. width:25px;
  1534. height:17px;
  1535. display:flex;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:12px;
  1540. }
  1541. #u198505 .text {
  1542. position:absolute;
  1543. align-self:flex-start;
  1544. padding:0px 0px 0px 0px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u198505_text {
  1549. border-width:0px;
  1550. white-space:nowrap;
  1551. text-transform:none;
  1552. }
  1553. #u198506_div {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:375px;
  1559. height:681px;
  1560. background:inherit;
  1561. background-color:rgba(242, 242, 242, 0.462745098039216);
  1562. border:none;
  1563. border-radius:0px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. }
  1568. #u198506 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:29px;
  1572. top:107px;
  1573. width:375px;
  1574. height:681px;
  1575. display:flex;
  1576. }
  1577. #u198506 .text {
  1578. position:absolute;
  1579. align-self:center;
  1580. padding:2px 2px 2px 2px;
  1581. box-sizing:border-box;
  1582. width:100%;
  1583. }
  1584. #u198506_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. visibility:hidden;
  1589. }
  1590. #u198507 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:0px;
  1596. height:0px;
  1597. }
  1598. #u198508_img {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:24px;
  1604. height:24px;
  1605. }
  1606. #u198508 {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:251px;
  1610. top:792px;
  1611. width:24px;
  1612. height:24px;
  1613. display:flex;
  1614. font-size:8px;
  1615. }
  1616. #u198508 .text {
  1617. position:absolute;
  1618. align-self:center;
  1619. padding:2px 2px 2px 2px;
  1620. box-sizing:border-box;
  1621. width:100%;
  1622. }
  1623. #u198508_text {
  1624. border-width:0px;
  1625. word-wrap:break-word;
  1626. text-transform:none;
  1627. }
  1628. #u198509_div {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:37px;
  1634. height:17px;
  1635. background:inherit;
  1636. background-color:rgba(255, 255, 255, 0);
  1637. border:none;
  1638. border-radius:0px;
  1639. -moz-box-shadow:none;
  1640. -webkit-box-shadow:none;
  1641. box-shadow:none;
  1642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1643. font-weight:400;
  1644. font-style:normal;
  1645. font-size:12px;
  1646. }
  1647. #u198509 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:245px;
  1651. top:817px;
  1652. width:37px;
  1653. height:17px;
  1654. display:flex;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. }
  1660. #u198509 .text {
  1661. position:absolute;
  1662. align-self:flex-start;
  1663. padding:0px 0px 0px 0px;
  1664. box-sizing:border-box;
  1665. width:100%;
  1666. }
  1667. #u198509_text {
  1668. border-width:0px;
  1669. white-space:nowrap;
  1670. text-transform:none;
  1671. }
  1672. #u198510 {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:0px;
  1678. height:0px;
  1679. }
  1680. #u198511_img {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:24px;
  1686. height:24px;
  1687. }
  1688. #u198511 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:157px;
  1692. top:792px;
  1693. width:24px;
  1694. height:24px;
  1695. display:flex;
  1696. font-size:8px;
  1697. }
  1698. #u198511 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 2px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u198511_text {
  1706. border-width:0px;
  1707. word-wrap:break-word;
  1708. text-transform:none;
  1709. }
  1710. #u198512_div {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:0px;
  1714. top:0px;
  1715. width:37px;
  1716. height:17px;
  1717. background:inherit;
  1718. background-color:rgba(255, 255, 255, 0);
  1719. border:none;
  1720. border-radius:0px;
  1721. -moz-box-shadow:none;
  1722. -webkit-box-shadow:none;
  1723. box-shadow:none;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:12px;
  1728. }
  1729. #u198512 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:151px;
  1733. top:817px;
  1734. width:37px;
  1735. height:17px;
  1736. display:flex;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:12px;
  1741. }
  1742. #u198512 .text {
  1743. position:absolute;
  1744. align-self:flex-start;
  1745. padding:0px 0px 0px 0px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u198512_text {
  1750. border-width:0px;
  1751. white-space:nowrap;
  1752. text-transform:none;
  1753. }
  1754. #u198513_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:375px;
  1760. height:40px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 1);
  1763. box-sizing:border-box;
  1764. border-width:1px;
  1765. border-style:solid;
  1766. border-color:rgba(215, 215, 215, 1);
  1767. border-left:0px;
  1768. border-top:0px;
  1769. border-right:0px;
  1770. border-radius:0px;
  1771. border-bottom-right-radius:0px;
  1772. border-bottom-left-radius:0px;
  1773. -moz-box-shadow:none;
  1774. -webkit-box-shadow:none;
  1775. box-shadow:none;
  1776. }
  1777. #u198513 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:29px;
  1781. top:67px;
  1782. width:375px;
  1783. height:40px;
  1784. display:flex;
  1785. }
  1786. #u198513 .text {
  1787. position:absolute;
  1788. align-self:center;
  1789. padding:2px 2px 2px 2px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u198513_text {
  1794. border-width:0px;
  1795. word-wrap:break-word;
  1796. text-transform:none;
  1797. visibility:hidden;
  1798. }
  1799. #u198514_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:375px;
  1805. height:44px;
  1806. }
  1807. #u198514 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:29px;
  1811. top:24px;
  1812. width:375px;
  1813. height:44px;
  1814. display:flex;
  1815. }
  1816. #u198514 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:2px 2px 2px 2px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u198514_text {
  1824. border-width:0px;
  1825. word-wrap:break-word;
  1826. text-transform:none;
  1827. visibility:hidden;
  1828. }
  1829. #u198515 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:0px;
  1835. height:0px;
  1836. }
  1837. #u198516_div {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:88px;
  1843. height:32px;
  1844. background:inherit;
  1845. background-color:rgba(255, 255, 255, 1);
  1846. box-sizing:border-box;
  1847. border-width:1px;
  1848. border-style:solid;
  1849. border-color:rgba(242, 242, 242, 1);
  1850. border-radius:33px;
  1851. -moz-box-shadow:none;
  1852. -webkit-box-shadow:none;
  1853. box-shadow:none;
  1854. }
  1855. #u198516 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:309px;
  1859. top:71px;
  1860. width:88px;
  1861. height:32px;
  1862. display:flex;
  1863. }
  1864. #u198516 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:2px 2px 2px 2px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u198516_text {
  1872. border-width:0px;
  1873. word-wrap:break-word;
  1874. text-transform:none;
  1875. visibility:hidden;
  1876. }
  1877. #u198517 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:0px;
  1883. height:0px;
  1884. }
  1885. #u198518_img {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:18px;
  1891. height:18px;
  1892. }
  1893. #u198518 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:372px;
  1897. top:78px;
  1898. width:18px;
  1899. height:18px;
  1900. display:flex;
  1901. }
  1902. #u198518 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 2px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u198518_text {
  1910. border-width:0px;
  1911. word-wrap:break-word;
  1912. text-transform:none;
  1913. visibility:hidden;
  1914. }
  1915. #u198519_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:6px;
  1921. height:6px;
  1922. }
  1923. #u198519 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:378px;
  1927. top:84px;
  1928. width:6px;
  1929. height:6px;
  1930. display:flex;
  1931. }
  1932. #u198519 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 2px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u198519_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u198520 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:0px;
  1951. height:0px;
  1952. }
  1953. #u198521_img {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:5px;
  1959. height:5px;
  1960. }
  1961. #u198521 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:323px;
  1965. top:85px;
  1966. width:5px;
  1967. height:5px;
  1968. display:flex;
  1969. }
  1970. #u198521 .text {
  1971. position:absolute;
  1972. align-self:center;
  1973. padding:2px 2px 2px 2px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u198521_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. visibility:hidden;
  1982. }
  1983. #u198522_img {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:5px;
  1989. height:5px;
  1990. }
  1991. #u198522 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:339px;
  1995. top:85px;
  1996. width:5px;
  1997. height:5px;
  1998. display:flex;
  1999. }
  2000. #u198522 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:2px 2px 2px 2px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u198522_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. visibility:hidden;
  2012. }
  2013. #u198523_img {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:7px;
  2019. height:7px;
  2020. }
  2021. #u198523 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:330px;
  2025. top:84px;
  2026. width:7px;
  2027. height:7px;
  2028. display:flex;
  2029. }
  2030. #u198523 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 2px 2px 2px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u198523_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. visibility:hidden;
  2042. }
  2043. #u198524_img {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:19px;
  2049. height:2px;
  2050. }
  2051. #u198524 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:347px;
  2055. top:87px;
  2056. width:18px;
  2057. height:1px;
  2058. display:flex;
  2059. -webkit-transform:rotate(90deg);
  2060. -moz-transform:rotate(90deg);
  2061. -ms-transform:rotate(90deg);
  2062. transform:rotate(90deg);
  2063. }
  2064. #u198524 .text {
  2065. position:absolute;
  2066. align-self:center;
  2067. padding:2px 2px 2px 2px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u198524_text {
  2072. border-width:0px;
  2073. word-wrap:break-word;
  2074. text-transform:none;
  2075. visibility:hidden;
  2076. }
  2077. #u198525_div {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:97px;
  2083. height:22px;
  2084. background:inherit;
  2085. background-color:rgba(255, 255, 255, 0);
  2086. border:none;
  2087. border-radius:0px;
  2088. -moz-box-shadow:none;
  2089. -webkit-box-shadow:none;
  2090. box-shadow:none;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:16px;
  2095. color:#000000;
  2096. }
  2097. #u198525 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:168px;
  2101. top:78px;
  2102. width:97px;
  2103. height:22px;
  2104. display:flex;
  2105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2106. font-weight:400;
  2107. font-style:normal;
  2108. font-size:16px;
  2109. color:#000000;
  2110. }
  2111. #u198525 .text {
  2112. position:absolute;
  2113. align-self:flex-start;
  2114. padding:0px 0px 0px 0px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u198525_text {
  2119. border-width:0px;
  2120. white-space:nowrap;
  2121. text-transform:none;
  2122. }
  2123. #u198526_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:12px;
  2129. height:12px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 0);
  2132. box-sizing:border-box;
  2133. border-width:2px;
  2134. border-style:solid;
  2135. border-color:rgba(51, 51, 51, 1);
  2136. border-right:0px;
  2137. border-bottom:0px;
  2138. border-radius:0px;
  2139. border-top-right-radius:0px;
  2140. border-bottom-left-radius:0px;
  2141. -moz-box-shadow:none;
  2142. -webkit-box-shadow:none;
  2143. box-shadow:none;
  2144. }
  2145. #u198526 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:44px;
  2149. top:81px;
  2150. width:12px;
  2151. height:12px;
  2152. display:flex;
  2153. -webkit-transform:rotate(315deg);
  2154. -moz-transform:rotate(315deg);
  2155. -ms-transform:rotate(315deg);
  2156. transform:rotate(315deg);
  2157. }
  2158. #u198526 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 2px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u198526_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. visibility:hidden;
  2170. }
  2171. #u198527_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:23px;
  2177. height:23px;
  2178. }
  2179. #u198527 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:71px;
  2183. top:76px;
  2184. width:23px;
  2185. height:23px;
  2186. display:flex;
  2187. }
  2188. #u198527 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:2px 2px 2px 2px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u198527_text {
  2196. border-width:0px;
  2197. word-wrap:break-word;
  2198. text-transform:none;
  2199. visibility:hidden;
  2200. }
  2201. #u198528_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:375px;
  2207. height:732px;
  2208. background:inherit;
  2209. background-color:rgba(242, 242, 242, 0.996078431372549);
  2210. border:none;
  2211. border-top:0px;
  2212. border-radius:23px;
  2213. border-top-left-radius:0px;
  2214. border-top-right-radius:0px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. }
  2219. #u198528 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:29px;
  2223. top:107px;
  2224. width:375px;
  2225. height:732px;
  2226. display:flex;
  2227. }
  2228. #u198528 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u198528_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u198529_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:375px;
  2247. height:40px;
  2248. background:inherit;
  2249. background-color:rgba(255, 255, 255, 1);
  2250. box-sizing:border-box;
  2251. border-width:1px;
  2252. border-style:solid;
  2253. border-color:rgba(215, 215, 215, 1);
  2254. border-left:0px;
  2255. border-top:0px;
  2256. border-right:0px;
  2257. border-radius:0px;
  2258. border-bottom-right-radius:0px;
  2259. border-bottom-left-radius:0px;
  2260. -moz-box-shadow:none;
  2261. -webkit-box-shadow:none;
  2262. box-shadow:none;
  2263. }
  2264. #u198529 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:485px;
  2268. top:67px;
  2269. width:375px;
  2270. height:40px;
  2271. display:flex;
  2272. }
  2273. #u198529 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u198529_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u198530_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:375px;
  2292. height:44px;
  2293. }
  2294. #u198530 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:485px;
  2298. top:24px;
  2299. width:375px;
  2300. height:44px;
  2301. display:flex;
  2302. }
  2303. #u198530 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u198530_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u198531 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:0px;
  2322. height:0px;
  2323. }
  2324. #u198532_div {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:88px;
  2330. height:32px;
  2331. background:inherit;
  2332. background-color:rgba(255, 255, 255, 1);
  2333. box-sizing:border-box;
  2334. border-width:1px;
  2335. border-style:solid;
  2336. border-color:rgba(242, 242, 242, 1);
  2337. border-radius:33px;
  2338. -moz-box-shadow:none;
  2339. -webkit-box-shadow:none;
  2340. box-shadow:none;
  2341. }
  2342. #u198532 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:765px;
  2346. top:71px;
  2347. width:88px;
  2348. height:32px;
  2349. display:flex;
  2350. }
  2351. #u198532 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 2px 2px 2px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u198532_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u198533 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:0px;
  2370. height:0px;
  2371. }
  2372. #u198534_img {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:18px;
  2378. height:18px;
  2379. }
  2380. #u198534 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:828px;
  2384. top:78px;
  2385. width:18px;
  2386. height:18px;
  2387. display:flex;
  2388. }
  2389. #u198534 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 2px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u198534_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. visibility:hidden;
  2401. }
  2402. #u198535_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:6px;
  2408. height:6px;
  2409. }
  2410. #u198535 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:834px;
  2414. top:84px;
  2415. width:6px;
  2416. height:6px;
  2417. display:flex;
  2418. }
  2419. #u198535 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 2px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u198535_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u198536 {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:0px;
  2438. height:0px;
  2439. }
  2440. #u198537_img {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:5px;
  2446. height:5px;
  2447. }
  2448. #u198537 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:779px;
  2452. top:85px;
  2453. width:5px;
  2454. height:5px;
  2455. display:flex;
  2456. }
  2457. #u198537 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 2px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u198537_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u198538_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:5px;
  2476. height:5px;
  2477. }
  2478. #u198538 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:795px;
  2482. top:85px;
  2483. width:5px;
  2484. height:5px;
  2485. display:flex;
  2486. }
  2487. #u198538 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:2px 2px 2px 2px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u198538_text {
  2495. border-width:0px;
  2496. word-wrap:break-word;
  2497. text-transform:none;
  2498. visibility:hidden;
  2499. }
  2500. #u198539_img {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:7px;
  2506. height:7px;
  2507. }
  2508. #u198539 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:786px;
  2512. top:84px;
  2513. width:7px;
  2514. height:7px;
  2515. display:flex;
  2516. }
  2517. #u198539 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 2px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u198539_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u198540_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:19px;
  2536. height:2px;
  2537. }
  2538. #u198540 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:803px;
  2542. top:87px;
  2543. width:18px;
  2544. height:1px;
  2545. display:flex;
  2546. -webkit-transform:rotate(90deg);
  2547. -moz-transform:rotate(90deg);
  2548. -ms-transform:rotate(90deg);
  2549. transform:rotate(90deg);
  2550. }
  2551. #u198540 .text {
  2552. position:absolute;
  2553. align-self:center;
  2554. padding:2px 2px 2px 2px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u198540_text {
  2559. border-width:0px;
  2560. word-wrap:break-word;
  2561. text-transform:none;
  2562. visibility:hidden;
  2563. }
  2564. #u198541_div {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:97px;
  2570. height:22px;
  2571. background:inherit;
  2572. background-color:rgba(255, 255, 255, 0);
  2573. border:none;
  2574. border-radius:0px;
  2575. -moz-box-shadow:none;
  2576. -webkit-box-shadow:none;
  2577. box-shadow:none;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:16px;
  2582. color:#000000;
  2583. }
  2584. #u198541 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:624px;
  2588. top:78px;
  2589. width:97px;
  2590. height:22px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:16px;
  2596. color:#000000;
  2597. }
  2598. #u198541 .text {
  2599. position:absolute;
  2600. align-self:flex-start;
  2601. padding:0px 0px 0px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u198541_text {
  2606. border-width:0px;
  2607. white-space:nowrap;
  2608. text-transform:none;
  2609. }
  2610. #u198542_div {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:12px;
  2616. height:12px;
  2617. background:inherit;
  2618. background-color:rgba(255, 255, 255, 0);
  2619. box-sizing:border-box;
  2620. border-width:2px;
  2621. border-style:solid;
  2622. border-color:rgba(51, 51, 51, 1);
  2623. border-right:0px;
  2624. border-bottom:0px;
  2625. border-radius:0px;
  2626. border-top-right-radius:0px;
  2627. border-bottom-left-radius:0px;
  2628. -moz-box-shadow:none;
  2629. -webkit-box-shadow:none;
  2630. box-shadow:none;
  2631. }
  2632. #u198542 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:500px;
  2636. top:81px;
  2637. width:12px;
  2638. height:12px;
  2639. display:flex;
  2640. -webkit-transform:rotate(315deg);
  2641. -moz-transform:rotate(315deg);
  2642. -ms-transform:rotate(315deg);
  2643. transform:rotate(315deg);
  2644. }
  2645. #u198542 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u198542_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u198543_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:23px;
  2664. height:23px;
  2665. }
  2666. #u198543 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:527px;
  2670. top:76px;
  2671. width:23px;
  2672. height:23px;
  2673. display:flex;
  2674. }
  2675. #u198543 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 2px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u198543_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u198544_div {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:37px;
  2694. height:17px;
  2695. background:inherit;
  2696. background-color:rgba(255, 255, 255, 0);
  2697. border:none;
  2698. border-radius:0px;
  2699. -moz-box-shadow:none;
  2700. -webkit-box-shadow:none;
  2701. box-shadow:none;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#1890FF;
  2707. }
  2708. #u198544 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:812px;
  2712. top:117px;
  2713. width:37px;
  2714. height:17px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:12px;
  2720. color:#1890FF;
  2721. }
  2722. #u198544 .text {
  2723. position:absolute;
  2724. align-self:flex-start;
  2725. padding:0px 0px 0px 0px;
  2726. box-sizing:border-box;
  2727. width:100%;
  2728. }
  2729. #u198544_text {
  2730. border-width:0px;
  2731. white-space:nowrap;
  2732. text-transform:none;
  2733. }
  2734. #u198545 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:0px;
  2740. height:0px;
  2741. }
  2742. #u198546_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:375px;
  2748. height:254px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 1);
  2751. border:none;
  2752. border-radius:0px;
  2753. -moz-box-shadow:none;
  2754. -webkit-box-shadow:none;
  2755. box-shadow:none;
  2756. }
  2757. #u198546 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:485px;
  2761. top:497px;
  2762. width:375px;
  2763. height:254px;
  2764. display:flex;
  2765. }
  2766. #u198546 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 2px 2px 2px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u198546_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u198547_div {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:95px;
  2785. height:35px;
  2786. background:inherit;
  2787. background-color:rgba(255, 255, 255, 0);
  2788. border:none;
  2789. border-top:0px;
  2790. border-right:0px;
  2791. border-bottom:0px;
  2792. border-radius:0px;
  2793. border-top-left-radius:0px;
  2794. border-bottom-left-radius:0px;
  2795. -moz-box-shadow:none;
  2796. -webkit-box-shadow:none;
  2797. box-shadow:none;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:14px;
  2802. line-height:25px;
  2803. }
  2804. #u198547 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:500px;
  2808. top:507px;
  2809. width:95px;
  2810. height:35px;
  2811. display:flex;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:14px;
  2816. line-height:25px;
  2817. }
  2818. #u198547 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:5px 10px 5px 0px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u198547_text {
  2826. border-width:0px;
  2827. white-space:nowrap;
  2828. text-transform:none;
  2829. }
  2830. #u198548_div {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:358px;
  2836. height:190px;
  2837. background:inherit;
  2838. background-color:rgba(255, 255, 255, 0);
  2839. border:none;
  2840. border-top:0px;
  2841. border-right:0px;
  2842. border-bottom:0px;
  2843. border-radius:0px;
  2844. border-top-left-radius:0px;
  2845. border-bottom-left-radius:0px;
  2846. -moz-box-shadow:none;
  2847. -webkit-box-shadow:none;
  2848. box-shadow:none;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:12px;
  2853. line-height:30px;
  2854. }
  2855. #u198548 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:500px;
  2859. top:546px;
  2860. width:358px;
  2861. height:190px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:12px;
  2867. line-height:30px;
  2868. }
  2869. #u198548 .text {
  2870. position:absolute;
  2871. align-self:flex-start;
  2872. padding:5px 10px 5px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u198548_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. }
  2881. #u198550_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:433px;
  2887. height:865px;
  2888. }
  2889. #u198550 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:912px;
  2893. top:0px;
  2894. width:433px;
  2895. height:865px;
  2896. display:flex;
  2897. }
  2898. #u198550 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 2px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u198550_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u198551_div {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:375px;
  2917. height:40px;
  2918. background:inherit;
  2919. background-color:rgba(255, 255, 255, 1);
  2920. box-sizing:border-box;
  2921. border-width:1px;
  2922. border-style:solid;
  2923. border-color:rgba(215, 215, 215, 1);
  2924. border-left:0px;
  2925. border-top:0px;
  2926. border-right:0px;
  2927. border-radius:0px;
  2928. border-bottom-right-radius:0px;
  2929. border-bottom-left-radius:0px;
  2930. -moz-box-shadow:none;
  2931. -webkit-box-shadow:none;
  2932. box-shadow:none;
  2933. }
  2934. #u198551 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:941px;
  2938. top:67px;
  2939. width:375px;
  2940. height:40px;
  2941. display:flex;
  2942. }
  2943. #u198551 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 2px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u198551_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u198552 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:0px;
  2962. height:0px;
  2963. }
  2964. #u198553_div {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:88px;
  2970. height:32px;
  2971. background:inherit;
  2972. background-color:rgba(255, 255, 255, 1);
  2973. box-sizing:border-box;
  2974. border-width:1px;
  2975. border-style:solid;
  2976. border-color:rgba(242, 242, 242, 1);
  2977. border-radius:33px;
  2978. -moz-box-shadow:none;
  2979. -webkit-box-shadow:none;
  2980. box-shadow:none;
  2981. }
  2982. #u198553 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:1221px;
  2986. top:71px;
  2987. width:88px;
  2988. height:32px;
  2989. display:flex;
  2990. }
  2991. #u198553 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u198553_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u198554 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:0px;
  3010. height:0px;
  3011. }
  3012. #u198555_img {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:18px;
  3018. height:18px;
  3019. }
  3020. #u198555 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:1284px;
  3024. top:78px;
  3025. width:18px;
  3026. height:18px;
  3027. display:flex;
  3028. }
  3029. #u198555 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 2px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u198555_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u198556_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:6px;
  3048. height:6px;
  3049. }
  3050. #u198556 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:1290px;
  3054. top:84px;
  3055. width:6px;
  3056. height:6px;
  3057. display:flex;
  3058. }
  3059. #u198556 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:2px 2px 2px 2px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u198556_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u198557 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:0px;
  3078. height:0px;
  3079. }
  3080. #u198558_img {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:5px;
  3086. height:5px;
  3087. }
  3088. #u198558 {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:1235px;
  3092. top:85px;
  3093. width:5px;
  3094. height:5px;
  3095. display:flex;
  3096. }
  3097. #u198558 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 2px 2px 2px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u198558_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. visibility:hidden;
  3109. }
  3110. #u198559_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:5px;
  3116. height:5px;
  3117. }
  3118. #u198559 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:1251px;
  3122. top:85px;
  3123. width:5px;
  3124. height:5px;
  3125. display:flex;
  3126. }
  3127. #u198559 .text {
  3128. position:absolute;
  3129. align-self:center;
  3130. padding:2px 2px 2px 2px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u198559_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. visibility:hidden;
  3139. }
  3140. #u198560_img {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:7px;
  3146. height:7px;
  3147. }
  3148. #u198560 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:1242px;
  3152. top:84px;
  3153. width:7px;
  3154. height:7px;
  3155. display:flex;
  3156. }
  3157. #u198560 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u198560_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u198561_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:19px;
  3176. height:2px;
  3177. }
  3178. #u198561 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:1259px;
  3182. top:87px;
  3183. width:18px;
  3184. height:1px;
  3185. display:flex;
  3186. -webkit-transform:rotate(90deg);
  3187. -moz-transform:rotate(90deg);
  3188. -ms-transform:rotate(90deg);
  3189. transform:rotate(90deg);
  3190. }
  3191. #u198561 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 2px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u198561_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u198562_img {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:375px;
  3210. height:44px;
  3211. }
  3212. #u198562 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:941px;
  3216. top:24px;
  3217. width:375px;
  3218. height:44px;
  3219. display:flex;
  3220. }
  3221. #u198562 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 2px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u198562_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u198563_div {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:375px;
  3240. height:50px;
  3241. background:inherit;
  3242. background-color:rgba(255, 255, 255, 1);
  3243. box-sizing:border-box;
  3244. border-width:1px;
  3245. border-style:solid;
  3246. border-color:rgba(242, 242, 242, 1);
  3247. border-radius:26px;
  3248. border-top-left-radius:0px;
  3249. border-top-right-radius:0px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. }
  3254. #u198563 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:941px;
  3258. top:788px;
  3259. width:375px;
  3260. height:50px;
  3261. display:flex;
  3262. }
  3263. #u198563 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 2px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u198563_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u198564 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:0px;
  3282. height:0px;
  3283. }
  3284. #u198565_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:24px;
  3290. height:24px;
  3291. }
  3292. #u198565 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:981px;
  3296. top:792px;
  3297. width:24px;
  3298. height:24px;
  3299. display:flex;
  3300. font-size:8px;
  3301. }
  3302. #u198565 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 2px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u198565_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. }
  3314. #u198566_div {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:25px;
  3320. height:17px;
  3321. background:inherit;
  3322. background-color:rgba(255, 255, 255, 0);
  3323. border:none;
  3324. border-radius:0px;
  3325. -moz-box-shadow:none;
  3326. -webkit-box-shadow:none;
  3327. box-shadow:none;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:12px;
  3332. }
  3333. #u198566 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:981px;
  3337. top:817px;
  3338. width:25px;
  3339. height:17px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. }
  3346. #u198566 .text {
  3347. position:absolute;
  3348. align-self:flex-start;
  3349. padding:0px 0px 0px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u198566_text {
  3354. border-width:0px;
  3355. white-space:nowrap;
  3356. text-transform:none;
  3357. }
  3358. #u198567 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:0px;
  3364. height:0px;
  3365. }
  3366. #u198568_img {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:24px;
  3372. height:24px;
  3373. }
  3374. #u198568 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:1251px;
  3378. top:794px;
  3379. width:24px;
  3380. height:24px;
  3381. display:flex;
  3382. font-size:8px;
  3383. }
  3384. #u198568 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 2px 2px 2px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u198568_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. }
  3396. #u198569_div {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:25px;
  3402. height:17px;
  3403. background:inherit;
  3404. background-color:rgba(255, 255, 255, 0);
  3405. border:none;
  3406. border-radius:0px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:12px;
  3414. }
  3415. #u198569 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:1251px;
  3419. top:819px;
  3420. width:25px;
  3421. height:17px;
  3422. display:flex;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:12px;
  3427. }
  3428. #u198569 .text {
  3429. position:absolute;
  3430. align-self:flex-start;
  3431. padding:0px 0px 0px 0px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u198569_text {
  3436. border-width:0px;
  3437. white-space:nowrap;
  3438. text-transform:none;
  3439. }
  3440. #u198570_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:375px;
  3446. height:681px;
  3447. background:inherit;
  3448. background-color:rgba(242, 242, 242, 0.462745098039216);
  3449. border:none;
  3450. border-radius:0px;
  3451. -moz-box-shadow:none;
  3452. -webkit-box-shadow:none;
  3453. box-shadow:none;
  3454. }
  3455. #u198570 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:941px;
  3459. top:107px;
  3460. width:375px;
  3461. height:681px;
  3462. display:flex;
  3463. }
  3464. #u198570 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u198570_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u198571 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:0px;
  3483. height:0px;
  3484. }
  3485. #u198572_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:24px;
  3491. height:24px;
  3492. }
  3493. #u198572 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:1163px;
  3497. top:792px;
  3498. width:24px;
  3499. height:24px;
  3500. display:flex;
  3501. font-size:8px;
  3502. }
  3503. #u198572 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 2px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u198572_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. }
  3515. #u198573_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:37px;
  3521. height:17px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 0);
  3524. border:none;
  3525. border-radius:0px;
  3526. -moz-box-shadow:none;
  3527. -webkit-box-shadow:none;
  3528. box-shadow:none;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:12px;
  3533. }
  3534. #u198573 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:1157px;
  3538. top:817px;
  3539. width:37px;
  3540. height:17px;
  3541. display:flex;
  3542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:12px;
  3546. }
  3547. #u198573 .text {
  3548. position:absolute;
  3549. align-self:flex-start;
  3550. padding:0px 0px 0px 0px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u198573_text {
  3555. border-width:0px;
  3556. white-space:nowrap;
  3557. text-transform:none;
  3558. }
  3559. #u198574 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:0px;
  3565. height:0px;
  3566. }
  3567. #u198575_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:24px;
  3573. height:24px;
  3574. }
  3575. #u198575 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:1069px;
  3579. top:792px;
  3580. width:24px;
  3581. height:24px;
  3582. display:flex;
  3583. font-size:8px;
  3584. }
  3585. #u198575 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u198575_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. }
  3597. #u198576_div {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:37px;
  3603. height:17px;
  3604. background:inherit;
  3605. background-color:rgba(255, 255, 255, 0);
  3606. border:none;
  3607. border-radius:0px;
  3608. -moz-box-shadow:none;
  3609. -webkit-box-shadow:none;
  3610. box-shadow:none;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:12px;
  3615. }
  3616. #u198576 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:1063px;
  3620. top:817px;
  3621. width:37px;
  3622. height:17px;
  3623. display:flex;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. }
  3629. #u198576 .text {
  3630. position:absolute;
  3631. align-self:flex-start;
  3632. padding:0px 0px 0px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u198576_text {
  3637. border-width:0px;
  3638. white-space:nowrap;
  3639. text-transform:none;
  3640. }
  3641. #u198577_div {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:375px;
  3647. height:40px;
  3648. background:inherit;
  3649. background-color:rgba(255, 255, 255, 1);
  3650. box-sizing:border-box;
  3651. border-width:1px;
  3652. border-style:solid;
  3653. border-color:rgba(215, 215, 215, 1);
  3654. border-left:0px;
  3655. border-top:0px;
  3656. border-right:0px;
  3657. border-radius:0px;
  3658. border-bottom-right-radius:0px;
  3659. border-bottom-left-radius:0px;
  3660. -moz-box-shadow:none;
  3661. -webkit-box-shadow:none;
  3662. box-shadow:none;
  3663. }
  3664. #u198577 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:941px;
  3668. top:67px;
  3669. width:375px;
  3670. height:40px;
  3671. display:flex;
  3672. }
  3673. #u198577 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u198577_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. visibility:hidden;
  3685. }
  3686. #u198578 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:0px;
  3692. height:0px;
  3693. }
  3694. #u198579_div {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:88px;
  3700. height:32px;
  3701. background:inherit;
  3702. background-color:rgba(255, 255, 255, 1);
  3703. box-sizing:border-box;
  3704. border-width:1px;
  3705. border-style:solid;
  3706. border-color:rgba(242, 242, 242, 1);
  3707. border-radius:33px;
  3708. -moz-box-shadow:none;
  3709. -webkit-box-shadow:none;
  3710. box-shadow:none;
  3711. }
  3712. #u198579 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:1221px;
  3716. top:71px;
  3717. width:88px;
  3718. height:32px;
  3719. display:flex;
  3720. }
  3721. #u198579 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 2px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u198579_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u198580 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:0px;
  3740. height:0px;
  3741. }
  3742. #u198581_img {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:18px;
  3748. height:18px;
  3749. }
  3750. #u198581 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:1284px;
  3754. top:78px;
  3755. width:18px;
  3756. height:18px;
  3757. display:flex;
  3758. }
  3759. #u198581 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 2px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u198581_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. visibility:hidden;
  3771. }
  3772. #u198582_img {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:6px;
  3778. height:6px;
  3779. }
  3780. #u198582 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:1290px;
  3784. top:84px;
  3785. width:6px;
  3786. height:6px;
  3787. display:flex;
  3788. }
  3789. #u198582 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 2px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u198582_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u198583 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:0px;
  3808. height:0px;
  3809. }
  3810. #u198584_img {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:5px;
  3816. height:5px;
  3817. }
  3818. #u198584 {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:1235px;
  3822. top:85px;
  3823. width:5px;
  3824. height:5px;
  3825. display:flex;
  3826. }
  3827. #u198584 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 2px 2px 2px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u198584_text {
  3835. border-width:0px;
  3836. word-wrap:break-word;
  3837. text-transform:none;
  3838. visibility:hidden;
  3839. }
  3840. #u198585_img {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:5px;
  3846. height:5px;
  3847. }
  3848. #u198585 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:1251px;
  3852. top:85px;
  3853. width:5px;
  3854. height:5px;
  3855. display:flex;
  3856. }
  3857. #u198585 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 2px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u198585_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u198586_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:7px;
  3876. height:7px;
  3877. }
  3878. #u198586 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:1242px;
  3882. top:84px;
  3883. width:7px;
  3884. height:7px;
  3885. display:flex;
  3886. }
  3887. #u198586 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 2px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u198586_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. visibility:hidden;
  3899. }
  3900. #u198587_img {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:19px;
  3906. height:2px;
  3907. }
  3908. #u198587 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:1259px;
  3912. top:87px;
  3913. width:18px;
  3914. height:1px;
  3915. display:flex;
  3916. -webkit-transform:rotate(90deg);
  3917. -moz-transform:rotate(90deg);
  3918. -ms-transform:rotate(90deg);
  3919. transform:rotate(90deg);
  3920. }
  3921. #u198587 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u198587_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u198588_div {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:97px;
  3940. height:22px;
  3941. background:inherit;
  3942. background-color:rgba(255, 255, 255, 0);
  3943. border:none;
  3944. border-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3949. font-weight:400;
  3950. font-style:normal;
  3951. font-size:16px;
  3952. color:#000000;
  3953. }
  3954. #u198588 {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:1080px;
  3958. top:78px;
  3959. width:97px;
  3960. height:22px;
  3961. display:flex;
  3962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3963. font-weight:400;
  3964. font-style:normal;
  3965. font-size:16px;
  3966. color:#000000;
  3967. }
  3968. #u198588 .text {
  3969. position:absolute;
  3970. align-self:flex-start;
  3971. padding:0px 0px 0px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u198588_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u198589_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:12px;
  3986. height:12px;
  3987. background:inherit;
  3988. background-color:rgba(255, 255, 255, 0);
  3989. box-sizing:border-box;
  3990. border-width:2px;
  3991. border-style:solid;
  3992. border-color:rgba(51, 51, 51, 1);
  3993. border-right:0px;
  3994. border-bottom:0px;
  3995. border-radius:0px;
  3996. border-top-right-radius:0px;
  3997. border-bottom-left-radius:0px;
  3998. -moz-box-shadow:none;
  3999. -webkit-box-shadow:none;
  4000. box-shadow:none;
  4001. }
  4002. #u198589 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:956px;
  4006. top:81px;
  4007. width:12px;
  4008. height:12px;
  4009. display:flex;
  4010. -webkit-transform:rotate(315deg);
  4011. -moz-transform:rotate(315deg);
  4012. -ms-transform:rotate(315deg);
  4013. transform:rotate(315deg);
  4014. }
  4015. #u198589 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 2px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u198589_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u198590_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:23px;
  4034. height:23px;
  4035. }
  4036. #u198590 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:983px;
  4040. top:76px;
  4041. width:23px;
  4042. height:23px;
  4043. display:flex;
  4044. }
  4045. #u198590 .text {
  4046. position:absolute;
  4047. align-self:center;
  4048. padding:2px 2px 2px 2px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u198590_text {
  4053. border-width:0px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. visibility:hidden;
  4057. }
  4058. #u198591_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:375px;
  4064. height:732px;
  4065. background:inherit;
  4066. background-color:rgba(242, 242, 242, 0.996078431372549);
  4067. border:none;
  4068. border-top:0px;
  4069. border-radius:23px;
  4070. border-top-left-radius:0px;
  4071. border-top-right-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. }
  4076. #u198591 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:941px;
  4080. top:107px;
  4081. width:375px;
  4082. height:732px;
  4083. display:flex;
  4084. }
  4085. #u198591 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 2px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u198591_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u198592 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:0px;
  4104. height:0px;
  4105. }
  4106. #u198593_div {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:375px;
  4112. height:254px;
  4113. background:inherit;
  4114. background-color:rgba(255, 255, 255, 1);
  4115. border:none;
  4116. border-radius:0px;
  4117. -moz-box-shadow:none;
  4118. -webkit-box-shadow:none;
  4119. box-shadow:none;
  4120. }
  4121. #u198593 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:941px;
  4125. top:497px;
  4126. width:375px;
  4127. height:254px;
  4128. display:flex;
  4129. }
  4130. #u198593 .text {
  4131. position:absolute;
  4132. align-self:center;
  4133. padding:2px 2px 2px 2px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u198593_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u198594_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:95px;
  4149. height:35px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 0);
  4152. border:none;
  4153. border-top:0px;
  4154. border-right:0px;
  4155. border-bottom:0px;
  4156. border-radius:0px;
  4157. border-top-left-radius:0px;
  4158. border-bottom-left-radius:0px;
  4159. -moz-box-shadow:none;
  4160. -webkit-box-shadow:none;
  4161. box-shadow:none;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:14px;
  4166. line-height:25px;
  4167. }
  4168. #u198594 {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:956px;
  4172. top:507px;
  4173. width:95px;
  4174. height:35px;
  4175. display:flex;
  4176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:14px;
  4180. line-height:25px;
  4181. }
  4182. #u198594 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:5px 10px 5px 0px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u198594_text {
  4190. border-width:0px;
  4191. white-space:nowrap;
  4192. text-transform:none;
  4193. }
  4194. #u198595_div {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:358px;
  4200. height:190px;
  4201. background:inherit;
  4202. background-color:rgba(255, 255, 255, 0);
  4203. border:none;
  4204. border-top:0px;
  4205. border-right:0px;
  4206. border-bottom:0px;
  4207. border-radius:0px;
  4208. border-top-left-radius:0px;
  4209. border-bottom-left-radius:0px;
  4210. -moz-box-shadow:none;
  4211. -webkit-box-shadow:none;
  4212. box-shadow:none;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:12px;
  4217. line-height:30px;
  4218. }
  4219. #u198595 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:956px;
  4223. top:546px;
  4224. width:358px;
  4225. height:190px;
  4226. display:flex;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. line-height:30px;
  4232. }
  4233. #u198595 .text {
  4234. position:absolute;
  4235. align-self:flex-start;
  4236. padding:5px 10px 5px 0px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u198595_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. }
  4245. #u198596 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:0px;
  4251. height:0px;
  4252. }
  4253. #u198597_div {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:375px;
  4259. height:380px;
  4260. background:inherit;
  4261. background-color:rgba(255, 255, 255, 1);
  4262. border:none;
  4263. border-radius:0px;
  4264. -moz-box-shadow:none;
  4265. -webkit-box-shadow:none;
  4266. box-shadow:none;
  4267. }
  4268. #u198597 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:941px;
  4272. top:107px;
  4273. width:375px;
  4274. height:380px;
  4275. display:flex;
  4276. }
  4277. #u198597 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 2px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u198597_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. visibility:hidden;
  4289. }
  4290. #u198598_div {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:353px;
  4296. height:160px;
  4297. background:inherit;
  4298. background-color:rgba(255, 255, 255, 0);
  4299. border:none;
  4300. border-top:0px;
  4301. border-right:0px;
  4302. border-bottom:0px;
  4303. border-radius:0px;
  4304. border-top-left-radius:0px;
  4305. border-bottom-left-radius:0px;
  4306. -moz-box-shadow:none;
  4307. -webkit-box-shadow:none;
  4308. box-shadow:none;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. line-height:30px;
  4313. }
  4314. #u198598 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:954px;
  4318. top:117px;
  4319. width:353px;
  4320. height:160px;
  4321. display:flex;
  4322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. line-height:30px;
  4326. }
  4327. #u198598 .text {
  4328. position:absolute;
  4329. align-self:flex-start;
  4330. padding:5px 10px 5px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u198598_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. }
  4339. #u198599_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:353px;
  4345. height:190px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 0);
  4348. border:none;
  4349. border-top:0px;
  4350. border-right:0px;
  4351. border-bottom:0px;
  4352. border-radius:0px;
  4353. border-top-left-radius:0px;
  4354. border-bottom-left-radius:0px;
  4355. -moz-box-shadow:none;
  4356. -webkit-box-shadow:none;
  4357. box-shadow:none;
  4358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. line-height:30px;
  4363. }
  4364. #u198599 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:954px;
  4368. top:292px;
  4369. width:353px;
  4370. height:190px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. line-height:30px;
  4377. }
  4378. #u198599 .text {
  4379. position:absolute;
  4380. align-self:flex-start;
  4381. padding:5px 10px 5px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u198599_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. }
  4390. #u198600_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:350px;
  4396. height:2px;
  4397. }
  4398. #u198600 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:954px;
  4402. top:283px;
  4403. width:349px;
  4404. height:1px;
  4405. display:flex;
  4406. }
  4407. #u198600 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u198600_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u198601_div {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:37px;
  4426. height:17px;
  4427. background:inherit;
  4428. background-color:rgba(255, 255, 255, 0);
  4429. border:none;
  4430. border-radius:0px;
  4431. -moz-box-shadow:none;
  4432. -webkit-box-shadow:none;
  4433. box-shadow:none;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:12px;
  4438. color:#1890FF;
  4439. }
  4440. #u198601 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:1268px;
  4444. top:117px;
  4445. width:37px;
  4446. height:17px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:12px;
  4452. color:#1890FF;
  4453. }
  4454. #u198601 .text {
  4455. position:absolute;
  4456. align-self:flex-start;
  4457. padding:0px 0px 0px 0px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u198601_text {
  4462. border-width:0px;
  4463. white-space:nowrap;
  4464. text-transform:none;
  4465. }
  4466. #u198602 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:0px;
  4472. height:0px;
  4473. }
  4474. #u198603_div {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:375px;
  4480. height:380px;
  4481. background:inherit;
  4482. background-color:rgba(255, 255, 255, 1);
  4483. border:none;
  4484. border-radius:0px;
  4485. -moz-box-shadow:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. }
  4489. #u198603 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:29px;
  4493. top:107px;
  4494. width:375px;
  4495. height:380px;
  4496. display:flex;
  4497. }
  4498. #u198603 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u198603_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u198604_div {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:353px;
  4517. height:160px;
  4518. background:inherit;
  4519. background-color:rgba(255, 255, 255, 0);
  4520. border:none;
  4521. border-top:0px;
  4522. border-right:0px;
  4523. border-bottom:0px;
  4524. border-radius:0px;
  4525. border-top-left-radius:0px;
  4526. border-bottom-left-radius:0px;
  4527. -moz-box-shadow:none;
  4528. -webkit-box-shadow:none;
  4529. box-shadow:none;
  4530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4531. font-weight:400;
  4532. font-style:normal;
  4533. line-height:30px;
  4534. }
  4535. #u198604 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:42px;
  4539. top:117px;
  4540. width:353px;
  4541. height:160px;
  4542. display:flex;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. line-height:30px;
  4547. }
  4548. #u198604 .text {
  4549. position:absolute;
  4550. align-self:flex-start;
  4551. padding:5px 10px 5px 0px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u198604_text {
  4556. border-width:0px;
  4557. word-wrap:break-word;
  4558. text-transform:none;
  4559. }
  4560. #u198605_div {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:353px;
  4566. height:190px;
  4567. background:inherit;
  4568. background-color:rgba(255, 255, 255, 0);
  4569. border:none;
  4570. border-top:0px;
  4571. border-right:0px;
  4572. border-bottom:0px;
  4573. border-radius:0px;
  4574. border-top-left-radius:0px;
  4575. border-bottom-left-radius:0px;
  4576. -moz-box-shadow:none;
  4577. -webkit-box-shadow:none;
  4578. box-shadow:none;
  4579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:12px;
  4583. line-height:30px;
  4584. }
  4585. #u198605 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:42px;
  4589. top:292px;
  4590. width:353px;
  4591. height:190px;
  4592. display:flex;
  4593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. line-height:30px;
  4598. }
  4599. #u198605 .text {
  4600. position:absolute;
  4601. align-self:flex-start;
  4602. padding:5px 10px 5px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u198605_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. }
  4611. #u198606_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:350px;
  4617. height:2px;
  4618. }
  4619. #u198606 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:42px;
  4623. top:283px;
  4624. width:349px;
  4625. height:1px;
  4626. display:flex;
  4627. }
  4628. #u198606 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 2px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u198606_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u198607_div {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:37px;
  4647. height:17px;
  4648. background:inherit;
  4649. background-color:rgba(255, 255, 255, 0);
  4650. border:none;
  4651. border-radius:0px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:12px;
  4659. color:#F59A23;
  4660. }
  4661. #u198607 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:356px;
  4665. top:117px;
  4666. width:37px;
  4667. height:17px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:12px;
  4673. color:#F59A23;
  4674. }
  4675. #u198607 .text {
  4676. position:absolute;
  4677. align-self:flex-start;
  4678. padding:0px 0px 0px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u198607_text {
  4683. border-width:0px;
  4684. white-space:nowrap;
  4685. text-transform:none;
  4686. }