styles.css 85 KB

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