styles.css 80 KB

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