styles.css 87 KB

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