styles.css 85 KB

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