styles.css 85 KB

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