styles.css 87 KB

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