styles.css 85 KB

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