styles.css 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:896px;
  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. #u33824_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u33824 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u33824 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u33824_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u33825_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. #u33825 {
  70. border-width:0px;
  71. position:absolute;
  72. left:29px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u33825 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u33825_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u33826 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u33827_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. #u33827 {
  118. border-width:0px;
  119. position:absolute;
  120. left:309px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u33827 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u33827_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u33828 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u33829_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u33829 {
  156. border-width:0px;
  157. position:absolute;
  158. left:372px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u33829 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u33829_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u33830_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u33830 {
  186. border-width:0px;
  187. position:absolute;
  188. left:378px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u33830 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u33830_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u33831 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u33832_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u33832 {
  224. border-width:0px;
  225. position:absolute;
  226. left:323px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u33832 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u33832_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u33833_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u33833 {
  254. border-width:0px;
  255. position:absolute;
  256. left:339px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u33833 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u33833_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u33834_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u33834 {
  284. border-width:0px;
  285. position:absolute;
  286. left:330px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u33834 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u33834_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u33835_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u33835 {
  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. #u33835 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u33835_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u33836_img {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:44px;
  346. }
  347. #u33836 {
  348. border-width:0px;
  349. position:absolute;
  350. left:29px;
  351. top:24px;
  352. width:375px;
  353. height:44px;
  354. display:flex;
  355. }
  356. #u33836 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:2px 2px 2px 2px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u33836_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u33837_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. #u33837 {
  390. border-width:0px;
  391. position:absolute;
  392. left:29px;
  393. top:788px;
  394. width:375px;
  395. height:50px;
  396. display:flex;
  397. }
  398. #u33837 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u33837_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. visibility:hidden;
  410. }
  411. #u33838 {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:0px;
  417. height:0px;
  418. }
  419. #u33839_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:24px;
  425. height:24px;
  426. }
  427. #u33839 {
  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. #u33839 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u33839_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u33840_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. #u33840 {
  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. #u33840 .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. #u33840_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u33841 {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:0px;
  499. height:0px;
  500. }
  501. #u33842_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:24px;
  507. height:24px;
  508. }
  509. #u33842 {
  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. #u33842 .text {
  520. position:absolute;
  521. align-self:center;
  522. padding:2px 2px 2px 2px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u33842_text {
  527. border-width:0px;
  528. word-wrap:break-word;
  529. text-transform:none;
  530. }
  531. #u33843_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. #u33843 {
  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. #u33843 .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. #u33843_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u33844_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. #u33844 {
  591. border-width:0px;
  592. position:absolute;
  593. left:29px;
  594. top:107px;
  595. width:375px;
  596. height:681px;
  597. display:flex;
  598. }
  599. #u33844 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:2px 2px 2px 2px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u33844_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. visibility:hidden;
  611. }
  612. #u33845 {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. height:0px;
  619. }
  620. #u33846_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:24px;
  626. height:24px;
  627. }
  628. #u33846 {
  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. #u33846 .text {
  639. position:absolute;
  640. align-self:center;
  641. padding:2px 2px 2px 2px;
  642. box-sizing:border-box;
  643. width:100%;
  644. }
  645. #u33846_text {
  646. border-width:0px;
  647. word-wrap:break-word;
  648. text-transform:none;
  649. }
  650. #u33847_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. #u33847 {
  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. #u33847 .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. #u33847_text {
  690. border-width:0px;
  691. white-space:nowrap;
  692. text-transform:none;
  693. }
  694. #u33848 {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:0px;
  700. height:0px;
  701. }
  702. #u33849_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u33849 {
  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. #u33849 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u33849_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u33850_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. #u33850 {
  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. #u33850 .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. #u33850_text {
  772. border-width:0px;
  773. white-space:nowrap;
  774. text-transform:none;
  775. }
  776. #u33851 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u33852_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:188px;
  790. height:35px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 1);
  793. border:none;
  794. border-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  799. font-weight:400;
  800. font-style:normal;
  801. font-size:14px;
  802. text-align:left;
  803. }
  804. #u33852 {
  805. border-width:0px;
  806. position:absolute;
  807. left:29px;
  808. top:70px;
  809. width:188px;
  810. height:35px;
  811. display:flex;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:14px;
  816. text-align:left;
  817. }
  818. #u33852 .text {
  819. position:absolute;
  820. align-self:center;
  821. padding:2px 2px 2px 40px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u33852_text {
  826. border-width:0px;
  827. word-wrap:break-word;
  828. text-transform:none;
  829. }
  830. #u33853_img {
  831. border-width:0px;
  832. position:absolute;
  833. left:0px;
  834. top:0px;
  835. width:11px;
  836. height:18px;
  837. }
  838. #u33853 {
  839. border-width:0px;
  840. position:absolute;
  841. left:40px;
  842. top:79px;
  843. width:11px;
  844. height:18px;
  845. display:flex;
  846. }
  847. #u33853 .text {
  848. position:absolute;
  849. align-self:center;
  850. padding:2px 2px 2px 2px;
  851. box-sizing:border-box;
  852. width:100%;
  853. }
  854. #u33853_text {
  855. border-width:0px;
  856. word-wrap:break-word;
  857. text-transform:none;
  858. visibility:hidden;
  859. }
  860. #u33854_img {
  861. border-width:0px;
  862. position:absolute;
  863. left:0px;
  864. top:0px;
  865. width:375px;
  866. height:734px;
  867. }
  868. #u33854 {
  869. border-width:0px;
  870. position:absolute;
  871. left:29px;
  872. top:106px;
  873. width:375px;
  874. height:734px;
  875. display:flex;
  876. }
  877. #u33854 .text {
  878. position:absolute;
  879. align-self:center;
  880. padding:2px 2px 2px 2px;
  881. box-sizing:border-box;
  882. width:100%;
  883. }
  884. #u33854_text {
  885. border-width:0px;
  886. word-wrap:break-word;
  887. text-transform:none;
  888. visibility:hidden;
  889. }
  890. #u33855_div {
  891. border-width:0px;
  892. position:absolute;
  893. left:0px;
  894. top:0px;
  895. width:375px;
  896. height:594px;
  897. background:inherit;
  898. background-color:rgba(255, 255, 255, 1);
  899. border:none;
  900. border-top:0px;
  901. border-radius:29px;
  902. border-top-left-radius:0px;
  903. border-top-right-radius:0px;
  904. -moz-box-shadow:none;
  905. -webkit-box-shadow:none;
  906. box-shadow:none;
  907. }
  908. #u33855 {
  909. border-width:0px;
  910. position:absolute;
  911. left:29px;
  912. top:246px;
  913. width:375px;
  914. height:594px;
  915. display:flex;
  916. }
  917. #u33855 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 2px 2px 2px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u33855_text {
  925. border-width:0px;
  926. word-wrap:break-word;
  927. text-transform:none;
  928. visibility:hidden;
  929. }
  930. #u33856 {
  931. border-width:0px;
  932. position:absolute;
  933. left:0px;
  934. top:0px;
  935. width:0px;
  936. height:0px;
  937. }
  938. #u33857_div {
  939. border-width:0px;
  940. position:absolute;
  941. left:0px;
  942. top:0px;
  943. width:100px;
  944. height:30px;
  945. background:inherit;
  946. background-color:rgba(255, 255, 255, 0);
  947. border:none;
  948. border-left:0px;
  949. border-top:0px;
  950. border-right:0px;
  951. border-radius:0px;
  952. border-bottom-right-radius:0px;
  953. border-bottom-left-radius:0px;
  954. -moz-box-shadow:none;
  955. -webkit-box-shadow:none;
  956. box-shadow:none;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:14px;
  961. line-height:30px;
  962. }
  963. #u33857 {
  964. border-width:0px;
  965. position:absolute;
  966. left:46px;
  967. top:260px;
  968. width:100px;
  969. height:30px;
  970. display:flex;
  971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  972. font-weight:400;
  973. font-style:normal;
  974. font-size:14px;
  975. line-height:30px;
  976. }
  977. #u33857 .text {
  978. position:absolute;
  979. align-self:flex-start;
  980. padding:0px 0px 0px 0px;
  981. box-sizing:border-box;
  982. width:100%;
  983. }
  984. #u33857_text {
  985. border-width:0px;
  986. word-wrap:break-word;
  987. text-transform:none;
  988. }
  989. #u33858_div {
  990. border-width:0px;
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:132px;
  995. height:20px;
  996. background:inherit;
  997. background-color:rgba(255, 255, 255, 0);
  998. border:none;
  999. border-left:0px;
  1000. border-top:0px;
  1001. border-right:0px;
  1002. border-radius:0px;
  1003. border-bottom-right-radius:0px;
  1004. border-bottom-left-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:12px;
  1012. color:#7F7F7F;
  1013. line-height:20px;
  1014. }
  1015. #u33858 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:46px;
  1019. top:290px;
  1020. width:132px;
  1021. height:20px;
  1022. display:flex;
  1023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1024. font-weight:400;
  1025. font-style:normal;
  1026. font-size:12px;
  1027. color:#7F7F7F;
  1028. line-height:20px;
  1029. }
  1030. #u33858 .text {
  1031. position:absolute;
  1032. align-self:flex-start;
  1033. padding:0px 0px 0px 0px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u33858_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. }
  1042. #u33859_div {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:85px;
  1048. height:30px;
  1049. background:inherit;
  1050. background-color:rgba(255, 255, 255, 0);
  1051. border:none;
  1052. border-left:0px;
  1053. border-top:0px;
  1054. border-right:0px;
  1055. border-radius:0px;
  1056. border-bottom-right-radius:0px;
  1057. border-bottom-left-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1062. font-style:normal;
  1063. text-align:right;
  1064. line-height:30px;
  1065. }
  1066. #u33859 {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:292px;
  1070. top:258px;
  1071. width:85px;
  1072. height:30px;
  1073. display:flex;
  1074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1075. font-style:normal;
  1076. text-align:right;
  1077. line-height:30px;
  1078. }
  1079. #u33859 .text {
  1080. position:absolute;
  1081. align-self:flex-start;
  1082. padding:0px 0px 0px 0px;
  1083. box-sizing:border-box;
  1084. width:100%;
  1085. }
  1086. #u33859_text {
  1087. border-width:0px;
  1088. word-wrap:break-word;
  1089. text-transform:none;
  1090. }
  1091. #u33860_img {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:0px;
  1095. top:0px;
  1096. width:348px;
  1097. height:2px;
  1098. }
  1099. #u33860 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:46px;
  1103. top:320px;
  1104. width:347px;
  1105. height:1px;
  1106. display:flex;
  1107. }
  1108. #u33860 .text {
  1109. position:absolute;
  1110. align-self:center;
  1111. padding:2px 2px 2px 2px;
  1112. box-sizing:border-box;
  1113. width:100%;
  1114. }
  1115. #u33860_text {
  1116. border-width:0px;
  1117. word-wrap:break-word;
  1118. text-transform:none;
  1119. visibility:hidden;
  1120. }
  1121. #u33861_div {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:0px;
  1126. width:77px;
  1127. height:20px;
  1128. background:inherit;
  1129. background-color:rgba(255, 255, 255, 0);
  1130. border:none;
  1131. border-left:0px;
  1132. border-top:0px;
  1133. border-right:0px;
  1134. border-radius:0px;
  1135. border-bottom-right-radius:0px;
  1136. border-bottom-left-radius:0px;
  1137. -moz-box-shadow:none;
  1138. -webkit-box-shadow:none;
  1139. box-shadow:none;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:11px;
  1144. color:#AAAAAA;
  1145. line-height:20px;
  1146. }
  1147. #u33861 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:300px;
  1151. top:293px;
  1152. width:77px;
  1153. height:20px;
  1154. display:flex;
  1155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1156. font-weight:400;
  1157. font-style:normal;
  1158. font-size:11px;
  1159. color:#AAAAAA;
  1160. line-height:20px;
  1161. }
  1162. #u33861 .text {
  1163. position:absolute;
  1164. align-self:flex-start;
  1165. padding:0px 0px 0px 0px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u33861_text {
  1170. border-width:0px;
  1171. white-space:nowrap;
  1172. text-transform:none;
  1173. }
  1174. #u33862_div {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:375px;
  1180. height:100px;
  1181. background:inherit;
  1182. background-color:rgba(89, 179, 141, 1);
  1183. border:none;
  1184. border-radius:0px;
  1185. -moz-box-shadow:none;
  1186. -webkit-box-shadow:none;
  1187. box-shadow:none;
  1188. }
  1189. #u33862 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:29px;
  1193. top:106px;
  1194. width:375px;
  1195. height:100px;
  1196. display:flex;
  1197. }
  1198. #u33862 .text {
  1199. position:absolute;
  1200. align-self:center;
  1201. padding:2px 2px 2px 2px;
  1202. box-sizing:border-box;
  1203. width:100%;
  1204. }
  1205. #u33862_text {
  1206. border-width:0px;
  1207. word-wrap:break-word;
  1208. text-transform:none;
  1209. visibility:hidden;
  1210. }
  1211. #u33863_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:37px;
  1217. height:30px;
  1218. background:inherit;
  1219. background-color:rgba(255, 255, 255, 0);
  1220. border:none;
  1221. border-left:0px;
  1222. border-top:0px;
  1223. border-right:0px;
  1224. border-radius:0px;
  1225. border-bottom-right-radius:0px;
  1226. border-bottom-left-radius:0px;
  1227. -moz-box-shadow:none;
  1228. -webkit-box-shadow:none;
  1229. box-shadow:none;
  1230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1231. font-weight:500;
  1232. font-style:normal;
  1233. font-size:18px;
  1234. color:#FFFFFF;
  1235. line-height:30px;
  1236. }
  1237. #u33863 {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:51px;
  1241. top:126px;
  1242. width:37px;
  1243. height:30px;
  1244. display:flex;
  1245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1246. font-weight:500;
  1247. font-style:normal;
  1248. font-size:18px;
  1249. color:#FFFFFF;
  1250. line-height:30px;
  1251. }
  1252. #u33863 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u33863_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u33864_div {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:119px;
  1270. height:20px;
  1271. background:inherit;
  1272. background-color:rgba(255, 255, 255, 0);
  1273. border:none;
  1274. border-left:0px;
  1275. border-top:0px;
  1276. border-right:0px;
  1277. border-radius:0px;
  1278. border-bottom-right-radius:0px;
  1279. border-bottom-left-radius:0px;
  1280. -moz-box-shadow:none;
  1281. -webkit-box-shadow:none;
  1282. box-shadow:none;
  1283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1284. font-weight:400;
  1285. font-style:normal;
  1286. font-size:12px;
  1287. color:#FFFFFF;
  1288. line-height:20px;
  1289. }
  1290. #u33864 {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:51px;
  1294. top:176px;
  1295. width:119px;
  1296. height:20px;
  1297. display:flex;
  1298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1299. font-weight:400;
  1300. font-style:normal;
  1301. font-size:12px;
  1302. color:#FFFFFF;
  1303. line-height:20px;
  1304. }
  1305. #u33864 .text {
  1306. position:absolute;
  1307. align-self:flex-start;
  1308. padding:0px 0px 0px 0px;
  1309. box-sizing:border-box;
  1310. width:100%;
  1311. }
  1312. #u33864_text {
  1313. border-width:0px;
  1314. white-space:nowrap;
  1315. text-transform:none;
  1316. }
  1317. #u33865_div {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:121px;
  1323. height:20px;
  1324. background:inherit;
  1325. background-color:rgba(255, 255, 255, 0);
  1326. border:none;
  1327. border-left:0px;
  1328. border-top:0px;
  1329. border-right:0px;
  1330. border-radius:0px;
  1331. border-bottom-right-radius:0px;
  1332. border-bottom-left-radius:0px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:12px;
  1340. color:#FFFFFF;
  1341. line-height:20px;
  1342. }
  1343. #u33865 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:243px;
  1347. top:176px;
  1348. width:121px;
  1349. height:20px;
  1350. display:flex;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. font-size:12px;
  1355. color:#FFFFFF;
  1356. line-height:20px;
  1357. }
  1358. #u33865 .text {
  1359. position:absolute;
  1360. align-self:flex-start;
  1361. padding:0px 0px 0px 0px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u33865_text {
  1366. border-width:0px;
  1367. white-space:nowrap;
  1368. text-transform:none;
  1369. }
  1370. #u33866 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:0px;
  1376. height:0px;
  1377. }
  1378. #u33867_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:375px;
  1384. height:40px;
  1385. background:inherit;
  1386. background-color:rgba(242, 242, 242, 1);
  1387. border:none;
  1388. border-left:0px;
  1389. border-top:0px;
  1390. border-right:0px;
  1391. border-radius:0px;
  1392. border-bottom-right-radius:0px;
  1393. border-bottom-left-radius:0px;
  1394. -moz-box-shadow:none;
  1395. -webkit-box-shadow:none;
  1396. box-shadow:none;
  1397. }
  1398. #u33867 {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:29px;
  1402. top:206px;
  1403. width:375px;
  1404. height:40px;
  1405. display:flex;
  1406. }
  1407. #u33867 .text {
  1408. position:absolute;
  1409. align-self:center;
  1410. padding:2px 2px 2px 2px;
  1411. box-sizing:border-box;
  1412. width:100%;
  1413. }
  1414. #u33867_text {
  1415. border-width:0px;
  1416. word-wrap:break-word;
  1417. text-transform:none;
  1418. visibility:hidden;
  1419. }
  1420. #u33868_input {
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:100px;
  1425. height:26px;
  1426. padding:2px 2px 2px 2px;
  1427. font-family:'ArialMT', 'Arial', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:14px;
  1431. letter-spacing:normal;
  1432. color:#000000;
  1433. vertical-align:none;
  1434. text-align:left;
  1435. text-transform:none;
  1436. background-color:transparent;
  1437. border-color:transparent;
  1438. }
  1439. #u33868_input.disabled {
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:100px;
  1444. height:26px;
  1445. padding:2px 2px 2px 2px;
  1446. font-family:'ArialMT', 'Arial', sans-serif;
  1447. font-weight:400;
  1448. font-style:normal;
  1449. font-size:14px;
  1450. letter-spacing:normal;
  1451. color:#000000;
  1452. vertical-align:none;
  1453. text-align:left;
  1454. text-transform:none;
  1455. background-color:transparent;
  1456. border-color:transparent;
  1457. }
  1458. #u33868_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:100px;
  1464. height:26px;
  1465. background:inherit;
  1466. background-color:rgba(242, 242, 242, 1);
  1467. border:none;
  1468. border-radius:0px;
  1469. -moz-box-shadow:none;
  1470. -webkit-box-shadow:none;
  1471. box-shadow:none;
  1472. font-size:14px;
  1473. }
  1474. #u33868 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:39px;
  1478. top:212px;
  1479. width:100px;
  1480. height:26px;
  1481. display:flex;
  1482. font-size:14px;
  1483. }
  1484. #u33868 .text {
  1485. position:absolute;
  1486. align-self:flex-start;
  1487. padding:2px 2px 2px 2px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u33868_div.disabled {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:100px;
  1497. height:26px;
  1498. background:inherit;
  1499. background-color:rgba(240, 240, 240, 1);
  1500. border:none;
  1501. border-radius:0px;
  1502. -moz-box-shadow:none;
  1503. -webkit-box-shadow:none;
  1504. box-shadow:none;
  1505. font-size:14px;
  1506. }
  1507. #u33868.disabled {
  1508. }
  1509. .u33868_input_option {
  1510. font-size:14px;
  1511. }
  1512. #u33869_input {
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:100px;
  1517. height:26px;
  1518. padding:2px 2px 2px 2px;
  1519. font-family:'ArialMT', 'Arial', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. letter-spacing:normal;
  1524. color:#000000;
  1525. vertical-align:none;
  1526. text-align:left;
  1527. text-transform:none;
  1528. background-color:transparent;
  1529. border-color:transparent;
  1530. }
  1531. #u33869_input.disabled {
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:100px;
  1536. height:26px;
  1537. padding:2px 2px 2px 2px;
  1538. font-family:'ArialMT', 'Arial', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:14px;
  1542. letter-spacing:normal;
  1543. color:#000000;
  1544. vertical-align:none;
  1545. text-align:left;
  1546. text-transform:none;
  1547. background-color:transparent;
  1548. border-color:transparent;
  1549. }
  1550. #u33869_div {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:100px;
  1556. height:26px;
  1557. background:inherit;
  1558. background-color:rgba(242, 242, 242, 1);
  1559. border:none;
  1560. border-radius:0px;
  1561. -moz-box-shadow:none;
  1562. -webkit-box-shadow:none;
  1563. box-shadow:none;
  1564. font-size:14px;
  1565. }
  1566. #u33869 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:170px;
  1570. top:212px;
  1571. width:100px;
  1572. height:26px;
  1573. display:flex;
  1574. font-size:14px;
  1575. }
  1576. #u33869 .text {
  1577. position:absolute;
  1578. align-self:flex-start;
  1579. padding:2px 2px 2px 2px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u33869_div.disabled {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:100px;
  1589. height:26px;
  1590. background:inherit;
  1591. background-color:rgba(240, 240, 240, 1);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-size:14px;
  1598. }
  1599. #u33869.disabled {
  1600. }
  1601. .u33869_input_option {
  1602. font-size:14px;
  1603. }
  1604. #u33870_input {
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:100px;
  1609. height:26px;
  1610. padding:2px 2px 2px 2px;
  1611. font-family:'ArialMT', 'Arial', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. letter-spacing:normal;
  1616. color:#000000;
  1617. vertical-align:none;
  1618. text-align:left;
  1619. text-transform:none;
  1620. background-color:transparent;
  1621. border-color:transparent;
  1622. }
  1623. #u33870_input.disabled {
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:100px;
  1628. height:26px;
  1629. padding:2px 2px 2px 2px;
  1630. font-family:'ArialMT', 'Arial', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. font-size:14px;
  1634. letter-spacing:normal;
  1635. color:#000000;
  1636. vertical-align:none;
  1637. text-align:left;
  1638. text-transform:none;
  1639. background-color:transparent;
  1640. border-color:transparent;
  1641. }
  1642. #u33870_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:100px;
  1648. height:26px;
  1649. background:inherit;
  1650. background-color:rgba(242, 242, 242, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. font-size:14px;
  1657. }
  1658. #u33870 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:293px;
  1662. top:212px;
  1663. width:100px;
  1664. height:26px;
  1665. display:flex;
  1666. font-size:14px;
  1667. }
  1668. #u33870 .text {
  1669. position:absolute;
  1670. align-self:flex-start;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u33870_div.disabled {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:100px;
  1681. height:26px;
  1682. background:inherit;
  1683. background-color:rgba(240, 240, 240, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-size:14px;
  1690. }
  1691. #u33870.disabled {
  1692. }
  1693. .u33870_input_option {
  1694. font-size:14px;
  1695. }
  1696. #u33871 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:0px;
  1702. height:0px;
  1703. }
  1704. #u33872_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:100px;
  1710. height:30px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border:none;
  1714. border-left:0px;
  1715. border-top:0px;
  1716. border-right:0px;
  1717. border-radius:0px;
  1718. border-bottom-right-radius:0px;
  1719. border-bottom-left-radius:0px;
  1720. -moz-box-shadow:none;
  1721. -webkit-box-shadow:none;
  1722. box-shadow:none;
  1723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1724. font-weight:400;
  1725. font-style:normal;
  1726. font-size:14px;
  1727. line-height:30px;
  1728. }
  1729. #u33872 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:46px;
  1733. top:332px;
  1734. width:100px;
  1735. height:30px;
  1736. display:flex;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:14px;
  1741. line-height:30px;
  1742. }
  1743. #u33872 .text {
  1744. position:absolute;
  1745. align-self:flex-start;
  1746. padding:0px 0px 0px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u33872_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. }
  1755. #u33873_div {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:132px;
  1761. height:20px;
  1762. background:inherit;
  1763. background-color:rgba(255, 255, 255, 0);
  1764. border:none;
  1765. border-left:0px;
  1766. border-top:0px;
  1767. border-right:0px;
  1768. border-radius:0px;
  1769. border-bottom-right-radius:0px;
  1770. border-bottom-left-radius:0px;
  1771. -moz-box-shadow:none;
  1772. -webkit-box-shadow:none;
  1773. box-shadow:none;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:12px;
  1778. color:#7F7F7F;
  1779. line-height:20px;
  1780. }
  1781. #u33873 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:46px;
  1785. top:362px;
  1786. width:132px;
  1787. height:20px;
  1788. display:flex;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:12px;
  1793. color:#7F7F7F;
  1794. line-height:20px;
  1795. }
  1796. #u33873 .text {
  1797. position:absolute;
  1798. align-self:flex-start;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u33873_text {
  1804. border-width:0px;
  1805. word-wrap:break-word;
  1806. text-transform:none;
  1807. }
  1808. #u33874_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:85px;
  1814. height:30px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 0);
  1817. border:none;
  1818. border-left:0px;
  1819. border-top:0px;
  1820. border-right:0px;
  1821. border-radius:0px;
  1822. border-bottom-right-radius:0px;
  1823. border-bottom-left-radius:0px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1828. font-style:normal;
  1829. text-align:right;
  1830. line-height:30px;
  1831. }
  1832. #u33874 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:292px;
  1836. top:330px;
  1837. width:85px;
  1838. height:30px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1841. font-style:normal;
  1842. text-align:right;
  1843. line-height:30px;
  1844. }
  1845. #u33874 .text {
  1846. position:absolute;
  1847. align-self:flex-start;
  1848. padding:0px 0px 0px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u33874_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u33875_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:348px;
  1863. height:2px;
  1864. }
  1865. #u33875 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:46px;
  1869. top:392px;
  1870. width:347px;
  1871. height:1px;
  1872. display:flex;
  1873. }
  1874. #u33875 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 2px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u33875_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. visibility:hidden;
  1886. }
  1887. #u33876_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:77px;
  1893. height:20px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 0);
  1896. border:none;
  1897. border-left:0px;
  1898. border-top:0px;
  1899. border-right:0px;
  1900. border-radius:0px;
  1901. border-bottom-right-radius:0px;
  1902. border-bottom-left-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:11px;
  1910. color:#AAAAAA;
  1911. line-height:20px;
  1912. }
  1913. #u33876 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:300px;
  1917. top:365px;
  1918. width:77px;
  1919. height:20px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. font-size:11px;
  1925. color:#AAAAAA;
  1926. line-height:20px;
  1927. }
  1928. #u33876 .text {
  1929. position:absolute;
  1930. align-self:flex-start;
  1931. padding:0px 0px 0px 0px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u33876_text {
  1936. border-width:0px;
  1937. white-space:nowrap;
  1938. text-transform:none;
  1939. }
  1940. #u33877 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:0px;
  1946. height:0px;
  1947. }
  1948. #u33878_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:100px;
  1954. height:30px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 255, 0);
  1957. border:none;
  1958. border-left:0px;
  1959. border-top:0px;
  1960. border-right:0px;
  1961. border-radius:0px;
  1962. border-bottom-right-radius:0px;
  1963. border-bottom-left-radius:0px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:14px;
  1971. line-height:30px;
  1972. }
  1973. #u33878 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:46px;
  1977. top:405px;
  1978. width:100px;
  1979. height:30px;
  1980. display:flex;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:14px;
  1985. line-height:30px;
  1986. }
  1987. #u33878 .text {
  1988. position:absolute;
  1989. align-self:flex-start;
  1990. padding:0px 0px 0px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u33878_text {
  1995. border-width:0px;
  1996. word-wrap:break-word;
  1997. text-transform:none;
  1998. }
  1999. #u33879_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:132px;
  2005. height:20px;
  2006. background:inherit;
  2007. background-color:rgba(255, 255, 255, 0);
  2008. border:none;
  2009. border-left:0px;
  2010. border-top:0px;
  2011. border-right:0px;
  2012. border-radius:0px;
  2013. border-bottom-right-radius:0px;
  2014. border-bottom-left-radius:0px;
  2015. -moz-box-shadow:none;
  2016. -webkit-box-shadow:none;
  2017. box-shadow:none;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:12px;
  2022. color:#7F7F7F;
  2023. line-height:20px;
  2024. }
  2025. #u33879 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:46px;
  2029. top:435px;
  2030. width:132px;
  2031. height:20px;
  2032. display:flex;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:12px;
  2037. color:#7F7F7F;
  2038. line-height:20px;
  2039. }
  2040. #u33879 .text {
  2041. position:absolute;
  2042. align-self:flex-start;
  2043. padding:0px 0px 0px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u33879_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u33880_div {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:85px;
  2058. height:30px;
  2059. background:inherit;
  2060. background-color:rgba(255, 255, 255, 0);
  2061. border:none;
  2062. border-left:0px;
  2063. border-top:0px;
  2064. border-right:0px;
  2065. border-radius:0px;
  2066. border-bottom-right-radius:0px;
  2067. border-bottom-left-radius:0px;
  2068. -moz-box-shadow:none;
  2069. -webkit-box-shadow:none;
  2070. box-shadow:none;
  2071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2072. font-style:normal;
  2073. text-align:right;
  2074. line-height:30px;
  2075. }
  2076. #u33880 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:292px;
  2080. top:403px;
  2081. width:85px;
  2082. height:30px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2085. font-style:normal;
  2086. text-align:right;
  2087. line-height:30px;
  2088. }
  2089. #u33880 .text {
  2090. position:absolute;
  2091. align-self:flex-start;
  2092. padding:0px 0px 0px 0px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u33880_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. }
  2101. #u33881_img {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:348px;
  2107. height:2px;
  2108. }
  2109. #u33881 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:46px;
  2113. top:465px;
  2114. width:347px;
  2115. height:1px;
  2116. display:flex;
  2117. }
  2118. #u33881 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u33881_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. visibility:hidden;
  2130. }
  2131. #u33882_div {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:77px;
  2137. height:20px;
  2138. background:inherit;
  2139. background-color:rgba(255, 255, 255, 0);
  2140. border:none;
  2141. border-left:0px;
  2142. border-top:0px;
  2143. border-right:0px;
  2144. border-radius:0px;
  2145. border-bottom-right-radius:0px;
  2146. border-bottom-left-radius:0px;
  2147. -moz-box-shadow:none;
  2148. -webkit-box-shadow:none;
  2149. box-shadow:none;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:11px;
  2154. color:#AAAAAA;
  2155. line-height:20px;
  2156. }
  2157. #u33882 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:300px;
  2161. top:438px;
  2162. width:77px;
  2163. height:20px;
  2164. display:flex;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:11px;
  2169. color:#AAAAAA;
  2170. line-height:20px;
  2171. }
  2172. #u33882 .text {
  2173. position:absolute;
  2174. align-self:flex-start;
  2175. padding:0px 0px 0px 0px;
  2176. box-sizing:border-box;
  2177. width:100%;
  2178. }
  2179. #u33882_text {
  2180. border-width:0px;
  2181. white-space:nowrap;
  2182. text-transform:none;
  2183. }
  2184. #u33883 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:0px;
  2190. height:0px;
  2191. }
  2192. #u33884_div {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:100px;
  2198. height:30px;
  2199. background:inherit;
  2200. background-color:rgba(255, 255, 255, 0);
  2201. border:none;
  2202. border-left:0px;
  2203. border-top:0px;
  2204. border-right:0px;
  2205. border-radius:0px;
  2206. border-bottom-right-radius:0px;
  2207. border-bottom-left-radius:0px;
  2208. -moz-box-shadow:none;
  2209. -webkit-box-shadow:none;
  2210. box-shadow:none;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:14px;
  2215. line-height:30px;
  2216. }
  2217. #u33884 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:46px;
  2221. top:478px;
  2222. width:100px;
  2223. height:30px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:14px;
  2229. line-height:30px;
  2230. }
  2231. #u33884 .text {
  2232. position:absolute;
  2233. align-self:flex-start;
  2234. padding:0px 0px 0px 0px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u33884_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u33885_div {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:132px;
  2249. height:20px;
  2250. background:inherit;
  2251. background-color:rgba(255, 255, 255, 0);
  2252. border:none;
  2253. border-left:0px;
  2254. border-top:0px;
  2255. border-right:0px;
  2256. border-radius:0px;
  2257. border-bottom-right-radius:0px;
  2258. border-bottom-left-radius:0px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:12px;
  2266. color:#7F7F7F;
  2267. line-height:20px;
  2268. }
  2269. #u33885 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:46px;
  2273. top:508px;
  2274. width:132px;
  2275. height:20px;
  2276. display:flex;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. color:#7F7F7F;
  2282. line-height:20px;
  2283. }
  2284. #u33885 .text {
  2285. position:absolute;
  2286. align-self:flex-start;
  2287. padding:0px 0px 0px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u33885_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u33886_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:85px;
  2302. height:30px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-left:0px;
  2307. border-top:0px;
  2308. border-right:0px;
  2309. border-radius:0px;
  2310. border-bottom-right-radius:0px;
  2311. border-bottom-left-radius:0px;
  2312. -moz-box-shadow:none;
  2313. -webkit-box-shadow:none;
  2314. box-shadow:none;
  2315. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2316. font-style:normal;
  2317. text-align:right;
  2318. line-height:30px;
  2319. }
  2320. #u33886 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:292px;
  2324. top:476px;
  2325. width:85px;
  2326. height:30px;
  2327. display:flex;
  2328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2329. font-style:normal;
  2330. text-align:right;
  2331. line-height:30px;
  2332. }
  2333. #u33886 .text {
  2334. position:absolute;
  2335. align-self:flex-start;
  2336. padding:0px 0px 0px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u33886_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u33887_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:348px;
  2351. height:2px;
  2352. }
  2353. #u33887 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:46px;
  2357. top:538px;
  2358. width:347px;
  2359. height:1px;
  2360. display:flex;
  2361. }
  2362. #u33887 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 2px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u33887_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u33888_div {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:77px;
  2381. height:20px;
  2382. background:inherit;
  2383. background-color:rgba(255, 255, 255, 0);
  2384. border:none;
  2385. border-left:0px;
  2386. border-top:0px;
  2387. border-right:0px;
  2388. border-radius:0px;
  2389. border-bottom-right-radius:0px;
  2390. border-bottom-left-radius:0px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:11px;
  2398. color:#AAAAAA;
  2399. line-height:20px;
  2400. }
  2401. #u33888 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:300px;
  2405. top:511px;
  2406. width:77px;
  2407. height:20px;
  2408. display:flex;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:11px;
  2413. color:#AAAAAA;
  2414. line-height:20px;
  2415. }
  2416. #u33888 .text {
  2417. position:absolute;
  2418. align-self:flex-start;
  2419. padding:0px 0px 0px 0px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u33888_text {
  2424. border-width:0px;
  2425. white-space:nowrap;
  2426. text-transform:none;
  2427. }
  2428. #u33890_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:433px;
  2434. height:865px;
  2435. }
  2436. #u33890 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:463px;
  2440. top:0px;
  2441. width:433px;
  2442. height:865px;
  2443. display:flex;
  2444. }
  2445. #u33890 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u33890_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. visibility:hidden;
  2457. }
  2458. #u33891_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:375px;
  2464. height:40px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 1);
  2467. border:none;
  2468. border-left:0px;
  2469. border-top:0px;
  2470. border-right:0px;
  2471. border-radius:0px;
  2472. border-bottom-right-radius:0px;
  2473. border-bottom-left-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. }
  2478. #u33891 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:492px;
  2482. top:67px;
  2483. width:375px;
  2484. height:40px;
  2485. display:flex;
  2486. }
  2487. #u33891 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:2px 2px 2px 2px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u33891_text {
  2495. border-width:0px;
  2496. word-wrap:break-word;
  2497. text-transform:none;
  2498. visibility:hidden;
  2499. }
  2500. #u33892 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:0px;
  2506. height:0px;
  2507. }
  2508. #u33893_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:88px;
  2514. height:32px;
  2515. background:inherit;
  2516. background-color:rgba(255, 255, 255, 1);
  2517. box-sizing:border-box;
  2518. border-width:1px;
  2519. border-style:solid;
  2520. border-color:rgba(242, 242, 242, 1);
  2521. border-radius:33px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. }
  2526. #u33893 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:772px;
  2530. top:71px;
  2531. width:88px;
  2532. height:32px;
  2533. display:flex;
  2534. }
  2535. #u33893 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u33893_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u33894 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:0px;
  2554. height:0px;
  2555. }
  2556. #u33895_img {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:18px;
  2562. height:18px;
  2563. }
  2564. #u33895 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:835px;
  2568. top:78px;
  2569. width:18px;
  2570. height:18px;
  2571. display:flex;
  2572. }
  2573. #u33895 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 2px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u33895_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u33896_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:6px;
  2592. height:6px;
  2593. }
  2594. #u33896 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:841px;
  2598. top:84px;
  2599. width:6px;
  2600. height:6px;
  2601. display:flex;
  2602. }
  2603. #u33896 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 2px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u33896_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u33897 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:0px;
  2622. height:0px;
  2623. }
  2624. #u33898_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:5px;
  2630. height:5px;
  2631. }
  2632. #u33898 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:786px;
  2636. top:85px;
  2637. width:5px;
  2638. height:5px;
  2639. display:flex;
  2640. }
  2641. #u33898 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 2px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u33898_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. visibility:hidden;
  2653. }
  2654. #u33899_img {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:5px;
  2660. height:5px;
  2661. }
  2662. #u33899 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:802px;
  2666. top:85px;
  2667. width:5px;
  2668. height:5px;
  2669. display:flex;
  2670. }
  2671. #u33899 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 2px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u33899_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. visibility:hidden;
  2683. }
  2684. #u33900_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:7px;
  2690. height:7px;
  2691. }
  2692. #u33900 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:793px;
  2696. top:84px;
  2697. width:7px;
  2698. height:7px;
  2699. display:flex;
  2700. }
  2701. #u33900 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 2px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u33900_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u33901_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:19px;
  2720. height:2px;
  2721. }
  2722. #u33901 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:810px;
  2726. top:87px;
  2727. width:18px;
  2728. height:1px;
  2729. display:flex;
  2730. -webkit-transform:rotate(90deg);
  2731. -moz-transform:rotate(90deg);
  2732. -ms-transform:rotate(90deg);
  2733. transform:rotate(90deg);
  2734. }
  2735. #u33901 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 2px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u33901_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. visibility:hidden;
  2747. }
  2748. #u33902_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:375px;
  2754. height:44px;
  2755. }
  2756. #u33902 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:492px;
  2760. top:24px;
  2761. width:375px;
  2762. height:44px;
  2763. display:flex;
  2764. }
  2765. #u33902 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 2px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u33902_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u33903_div {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:375px;
  2784. height:50px;
  2785. background:inherit;
  2786. background-color:rgba(255, 255, 255, 1);
  2787. box-sizing:border-box;
  2788. border-width:1px;
  2789. border-style:solid;
  2790. border-color:rgba(242, 242, 242, 1);
  2791. border-radius:26px;
  2792. border-top-left-radius:0px;
  2793. border-top-right-radius:0px;
  2794. -moz-box-shadow:none;
  2795. -webkit-box-shadow:none;
  2796. box-shadow:none;
  2797. }
  2798. #u33903 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:492px;
  2802. top:788px;
  2803. width:375px;
  2804. height:50px;
  2805. display:flex;
  2806. }
  2807. #u33903 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u33903_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u33904 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:0px;
  2826. height:0px;
  2827. }
  2828. #u33905_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:24px;
  2834. height:24px;
  2835. }
  2836. #u33905 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:532px;
  2840. top:792px;
  2841. width:24px;
  2842. height:24px;
  2843. display:flex;
  2844. font-size:8px;
  2845. }
  2846. #u33905 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u33905_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. }
  2858. #u33906_div {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:25px;
  2864. height:17px;
  2865. background:inherit;
  2866. background-color:rgba(255, 255, 255, 0);
  2867. border:none;
  2868. border-radius:0px;
  2869. -moz-box-shadow:none;
  2870. -webkit-box-shadow:none;
  2871. box-shadow:none;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:12px;
  2876. }
  2877. #u33906 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:532px;
  2881. top:817px;
  2882. width:25px;
  2883. height:17px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:12px;
  2889. }
  2890. #u33906 .text {
  2891. position:absolute;
  2892. align-self:flex-start;
  2893. padding:0px 0px 0px 0px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u33906_text {
  2898. border-width:0px;
  2899. white-space:nowrap;
  2900. text-transform:none;
  2901. }
  2902. #u33907 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:0px;
  2908. height:0px;
  2909. }
  2910. #u33908_img {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:24px;
  2916. height:24px;
  2917. }
  2918. #u33908 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:802px;
  2922. top:794px;
  2923. width:24px;
  2924. height:24px;
  2925. display:flex;
  2926. font-size:8px;
  2927. }
  2928. #u33908 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 2px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u33908_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. }
  2940. #u33909_div {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:25px;
  2946. height:17px;
  2947. background:inherit;
  2948. background-color:rgba(255, 255, 255, 0);
  2949. border:none;
  2950. border-radius:0px;
  2951. -moz-box-shadow:none;
  2952. -webkit-box-shadow:none;
  2953. box-shadow:none;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. }
  2959. #u33909 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:802px;
  2963. top:819px;
  2964. width:25px;
  2965. height:17px;
  2966. display:flex;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:12px;
  2971. }
  2972. #u33909 .text {
  2973. position:absolute;
  2974. align-self:flex-start;
  2975. padding:0px 0px 0px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u33909_text {
  2980. border-width:0px;
  2981. white-space:nowrap;
  2982. text-transform:none;
  2983. }
  2984. #u33910_div {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:375px;
  2990. height:681px;
  2991. background:inherit;
  2992. background-color:rgba(242, 242, 242, 0.462745098039216);
  2993. border:none;
  2994. border-radius:0px;
  2995. -moz-box-shadow:none;
  2996. -webkit-box-shadow:none;
  2997. box-shadow:none;
  2998. }
  2999. #u33910 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:492px;
  3003. top:107px;
  3004. width:375px;
  3005. height:681px;
  3006. display:flex;
  3007. }
  3008. #u33910 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 2px 2px 2px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u33910_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. visibility:hidden;
  3020. }
  3021. #u33911 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:0px;
  3027. height:0px;
  3028. }
  3029. #u33912_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:24px;
  3035. height:24px;
  3036. }
  3037. #u33912 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:714px;
  3041. top:792px;
  3042. width:24px;
  3043. height:24px;
  3044. display:flex;
  3045. font-size:8px;
  3046. }
  3047. #u33912 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:2px 2px 2px 2px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u33912_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. }
  3059. #u33913_div {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:37px;
  3065. height:17px;
  3066. background:inherit;
  3067. background-color:rgba(255, 255, 255, 0);
  3068. border:none;
  3069. border-radius:0px;
  3070. -moz-box-shadow:none;
  3071. -webkit-box-shadow:none;
  3072. box-shadow:none;
  3073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:12px;
  3077. }
  3078. #u33913 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:708px;
  3082. top:817px;
  3083. width:37px;
  3084. height:17px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. }
  3091. #u33913 .text {
  3092. position:absolute;
  3093. align-self:flex-start;
  3094. padding:0px 0px 0px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u33913_text {
  3099. border-width:0px;
  3100. white-space:nowrap;
  3101. text-transform:none;
  3102. }
  3103. #u33914 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:0px;
  3109. height:0px;
  3110. }
  3111. #u33915_img {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:24px;
  3117. height:24px;
  3118. }
  3119. #u33915 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:620px;
  3123. top:792px;
  3124. width:24px;
  3125. height:24px;
  3126. display:flex;
  3127. font-size:8px;
  3128. }
  3129. #u33915 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 2px 2px 2px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u33915_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. }
  3141. #u33916_div {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:37px;
  3147. height:17px;
  3148. background:inherit;
  3149. background-color:rgba(255, 255, 255, 0);
  3150. border:none;
  3151. border-radius:0px;
  3152. -moz-box-shadow:none;
  3153. -webkit-box-shadow:none;
  3154. box-shadow:none;
  3155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:12px;
  3159. }
  3160. #u33916 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:614px;
  3164. top:817px;
  3165. width:37px;
  3166. height:17px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:12px;
  3172. }
  3173. #u33916 .text {
  3174. position:absolute;
  3175. align-self:flex-start;
  3176. padding:0px 0px 0px 0px;
  3177. box-sizing:border-box;
  3178. width:100%;
  3179. }
  3180. #u33916_text {
  3181. border-width:0px;
  3182. white-space:nowrap;
  3183. text-transform:none;
  3184. }
  3185. #u33917 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:0px;
  3191. height:0px;
  3192. }
  3193. #u33918_div {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:188px;
  3199. height:35px;
  3200. background:inherit;
  3201. background-color:rgba(255, 255, 255, 1);
  3202. border:none;
  3203. border-radius:0px;
  3204. -moz-box-shadow:none;
  3205. -webkit-box-shadow:none;
  3206. box-shadow:none;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:14px;
  3211. text-align:left;
  3212. }
  3213. #u33918 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:492px;
  3217. top:70px;
  3218. width:188px;
  3219. height:35px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:14px;
  3225. text-align:left;
  3226. }
  3227. #u33918 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 40px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u33918_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. }
  3239. #u33919_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:11px;
  3245. height:18px;
  3246. }
  3247. #u33919 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:503px;
  3251. top:79px;
  3252. width:11px;
  3253. height:18px;
  3254. display:flex;
  3255. }
  3256. #u33919 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 2px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u33919_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u33920_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:375px;
  3275. height:734px;
  3276. }
  3277. #u33920 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:492px;
  3281. top:106px;
  3282. width:375px;
  3283. height:734px;
  3284. display:flex;
  3285. }
  3286. #u33920 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 2px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u33920_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u33921_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:375px;
  3305. height:594px;
  3306. background:inherit;
  3307. background-color:rgba(255, 255, 255, 1);
  3308. border:none;
  3309. border-top:0px;
  3310. border-radius:29px;
  3311. border-top-left-radius:0px;
  3312. border-top-right-radius:0px;
  3313. -moz-box-shadow:none;
  3314. -webkit-box-shadow:none;
  3315. box-shadow:none;
  3316. }
  3317. #u33921 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:492px;
  3321. top:246px;
  3322. width:375px;
  3323. height:594px;
  3324. display:flex;
  3325. }
  3326. #u33921 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 2px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u33921_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u33922 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:0px;
  3345. height:0px;
  3346. }
  3347. #u33923_div {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:375px;
  3353. height:40px;
  3354. background:inherit;
  3355. background-color:rgba(242, 242, 242, 1);
  3356. border:none;
  3357. border-left:0px;
  3358. border-top:0px;
  3359. border-right:0px;
  3360. border-radius:0px;
  3361. border-bottom-right-radius:0px;
  3362. border-bottom-left-radius:0px;
  3363. -moz-box-shadow:none;
  3364. -webkit-box-shadow:none;
  3365. box-shadow:none;
  3366. }
  3367. #u33923 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:492px;
  3371. top:206px;
  3372. width:375px;
  3373. height:40px;
  3374. display:flex;
  3375. }
  3376. #u33923 .text {
  3377. position:absolute;
  3378. align-self:center;
  3379. padding:2px 2px 2px 2px;
  3380. box-sizing:border-box;
  3381. width:100%;
  3382. }
  3383. #u33923_text {
  3384. border-width:0px;
  3385. word-wrap:break-word;
  3386. text-transform:none;
  3387. visibility:hidden;
  3388. }
  3389. #u33924_input {
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:100px;
  3394. height:26px;
  3395. padding:2px 2px 2px 2px;
  3396. font-family:'ArialMT', 'Arial', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:14px;
  3400. letter-spacing:normal;
  3401. color:#000000;
  3402. vertical-align:none;
  3403. text-align:left;
  3404. text-transform:none;
  3405. background-color:transparent;
  3406. border-color:transparent;
  3407. }
  3408. #u33924_input.disabled {
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:100px;
  3413. height:26px;
  3414. padding:2px 2px 2px 2px;
  3415. font-family:'ArialMT', 'Arial', sans-serif;
  3416. font-weight:400;
  3417. font-style:normal;
  3418. font-size:14px;
  3419. letter-spacing:normal;
  3420. color:#000000;
  3421. vertical-align:none;
  3422. text-align:left;
  3423. text-transform:none;
  3424. background-color:transparent;
  3425. border-color:transparent;
  3426. }
  3427. #u33924_div {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:100px;
  3433. height:26px;
  3434. background:inherit;
  3435. background-color:rgba(242, 242, 242, 1);
  3436. border:none;
  3437. border-radius:0px;
  3438. -moz-box-shadow:none;
  3439. -webkit-box-shadow:none;
  3440. box-shadow:none;
  3441. font-size:14px;
  3442. }
  3443. #u33924 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:502px;
  3447. top:212px;
  3448. width:100px;
  3449. height:26px;
  3450. display:flex;
  3451. font-size:14px;
  3452. }
  3453. #u33924 .text {
  3454. position:absolute;
  3455. align-self:flex-start;
  3456. padding:2px 2px 2px 2px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u33924_div.disabled {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:100px;
  3466. height:26px;
  3467. background:inherit;
  3468. background-color:rgba(240, 240, 240, 1);
  3469. border:none;
  3470. border-radius:0px;
  3471. -moz-box-shadow:none;
  3472. -webkit-box-shadow:none;
  3473. box-shadow:none;
  3474. font-size:14px;
  3475. }
  3476. #u33924.disabled {
  3477. }
  3478. .u33924_input_option {
  3479. font-size:14px;
  3480. }
  3481. #u33925_input {
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:100px;
  3486. height:26px;
  3487. padding:2px 2px 2px 2px;
  3488. font-family:'ArialMT', 'Arial', sans-serif;
  3489. font-weight:400;
  3490. font-style:normal;
  3491. font-size:14px;
  3492. letter-spacing:normal;
  3493. color:#000000;
  3494. vertical-align:none;
  3495. text-align:left;
  3496. text-transform:none;
  3497. background-color:transparent;
  3498. border-color:transparent;
  3499. }
  3500. #u33925_input.disabled {
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:100px;
  3505. height:26px;
  3506. padding:2px 2px 2px 2px;
  3507. font-family:'ArialMT', 'Arial', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:14px;
  3511. letter-spacing:normal;
  3512. color:#000000;
  3513. vertical-align:none;
  3514. text-align:left;
  3515. text-transform:none;
  3516. background-color:transparent;
  3517. border-color:transparent;
  3518. }
  3519. #u33925_div {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:100px;
  3525. height:26px;
  3526. background:inherit;
  3527. background-color:rgba(242, 242, 242, 1);
  3528. border:none;
  3529. border-radius:0px;
  3530. -moz-box-shadow:none;
  3531. -webkit-box-shadow:none;
  3532. box-shadow:none;
  3533. font-size:14px;
  3534. }
  3535. #u33925 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:633px;
  3539. top:212px;
  3540. width:100px;
  3541. height:26px;
  3542. display:flex;
  3543. font-size:14px;
  3544. }
  3545. #u33925 .text {
  3546. position:absolute;
  3547. align-self:flex-start;
  3548. padding:2px 2px 2px 2px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u33925_div.disabled {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:100px;
  3558. height:26px;
  3559. background:inherit;
  3560. background-color:rgba(240, 240, 240, 1);
  3561. border:none;
  3562. border-radius:0px;
  3563. -moz-box-shadow:none;
  3564. -webkit-box-shadow:none;
  3565. box-shadow:none;
  3566. font-size:14px;
  3567. }
  3568. #u33925.disabled {
  3569. }
  3570. .u33925_input_option {
  3571. font-size:14px;
  3572. }
  3573. #u33926_input {
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:100px;
  3578. height:26px;
  3579. padding:2px 2px 2px 2px;
  3580. font-family:'ArialMT', 'Arial', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:14px;
  3584. letter-spacing:normal;
  3585. color:#000000;
  3586. vertical-align:none;
  3587. text-align:left;
  3588. text-transform:none;
  3589. background-color:transparent;
  3590. border-color:transparent;
  3591. }
  3592. #u33926_input.disabled {
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:100px;
  3597. height:26px;
  3598. padding:2px 2px 2px 2px;
  3599. font-family:'ArialMT', 'Arial', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:14px;
  3603. letter-spacing:normal;
  3604. color:#000000;
  3605. vertical-align:none;
  3606. text-align:left;
  3607. text-transform:none;
  3608. background-color:transparent;
  3609. border-color:transparent;
  3610. }
  3611. #u33926_div {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:100px;
  3617. height:26px;
  3618. background:inherit;
  3619. background-color:rgba(242, 242, 242, 1);
  3620. border:none;
  3621. border-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-size:14px;
  3626. }
  3627. #u33926 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:756px;
  3631. top:212px;
  3632. width:100px;
  3633. height:26px;
  3634. display:flex;
  3635. font-size:14px;
  3636. }
  3637. #u33926 .text {
  3638. position:absolute;
  3639. align-self:flex-start;
  3640. padding:2px 2px 2px 2px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u33926_div.disabled {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:100px;
  3650. height:26px;
  3651. background:inherit;
  3652. background-color:rgba(240, 240, 240, 1);
  3653. border:none;
  3654. border-radius:0px;
  3655. -moz-box-shadow:none;
  3656. -webkit-box-shadow:none;
  3657. box-shadow:none;
  3658. font-size:14px;
  3659. }
  3660. #u33926.disabled {
  3661. }
  3662. .u33926_input_option {
  3663. font-size:14px;
  3664. }
  3665. #u33927_div {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:375px;
  3671. height:100px;
  3672. background:inherit;
  3673. background-color:rgba(89, 179, 141, 1);
  3674. border:none;
  3675. border-radius:0px;
  3676. -moz-box-shadow:none;
  3677. -webkit-box-shadow:none;
  3678. box-shadow:none;
  3679. }
  3680. #u33927 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:492px;
  3684. top:106px;
  3685. width:375px;
  3686. height:100px;
  3687. display:flex;
  3688. }
  3689. #u33927 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 2px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u33927_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u33928_div {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:79px;
  3708. height:30px;
  3709. background:inherit;
  3710. background-color:rgba(255, 255, 255, 0);
  3711. border:none;
  3712. border-left:0px;
  3713. border-top:0px;
  3714. border-right:0px;
  3715. border-radius:0px;
  3716. border-bottom-right-radius:0px;
  3717. border-bottom-left-radius:0px;
  3718. -moz-box-shadow:none;
  3719. -webkit-box-shadow:none;
  3720. box-shadow:none;
  3721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. color:#FFFFFF;
  3725. line-height:30px;
  3726. }
  3727. #u33928 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:514px;
  3731. top:126px;
  3732. width:79px;
  3733. height:30px;
  3734. display:flex;
  3735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3736. font-weight:400;
  3737. font-style:normal;
  3738. color:#FFFFFF;
  3739. line-height:30px;
  3740. }
  3741. #u33928 .text {
  3742. position:absolute;
  3743. align-self:flex-start;
  3744. padding:0px 0px 0px 0px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u33928_text {
  3749. border-width:0px;
  3750. white-space:nowrap;
  3751. text-transform:none;
  3752. }
  3753. #u33929_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:119px;
  3759. height:20px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border:none;
  3763. border-left:0px;
  3764. border-top:0px;
  3765. border-right:0px;
  3766. border-radius:0px;
  3767. border-bottom-right-radius:0px;
  3768. border-bottom-left-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. color:#FFFFFF;
  3777. line-height:20px;
  3778. }
  3779. #u33929 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:514px;
  3783. top:176px;
  3784. width:119px;
  3785. height:20px;
  3786. display:flex;
  3787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. color:#FFFFFF;
  3792. line-height:20px;
  3793. }
  3794. #u33929 .text {
  3795. position:absolute;
  3796. align-self:flex-start;
  3797. padding:0px 0px 0px 0px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u33929_text {
  3802. border-width:0px;
  3803. white-space:nowrap;
  3804. text-transform:none;
  3805. }
  3806. #u33930_div {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:121px;
  3812. height:20px;
  3813. background:inherit;
  3814. background-color:rgba(255, 255, 255, 0);
  3815. border:none;
  3816. border-left:0px;
  3817. border-top:0px;
  3818. border-right:0px;
  3819. border-radius:0px;
  3820. border-bottom-right-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:12px;
  3829. color:#FFFFFF;
  3830. line-height:20px;
  3831. }
  3832. #u33930 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:706px;
  3836. top:176px;
  3837. width:121px;
  3838. height:20px;
  3839. display:flex;
  3840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:12px;
  3844. color:#FFFFFF;
  3845. line-height:20px;
  3846. }
  3847. #u33930 .text {
  3848. position:absolute;
  3849. align-self:flex-start;
  3850. padding:0px 0px 0px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u33930_text {
  3855. border-width:0px;
  3856. white-space:nowrap;
  3857. text-transform:none;
  3858. }
  3859. #u33931 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:0px;
  3865. height:0px;
  3866. }
  3867. #u33932_div {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:100px;
  3873. height:30px;
  3874. background:inherit;
  3875. background-color:rgba(255, 255, 255, 0);
  3876. border:none;
  3877. border-left:0px;
  3878. border-top:0px;
  3879. border-right:0px;
  3880. border-radius:0px;
  3881. border-bottom-right-radius:0px;
  3882. border-bottom-left-radius:0px;
  3883. -moz-box-shadow:none;
  3884. -webkit-box-shadow:none;
  3885. box-shadow:none;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:14px;
  3890. line-height:30px;
  3891. }
  3892. #u33932 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:506px;
  3896. top:260px;
  3897. width:100px;
  3898. height:30px;
  3899. display:flex;
  3900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. font-size:14px;
  3904. line-height:30px;
  3905. }
  3906. #u33932 .text {
  3907. position:absolute;
  3908. align-self:flex-start;
  3909. padding:0px 0px 0px 0px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u33932_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. }
  3918. #u33933_div {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:0px;
  3923. width:132px;
  3924. height:20px;
  3925. background:inherit;
  3926. background-color:rgba(255, 255, 255, 0);
  3927. border:none;
  3928. border-left:0px;
  3929. border-top:0px;
  3930. border-right:0px;
  3931. border-radius:0px;
  3932. border-bottom-right-radius:0px;
  3933. border-bottom-left-radius:0px;
  3934. -moz-box-shadow:none;
  3935. -webkit-box-shadow:none;
  3936. box-shadow:none;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:12px;
  3941. color:#7F7F7F;
  3942. line-height:20px;
  3943. }
  3944. #u33933 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:506px;
  3948. top:290px;
  3949. width:132px;
  3950. height:20px;
  3951. display:flex;
  3952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:12px;
  3956. color:#7F7F7F;
  3957. line-height:20px;
  3958. }
  3959. #u33933 .text {
  3960. position:absolute;
  3961. align-self:flex-start;
  3962. padding:0px 0px 0px 0px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u33933_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. }
  3971. #u33934_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:85px;
  3977. height:30px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border:none;
  3981. border-left:0px;
  3982. border-top:0px;
  3983. border-right:0px;
  3984. border-radius:0px;
  3985. border-bottom-right-radius:0px;
  3986. border-bottom-left-radius:0px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3991. font-style:normal;
  3992. text-align:right;
  3993. line-height:30px;
  3994. }
  3995. #u33934 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:752px;
  3999. top:258px;
  4000. width:85px;
  4001. height:30px;
  4002. display:flex;
  4003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4004. font-style:normal;
  4005. text-align:right;
  4006. line-height:30px;
  4007. }
  4008. #u33934 .text {
  4009. position:absolute;
  4010. align-self:flex-start;
  4011. padding:0px 0px 0px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u33934_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. }
  4020. #u33935_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:348px;
  4026. height:2px;
  4027. }
  4028. #u33935 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:506px;
  4032. top:320px;
  4033. width:347px;
  4034. height:1px;
  4035. display:flex;
  4036. }
  4037. #u33935 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u33935_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. visibility:hidden;
  4049. }
  4050. #u33936_div {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:77px;
  4056. height:20px;
  4057. background:inherit;
  4058. background-color:rgba(255, 255, 255, 0);
  4059. border:none;
  4060. border-left:0px;
  4061. border-top:0px;
  4062. border-right:0px;
  4063. border-radius:0px;
  4064. border-bottom-right-radius:0px;
  4065. border-bottom-left-radius:0px;
  4066. -moz-box-shadow:none;
  4067. -webkit-box-shadow:none;
  4068. box-shadow:none;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:11px;
  4073. color:#AAAAAA;
  4074. line-height:20px;
  4075. }
  4076. #u33936 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:760px;
  4080. top:293px;
  4081. width:77px;
  4082. height:20px;
  4083. display:flex;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:11px;
  4088. color:#AAAAAA;
  4089. line-height:20px;
  4090. }
  4091. #u33936 .text {
  4092. position:absolute;
  4093. align-self:flex-start;
  4094. padding:0px 0px 0px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u33936_text {
  4099. border-width:0px;
  4100. white-space:nowrap;
  4101. text-transform:none;
  4102. }
  4103. #u33937 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:0px;
  4109. height:0px;
  4110. }
  4111. #u33938_div {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:100px;
  4117. height:30px;
  4118. background:inherit;
  4119. background-color:rgba(255, 255, 255, 0);
  4120. border:none;
  4121. border-left:0px;
  4122. border-top:0px;
  4123. border-right:0px;
  4124. border-radius:0px;
  4125. border-bottom-right-radius:0px;
  4126. border-bottom-left-radius:0px;
  4127. -moz-box-shadow:none;
  4128. -webkit-box-shadow:none;
  4129. box-shadow:none;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:14px;
  4134. line-height:30px;
  4135. }
  4136. #u33938 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:506px;
  4140. top:332px;
  4141. width:100px;
  4142. height:30px;
  4143. display:flex;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:14px;
  4148. line-height:30px;
  4149. }
  4150. #u33938 .text {
  4151. position:absolute;
  4152. align-self:flex-start;
  4153. padding:0px 0px 0px 0px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u33938_text {
  4158. border-width:0px;
  4159. word-wrap:break-word;
  4160. text-transform:none;
  4161. }
  4162. #u33939_div {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:132px;
  4168. height:20px;
  4169. background:inherit;
  4170. background-color:rgba(255, 255, 255, 0);
  4171. border:none;
  4172. border-left:0px;
  4173. border-top:0px;
  4174. border-right:0px;
  4175. border-radius:0px;
  4176. border-bottom-right-radius:0px;
  4177. border-bottom-left-radius:0px;
  4178. -moz-box-shadow:none;
  4179. -webkit-box-shadow:none;
  4180. box-shadow:none;
  4181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. color:#7F7F7F;
  4186. line-height:20px;
  4187. }
  4188. #u33939 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:506px;
  4192. top:362px;
  4193. width:132px;
  4194. height:20px;
  4195. display:flex;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:12px;
  4200. color:#7F7F7F;
  4201. line-height:20px;
  4202. }
  4203. #u33939 .text {
  4204. position:absolute;
  4205. align-self:flex-start;
  4206. padding:0px 0px 0px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u33939_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. }
  4215. #u33940_div {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:85px;
  4221. height:30px;
  4222. background:inherit;
  4223. background-color:rgba(255, 255, 255, 0);
  4224. border:none;
  4225. border-left:0px;
  4226. border-top:0px;
  4227. border-right:0px;
  4228. border-radius:0px;
  4229. border-bottom-right-radius:0px;
  4230. border-bottom-left-radius:0px;
  4231. -moz-box-shadow:none;
  4232. -webkit-box-shadow:none;
  4233. box-shadow:none;
  4234. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4235. font-style:normal;
  4236. text-align:right;
  4237. line-height:30px;
  4238. }
  4239. #u33940 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:752px;
  4243. top:330px;
  4244. width:85px;
  4245. height:30px;
  4246. display:flex;
  4247. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4248. font-style:normal;
  4249. text-align:right;
  4250. line-height:30px;
  4251. }
  4252. #u33940 .text {
  4253. position:absolute;
  4254. align-self:flex-start;
  4255. padding:0px 0px 0px 0px;
  4256. box-sizing:border-box;
  4257. width:100%;
  4258. }
  4259. #u33940_text {
  4260. border-width:0px;
  4261. word-wrap:break-word;
  4262. text-transform:none;
  4263. }
  4264. #u33941_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:348px;
  4270. height:2px;
  4271. }
  4272. #u33941 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:506px;
  4276. top:392px;
  4277. width:347px;
  4278. height:1px;
  4279. display:flex;
  4280. }
  4281. #u33941 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 2px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u33941_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u33942_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:77px;
  4300. height:20px;
  4301. background:inherit;
  4302. background-color:rgba(255, 255, 255, 0);
  4303. border:none;
  4304. border-left:0px;
  4305. border-top:0px;
  4306. border-right:0px;
  4307. border-radius:0px;
  4308. border-bottom-right-radius:0px;
  4309. border-bottom-left-radius:0px;
  4310. -moz-box-shadow:none;
  4311. -webkit-box-shadow:none;
  4312. box-shadow:none;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:11px;
  4317. color:#AAAAAA;
  4318. line-height:20px;
  4319. }
  4320. #u33942 {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:760px;
  4324. top:365px;
  4325. width:77px;
  4326. height:20px;
  4327. display:flex;
  4328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4329. font-weight:400;
  4330. font-style:normal;
  4331. font-size:11px;
  4332. color:#AAAAAA;
  4333. line-height:20px;
  4334. }
  4335. #u33942 .text {
  4336. position:absolute;
  4337. align-self:flex-start;
  4338. padding:0px 0px 0px 0px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u33942_text {
  4343. border-width:0px;
  4344. white-space:nowrap;
  4345. text-transform:none;
  4346. }
  4347. #u33943 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:0px;
  4353. height:0px;
  4354. }
  4355. #u33944_div {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:100px;
  4361. height:30px;
  4362. background:inherit;
  4363. background-color:rgba(255, 255, 255, 0);
  4364. border:none;
  4365. border-left:0px;
  4366. border-top:0px;
  4367. border-right:0px;
  4368. border-radius:0px;
  4369. border-bottom-right-radius:0px;
  4370. border-bottom-left-radius:0px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:14px;
  4378. line-height:30px;
  4379. }
  4380. #u33944 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:506px;
  4384. top:405px;
  4385. width:100px;
  4386. height:30px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:14px;
  4392. line-height:30px;
  4393. }
  4394. #u33944 .text {
  4395. position:absolute;
  4396. align-self:flex-start;
  4397. padding:0px 0px 0px 0px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u33944_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. }
  4406. #u33945_div {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:132px;
  4412. height:20px;
  4413. background:inherit;
  4414. background-color:rgba(255, 255, 255, 0);
  4415. border:none;
  4416. border-left:0px;
  4417. border-top:0px;
  4418. border-right:0px;
  4419. border-radius:0px;
  4420. border-bottom-right-radius:0px;
  4421. border-bottom-left-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. color:#7F7F7F;
  4430. line-height:20px;
  4431. }
  4432. #u33945 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:506px;
  4436. top:435px;
  4437. width:132px;
  4438. height:20px;
  4439. display:flex;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:12px;
  4444. color:#7F7F7F;
  4445. line-height:20px;
  4446. }
  4447. #u33945 .text {
  4448. position:absolute;
  4449. align-self:flex-start;
  4450. padding:0px 0px 0px 0px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u33945_text {
  4455. border-width:0px;
  4456. word-wrap:break-word;
  4457. text-transform:none;
  4458. }
  4459. #u33946_div {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:85px;
  4465. height:30px;
  4466. background:inherit;
  4467. background-color:rgba(255, 255, 255, 0);
  4468. border:none;
  4469. border-left:0px;
  4470. border-top:0px;
  4471. border-right:0px;
  4472. border-radius:0px;
  4473. border-bottom-right-radius:0px;
  4474. border-bottom-left-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4479. font-style:normal;
  4480. text-align:right;
  4481. line-height:30px;
  4482. }
  4483. #u33946 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:752px;
  4487. top:403px;
  4488. width:85px;
  4489. height:30px;
  4490. display:flex;
  4491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4492. font-style:normal;
  4493. text-align:right;
  4494. line-height:30px;
  4495. }
  4496. #u33946 .text {
  4497. position:absolute;
  4498. align-self:flex-start;
  4499. padding:0px 0px 0px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u33946_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. }
  4508. #u33947_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:348px;
  4514. height:2px;
  4515. }
  4516. #u33947 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:506px;
  4520. top:465px;
  4521. width:347px;
  4522. height:1px;
  4523. display:flex;
  4524. }
  4525. #u33947 .text {
  4526. position:absolute;
  4527. align-self:center;
  4528. padding:2px 2px 2px 2px;
  4529. box-sizing:border-box;
  4530. width:100%;
  4531. }
  4532. #u33947_text {
  4533. border-width:0px;
  4534. word-wrap:break-word;
  4535. text-transform:none;
  4536. visibility:hidden;
  4537. }
  4538. #u33948_div {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:77px;
  4544. height:20px;
  4545. background:inherit;
  4546. background-color:rgba(255, 255, 255, 0);
  4547. border:none;
  4548. border-left:0px;
  4549. border-top:0px;
  4550. border-right:0px;
  4551. border-radius:0px;
  4552. border-bottom-right-radius:0px;
  4553. border-bottom-left-radius:0px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:11px;
  4561. color:#AAAAAA;
  4562. line-height:20px;
  4563. }
  4564. #u33948 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:760px;
  4568. top:438px;
  4569. width:77px;
  4570. height:20px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:11px;
  4576. color:#AAAAAA;
  4577. line-height:20px;
  4578. }
  4579. #u33948 .text {
  4580. position:absolute;
  4581. align-self:flex-start;
  4582. padding:0px 0px 0px 0px;
  4583. box-sizing:border-box;
  4584. width:100%;
  4585. }
  4586. #u33948_text {
  4587. border-width:0px;
  4588. white-space:nowrap;
  4589. text-transform:none;
  4590. }
  4591. #u33949 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:0px;
  4597. height:0px;
  4598. }
  4599. #u33950_div {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:100px;
  4605. height:30px;
  4606. background:inherit;
  4607. background-color:rgba(255, 255, 255, 0);
  4608. border:none;
  4609. border-left:0px;
  4610. border-top:0px;
  4611. border-right:0px;
  4612. border-radius:0px;
  4613. border-bottom-right-radius:0px;
  4614. border-bottom-left-radius:0px;
  4615. -moz-box-shadow:none;
  4616. -webkit-box-shadow:none;
  4617. box-shadow:none;
  4618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4619. font-weight:400;
  4620. font-style:normal;
  4621. font-size:14px;
  4622. line-height:30px;
  4623. }
  4624. #u33950 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:506px;
  4628. top:478px;
  4629. width:100px;
  4630. height:30px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:14px;
  4636. line-height:30px;
  4637. }
  4638. #u33950 .text {
  4639. position:absolute;
  4640. align-self:flex-start;
  4641. padding:0px 0px 0px 0px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u33950_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. }
  4650. #u33951_div {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:132px;
  4656. height:20px;
  4657. background:inherit;
  4658. background-color:rgba(255, 255, 255, 0);
  4659. border:none;
  4660. border-left:0px;
  4661. border-top:0px;
  4662. border-right:0px;
  4663. border-radius:0px;
  4664. border-bottom-right-radius:0px;
  4665. border-bottom-left-radius:0px;
  4666. -moz-box-shadow:none;
  4667. -webkit-box-shadow:none;
  4668. box-shadow:none;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:12px;
  4673. color:#7F7F7F;
  4674. line-height:20px;
  4675. }
  4676. #u33951 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:506px;
  4680. top:508px;
  4681. width:132px;
  4682. height:20px;
  4683. display:flex;
  4684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#7F7F7F;
  4689. line-height:20px;
  4690. }
  4691. #u33951 .text {
  4692. position:absolute;
  4693. align-self:flex-start;
  4694. padding:0px 0px 0px 0px;
  4695. box-sizing:border-box;
  4696. width:100%;
  4697. }
  4698. #u33951_text {
  4699. border-width:0px;
  4700. word-wrap:break-word;
  4701. text-transform:none;
  4702. }
  4703. #u33952_div {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:85px;
  4709. height:30px;
  4710. background:inherit;
  4711. background-color:rgba(255, 255, 255, 0);
  4712. border:none;
  4713. border-left:0px;
  4714. border-top:0px;
  4715. border-right:0px;
  4716. border-radius:0px;
  4717. border-bottom-right-radius:0px;
  4718. border-bottom-left-radius:0px;
  4719. -moz-box-shadow:none;
  4720. -webkit-box-shadow:none;
  4721. box-shadow:none;
  4722. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4723. font-style:normal;
  4724. text-align:right;
  4725. line-height:30px;
  4726. }
  4727. #u33952 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:752px;
  4731. top:476px;
  4732. width:85px;
  4733. height:30px;
  4734. display:flex;
  4735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4736. font-style:normal;
  4737. text-align:right;
  4738. line-height:30px;
  4739. }
  4740. #u33952 .text {
  4741. position:absolute;
  4742. align-self:flex-start;
  4743. padding:0px 0px 0px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u33952_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. }
  4752. #u33953_img {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:348px;
  4758. height:2px;
  4759. }
  4760. #u33953 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:506px;
  4764. top:538px;
  4765. width:347px;
  4766. height:1px;
  4767. display:flex;
  4768. }
  4769. #u33953 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 2px 2px 2px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u33953_text {
  4777. border-width:0px;
  4778. word-wrap:break-word;
  4779. text-transform:none;
  4780. visibility:hidden;
  4781. }
  4782. #u33954_div {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:77px;
  4788. height:20px;
  4789. background:inherit;
  4790. background-color:rgba(255, 255, 255, 0);
  4791. border:none;
  4792. border-left:0px;
  4793. border-top:0px;
  4794. border-right:0px;
  4795. border-radius:0px;
  4796. border-bottom-right-radius:0px;
  4797. border-bottom-left-radius:0px;
  4798. -moz-box-shadow:none;
  4799. -webkit-box-shadow:none;
  4800. box-shadow:none;
  4801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:11px;
  4805. color:#AAAAAA;
  4806. line-height:20px;
  4807. }
  4808. #u33954 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:760px;
  4812. top:511px;
  4813. width:77px;
  4814. height:20px;
  4815. display:flex;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:11px;
  4820. color:#AAAAAA;
  4821. line-height:20px;
  4822. }
  4823. #u33954 .text {
  4824. position:absolute;
  4825. align-self:flex-start;
  4826. padding:0px 0px 0px 0px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u33954_text {
  4831. border-width:0px;
  4832. white-space:nowrap;
  4833. text-transform:none;
  4834. }
  4835. #u33955 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:0px;
  4841. height:0px;
  4842. }
  4843. #u33956_div {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:100px;
  4849. height:30px;
  4850. background:inherit;
  4851. background-color:rgba(255, 255, 255, 0);
  4852. border:none;
  4853. border-left:0px;
  4854. border-top:0px;
  4855. border-right:0px;
  4856. border-radius:0px;
  4857. border-bottom-right-radius:0px;
  4858. border-bottom-left-radius:0px;
  4859. -moz-box-shadow:none;
  4860. -webkit-box-shadow:none;
  4861. box-shadow:none;
  4862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:14px;
  4866. line-height:30px;
  4867. }
  4868. #u33956 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:46px;
  4872. top:551px;
  4873. width:100px;
  4874. height:30px;
  4875. display:flex;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:14px;
  4880. line-height:30px;
  4881. }
  4882. #u33956 .text {
  4883. position:absolute;
  4884. align-self:flex-start;
  4885. padding:0px 0px 0px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u33956_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. }
  4894. #u33957_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:132px;
  4900. height:20px;
  4901. background:inherit;
  4902. background-color:rgba(255, 255, 255, 0);
  4903. border:none;
  4904. border-left:0px;
  4905. border-top:0px;
  4906. border-right:0px;
  4907. border-radius:0px;
  4908. border-bottom-right-radius:0px;
  4909. border-bottom-left-radius:0px;
  4910. -moz-box-shadow:none;
  4911. -webkit-box-shadow:none;
  4912. box-shadow:none;
  4913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:12px;
  4917. color:#7F7F7F;
  4918. line-height:20px;
  4919. }
  4920. #u33957 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:46px;
  4924. top:581px;
  4925. width:132px;
  4926. height:20px;
  4927. display:flex;
  4928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:12px;
  4932. color:#7F7F7F;
  4933. line-height:20px;
  4934. }
  4935. #u33957 .text {
  4936. position:absolute;
  4937. align-self:flex-start;
  4938. padding:0px 0px 0px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u33957_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. }
  4947. #u33958_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:85px;
  4953. height:30px;
  4954. background:inherit;
  4955. background-color:rgba(255, 255, 255, 0);
  4956. border:none;
  4957. border-left:0px;
  4958. border-top:0px;
  4959. border-right:0px;
  4960. border-radius:0px;
  4961. border-bottom-right-radius:0px;
  4962. border-bottom-left-radius:0px;
  4963. -moz-box-shadow:none;
  4964. -webkit-box-shadow:none;
  4965. box-shadow:none;
  4966. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4967. font-style:normal;
  4968. text-align:right;
  4969. line-height:30px;
  4970. }
  4971. #u33958 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:292px;
  4975. top:549px;
  4976. width:85px;
  4977. height:30px;
  4978. display:flex;
  4979. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4980. font-style:normal;
  4981. text-align:right;
  4982. line-height:30px;
  4983. }
  4984. #u33958 .text {
  4985. position:absolute;
  4986. align-self:flex-start;
  4987. padding:0px 0px 0px 0px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u33958_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. }
  4996. #u33959_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:348px;
  5002. height:2px;
  5003. }
  5004. #u33959 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:46px;
  5008. top:611px;
  5009. width:347px;
  5010. height:1px;
  5011. display:flex;
  5012. }
  5013. #u33959 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:2px 2px 2px 2px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u33959_text {
  5021. border-width:0px;
  5022. word-wrap:break-word;
  5023. text-transform:none;
  5024. visibility:hidden;
  5025. }
  5026. #u33960_div {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:77px;
  5032. height:20px;
  5033. background:inherit;
  5034. background-color:rgba(255, 255, 255, 0);
  5035. border:none;
  5036. border-left:0px;
  5037. border-top:0px;
  5038. border-right:0px;
  5039. border-radius:0px;
  5040. border-bottom-right-radius:0px;
  5041. border-bottom-left-radius:0px;
  5042. -moz-box-shadow:none;
  5043. -webkit-box-shadow:none;
  5044. box-shadow:none;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:11px;
  5049. color:#AAAAAA;
  5050. line-height:20px;
  5051. }
  5052. #u33960 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:300px;
  5056. top:584px;
  5057. width:77px;
  5058. height:20px;
  5059. display:flex;
  5060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:11px;
  5064. color:#AAAAAA;
  5065. line-height:20px;
  5066. }
  5067. #u33960 .text {
  5068. position:absolute;
  5069. align-self:flex-start;
  5070. padding:0px 0px 0px 0px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u33960_text {
  5075. border-width:0px;
  5076. white-space:nowrap;
  5077. text-transform:none;
  5078. }
  5079. #u33961 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:0px;
  5085. height:0px;
  5086. }
  5087. #u33962_div {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:100px;
  5093. height:30px;
  5094. background:inherit;
  5095. background-color:rgba(255, 255, 255, 0);
  5096. border:none;
  5097. border-left:0px;
  5098. border-top:0px;
  5099. border-right:0px;
  5100. border-radius:0px;
  5101. border-bottom-right-radius:0px;
  5102. border-bottom-left-radius:0px;
  5103. -moz-box-shadow:none;
  5104. -webkit-box-shadow:none;
  5105. box-shadow:none;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:14px;
  5110. line-height:30px;
  5111. }
  5112. #u33962 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:46px;
  5116. top:624px;
  5117. width:100px;
  5118. height:30px;
  5119. display:flex;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:14px;
  5124. line-height:30px;
  5125. }
  5126. #u33962 .text {
  5127. position:absolute;
  5128. align-self:flex-start;
  5129. padding:0px 0px 0px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u33962_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. }
  5138. #u33963_div {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:132px;
  5144. height:20px;
  5145. background:inherit;
  5146. background-color:rgba(255, 255, 255, 0);
  5147. border:none;
  5148. border-left:0px;
  5149. border-top:0px;
  5150. border-right:0px;
  5151. border-radius:0px;
  5152. border-bottom-right-radius:0px;
  5153. border-bottom-left-radius:0px;
  5154. -moz-box-shadow:none;
  5155. -webkit-box-shadow:none;
  5156. box-shadow:none;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:12px;
  5161. color:#7F7F7F;
  5162. line-height:20px;
  5163. }
  5164. #u33963 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:46px;
  5168. top:654px;
  5169. width:132px;
  5170. height:20px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. color:#7F7F7F;
  5177. line-height:20px;
  5178. }
  5179. #u33963 .text {
  5180. position:absolute;
  5181. align-self:flex-start;
  5182. padding:0px 0px 0px 0px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u33963_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. }
  5191. #u33964_div {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:85px;
  5197. height:30px;
  5198. background:inherit;
  5199. background-color:rgba(255, 255, 255, 0);
  5200. border:none;
  5201. border-left:0px;
  5202. border-top:0px;
  5203. border-right:0px;
  5204. border-radius:0px;
  5205. border-bottom-right-radius:0px;
  5206. border-bottom-left-radius:0px;
  5207. -moz-box-shadow:none;
  5208. -webkit-box-shadow:none;
  5209. box-shadow:none;
  5210. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5211. font-style:normal;
  5212. text-align:right;
  5213. line-height:30px;
  5214. }
  5215. #u33964 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:292px;
  5219. top:622px;
  5220. width:85px;
  5221. height:30px;
  5222. display:flex;
  5223. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5224. font-style:normal;
  5225. text-align:right;
  5226. line-height:30px;
  5227. }
  5228. #u33964 .text {
  5229. position:absolute;
  5230. align-self:flex-start;
  5231. padding:0px 0px 0px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u33964_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. }
  5240. #u33965_img {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:348px;
  5246. height:2px;
  5247. }
  5248. #u33965 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:46px;
  5252. top:684px;
  5253. width:347px;
  5254. height:1px;
  5255. display:flex;
  5256. }
  5257. #u33965 .text {
  5258. position:absolute;
  5259. align-self:center;
  5260. padding:2px 2px 2px 2px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u33965_text {
  5265. border-width:0px;
  5266. word-wrap:break-word;
  5267. text-transform:none;
  5268. visibility:hidden;
  5269. }
  5270. #u33966_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:77px;
  5276. height:20px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 0);
  5279. border:none;
  5280. border-left:0px;
  5281. border-top:0px;
  5282. border-right:0px;
  5283. border-radius:0px;
  5284. border-bottom-right-radius:0px;
  5285. border-bottom-left-radius:0px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:11px;
  5293. color:#AAAAAA;
  5294. line-height:20px;
  5295. }
  5296. #u33966 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:300px;
  5300. top:657px;
  5301. width:77px;
  5302. height:20px;
  5303. display:flex;
  5304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:11px;
  5308. color:#AAAAAA;
  5309. line-height:20px;
  5310. }
  5311. #u33966 .text {
  5312. position:absolute;
  5313. align-self:flex-start;
  5314. padding:0px 0px 0px 0px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u33966_text {
  5319. border-width:0px;
  5320. white-space:nowrap;
  5321. text-transform:none;
  5322. }