styles.css 86 KB

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