styles.css 79 KB

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