styles.css 85 KB

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