styles.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u77179_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. #u77179 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u77179 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u77179_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u77180_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. #u77180 {
  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. #u77180 .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. #u77180_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u77181_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. #u77181 {
  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. #u77181 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u77181_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u77182 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u77183_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u77183 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u77183 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u77183_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u77184_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. #u77184 {
  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. #u77184 .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. #u77184_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u77185_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. #u77185 {
  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. #u77185 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u77185_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u77186 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u77187_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. #u77187_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. #u77187_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. #u77187 {
  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. #u77187 .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. #u77187_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. #u77187.disabled {
  356. }
  357. .u77187_input_option {
  358. font-size:14px;
  359. }
  360. #u77188_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u77188 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u77188 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u77188_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u77189_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. #u77189 {
  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. #u77189 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u77189_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u77190_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. #u77190 {
  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. #u77190 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u77190_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u77191 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u77192_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. #u77192 {
  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. #u77192 .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. #u77192_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u77193_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u77193 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u77193 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u77193_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u77194 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u77195_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. #u77195 {
  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. #u77195 .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. #u77195_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u77196_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u77196 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u77196 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u77196_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u77197 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u77198_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. #u77198 {
  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. #u77198 .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. #u77198_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u77199_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u77199 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u77199 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u77199_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u77200 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u77201_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. #u77201 {
  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. #u77201 .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. #u77201_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u77202_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u77202 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u77202 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u77202_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u77203 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u77204_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. #u77204 {
  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. #u77204 .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. #u77204_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u77205_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u77205 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u77205 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u77205_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u77206 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u77207_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. #u77207 {
  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. #u77207 .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. #u77207_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u77208_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u77208 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u77208 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u77208_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u77209 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u77210_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. #u77210 {
  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. #u77210 .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. #u77210_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u77211_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u77211 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u77211 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u77211_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u77212 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u77213_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. #u77213 {
  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. #u77213 .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. #u77213_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u77214_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u77214 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u77214 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u77214_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u77215 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u77216_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. #u77216 {
  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. #u77216 .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. #u77216_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u77217_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u77217 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u77217 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u77217_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u77218 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u77219_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. #u77219 {
  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. #u77219 .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. #u77219_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u77220_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u77220 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u77220 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u77220_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u77221_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. #u77221 {
  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. #u77221 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u77221_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u77222_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u77222 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u77222 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u77222_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u77223_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. #u77223 {
  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. #u77223 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u77223_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u77224_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u77224 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u77224 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u77224_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u77225 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u77226_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. #u77226 {
  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. #u77226 .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. #u77226_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u77227_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u77227 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u77227 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u77227_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u77228 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u77229_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. #u77229 {
  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. #u77229 .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. #u77229_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u77230_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u77230 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u77230 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u77230_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u77231_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u77231 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u77231 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u77231_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u77232_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:109px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u77232 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:350px;
  1698. top:71px;
  1699. width:109px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u77232 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u77232_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u77233 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:0px;
  1725. height:0px;
  1726. }
  1727. #u77234 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:350px;
  1731. top:113px;
  1732. width:1204px;
  1733. height:98px;
  1734. }
  1735. #u77235_img {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:232px;
  1741. height:34px;
  1742. }
  1743. #u77235 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:232px;
  1749. height:34px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:14px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. line-height:30px;
  1758. }
  1759. #u77235 .text {
  1760. position:absolute;
  1761. align-self:center;
  1762. padding:2px 10px 2px 10px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u77235_text {
  1767. border-width:0px;
  1768. word-wrap:break-word;
  1769. text-transform:none;
  1770. }
  1771. #u77236_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:232px;
  1777. height:34px;
  1778. }
  1779. #u77236 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:232px;
  1783. top:0px;
  1784. width:232px;
  1785. height:34px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:14px;
  1791. color:#FFFFFF;
  1792. text-align:left;
  1793. line-height:30px;
  1794. }
  1795. #u77236 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 10px 2px 10px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u77236_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u77237_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:232px;
  1813. height:34px;
  1814. }
  1815. #u77237 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:464px;
  1819. top:0px;
  1820. width:232px;
  1821. height:34px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#FFFFFF;
  1828. text-align:left;
  1829. line-height:30px;
  1830. }
  1831. #u77237 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:2px 10px 2px 10px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u77237_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. }
  1843. #u77238_img {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:226px;
  1849. height:34px;
  1850. }
  1851. #u77238 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:696px;
  1855. top:0px;
  1856. width:226px;
  1857. height:34px;
  1858. display:flex;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. color:#FFFFFF;
  1864. text-align:left;
  1865. line-height:30px;
  1866. }
  1867. #u77238 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 10px 2px 10px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u77238_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u77239_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:282px;
  1885. height:34px;
  1886. }
  1887. #u77239 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:922px;
  1891. top:0px;
  1892. width:282px;
  1893. height:34px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:14px;
  1899. color:#FFFFFF;
  1900. text-align:left;
  1901. line-height:30px;
  1902. }
  1903. #u77239 .text {
  1904. position:absolute;
  1905. align-self:center;
  1906. padding:2px 10px 2px 10px;
  1907. box-sizing:border-box;
  1908. width:100%;
  1909. }
  1910. #u77239_text {
  1911. border-width:0px;
  1912. word-wrap:break-word;
  1913. text-transform:none;
  1914. }
  1915. #u77240_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:232px;
  1921. height:34px;
  1922. }
  1923. #u77240 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:34px;
  1928. width:232px;
  1929. height:34px;
  1930. display:flex;
  1931. font-size:14px;
  1932. text-align:left;
  1933. line-height:30px;
  1934. }
  1935. #u77240 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 10px 2px 10px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u77240_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. visibility:hidden;
  1947. }
  1948. #u77241_img {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:232px;
  1954. height:34px;
  1955. }
  1956. #u77241 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:232px;
  1960. top:34px;
  1961. width:232px;
  1962. height:34px;
  1963. display:flex;
  1964. font-size:14px;
  1965. text-align:left;
  1966. line-height:30px;
  1967. }
  1968. #u77241 .text {
  1969. position:absolute;
  1970. align-self:center;
  1971. padding:2px 10px 2px 10px;
  1972. box-sizing:border-box;
  1973. width:100%;
  1974. }
  1975. #u77241_text {
  1976. border-width:0px;
  1977. word-wrap:break-word;
  1978. text-transform:none;
  1979. visibility:hidden;
  1980. }
  1981. #u77242_img {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:232px;
  1987. height:34px;
  1988. }
  1989. #u77242 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:464px;
  1993. top:34px;
  1994. width:232px;
  1995. height:34px;
  1996. display:flex;
  1997. font-size:14px;
  1998. text-align:left;
  1999. line-height:30px;
  2000. }
  2001. #u77242 .text {
  2002. position:absolute;
  2003. align-self:center;
  2004. padding:2px 10px 2px 10px;
  2005. box-sizing:border-box;
  2006. width:100%;
  2007. }
  2008. #u77242_text {
  2009. border-width:0px;
  2010. word-wrap:break-word;
  2011. text-transform:none;
  2012. visibility:hidden;
  2013. }
  2014. #u77243_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:226px;
  2020. height:34px;
  2021. }
  2022. #u77243 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:696px;
  2026. top:34px;
  2027. width:226px;
  2028. height:34px;
  2029. display:flex;
  2030. font-size:14px;
  2031. text-align:left;
  2032. line-height:30px;
  2033. }
  2034. #u77243 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 10px 2px 10px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u77243_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. visibility:hidden;
  2046. }
  2047. #u77244_img {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:282px;
  2053. height:34px;
  2054. }
  2055. #u77244 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:922px;
  2059. top:34px;
  2060. width:282px;
  2061. height:34px;
  2062. display:flex;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. color:#1890FF;
  2068. text-align:left;
  2069. line-height:30px;
  2070. }
  2071. #u77244 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 10px 2px 10px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u77244_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u77245_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:232px;
  2089. height:30px;
  2090. }
  2091. #u77245 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:68px;
  2096. width:232px;
  2097. height:30px;
  2098. display:flex;
  2099. font-size:14px;
  2100. text-align:left;
  2101. line-height:30px;
  2102. }
  2103. #u77245 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 10px 2px 10px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u77245_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. visibility:hidden;
  2115. }
  2116. #u77246_img {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:232px;
  2122. height:30px;
  2123. }
  2124. #u77246 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:232px;
  2128. top:68px;
  2129. width:232px;
  2130. height:30px;
  2131. display:flex;
  2132. font-size:14px;
  2133. text-align:left;
  2134. line-height:30px;
  2135. }
  2136. #u77246 .text {
  2137. position:absolute;
  2138. align-self:center;
  2139. padding:2px 10px 2px 10px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u77246_text {
  2144. border-width:0px;
  2145. word-wrap:break-word;
  2146. text-transform:none;
  2147. visibility:hidden;
  2148. }
  2149. #u77247_img {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:232px;
  2155. height:30px;
  2156. }
  2157. #u77247 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:464px;
  2161. top:68px;
  2162. width:232px;
  2163. height:30px;
  2164. display:flex;
  2165. font-size:14px;
  2166. text-align:left;
  2167. line-height:30px;
  2168. }
  2169. #u77247 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 10px 2px 10px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u77247_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. visibility:hidden;
  2181. }
  2182. #u77248_img {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:226px;
  2188. height:30px;
  2189. }
  2190. #u77248 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:696px;
  2194. top:68px;
  2195. width:226px;
  2196. height:30px;
  2197. display:flex;
  2198. font-size:14px;
  2199. text-align:left;
  2200. line-height:30px;
  2201. }
  2202. #u77248 .text {
  2203. position:absolute;
  2204. align-self:center;
  2205. padding:2px 10px 2px 10px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u77248_text {
  2210. border-width:0px;
  2211. word-wrap:break-word;
  2212. text-transform:none;
  2213. visibility:hidden;
  2214. }
  2215. #u77249_img {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:282px;
  2221. height:30px;
  2222. }
  2223. #u77249 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:922px;
  2227. top:68px;
  2228. width:282px;
  2229. height:30px;
  2230. display:flex;
  2231. font-size:14px;
  2232. color:#1890FF;
  2233. text-align:left;
  2234. line-height:30px;
  2235. }
  2236. #u77249 .text {
  2237. position:absolute;
  2238. align-self:center;
  2239. padding:2px 10px 2px 10px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u77249_text {
  2244. border-width:0px;
  2245. word-wrap:break-word;
  2246. text-transform:none;
  2247. visibility:hidden;
  2248. }
  2249. #u77250_div {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:80px;
  2255. height:30px;
  2256. background:inherit;
  2257. background-color:rgba(41, 143, 255, 1);
  2258. border:none;
  2259. border-radius:4px;
  2260. -moz-box-shadow:none;
  2261. -webkit-box-shadow:none;
  2262. box-shadow:none;
  2263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2264. font-weight:400;
  2265. font-style:normal;
  2266. font-size:14px;
  2267. color:#FFFFFF;
  2268. }
  2269. #u77250 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:1474px;
  2273. top:71px;
  2274. width:80px;
  2275. height:30px;
  2276. display:flex;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:14px;
  2281. color:#FFFFFF;
  2282. }
  2283. #u77250 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:5px 10px 5px 10px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u77250_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. }
  2295. #u77251_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:-5px;
  2299. top:-5px;
  2300. width:525px;
  2301. height:280px;
  2302. }
  2303. #u77251 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:814px;
  2307. top:310px;
  2308. width:515px;
  2309. height:270px;
  2310. display:flex;
  2311. }
  2312. #u77251 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 2px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u77251_text {
  2320. border-width:0px;
  2321. word-wrap:break-word;
  2322. text-transform:none;
  2323. visibility:hidden;
  2324. }
  2325. #u77253 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:0px;
  2331. height:0px;
  2332. }
  2333. #u77254_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:200px;
  2339. height:1191px;
  2340. }
  2341. #u77254 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:120px;
  2345. top:50px;
  2346. width:200px;
  2347. height:1191px;
  2348. display:flex;
  2349. }
  2350. #u77254 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 2px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u77254_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. visibility:hidden;
  2362. }
  2363. #u77255_div {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:200px;
  2369. height:60px;
  2370. background:inherit;
  2371. background-color:rgba(224, 231, 247, 1);
  2372. border:none;
  2373. border-radius:0px;
  2374. -moz-box-shadow:none;
  2375. -webkit-box-shadow:none;
  2376. box-shadow:none;
  2377. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2378. font-weight:500;
  2379. font-style:normal;
  2380. font-size:18px;
  2381. }
  2382. #u77255 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:120px;
  2386. top:50px;
  2387. width:200px;
  2388. height:60px;
  2389. display:flex;
  2390. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2391. font-weight:500;
  2392. font-style:normal;
  2393. font-size:18px;
  2394. }
  2395. #u77255 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:0px 0px 0px 20px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u77255_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. }
  2407. #u77256 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:120px;
  2411. top:130px;
  2412. width:200px;
  2413. height:1078px;
  2414. }
  2415. #u77256_state0 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:200px;
  2421. height:1078px;
  2422. overflow:auto;
  2423. -webkit-overflow-scrolling:touch;
  2424. -ms-overflow-x:hidden;
  2425. overflow-x:hidden;
  2426. background-image:none;
  2427. border:none;
  2428. border-radius:0px;
  2429. -moz-box-shadow:none;
  2430. -webkit-box-shadow:none;
  2431. box-shadow:none;
  2432. }
  2433. #u77256_state0_content {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:1px;
  2439. height:1px;
  2440. }
  2441. #u77257_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:97px;
  2447. height:22px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:16px;
  2459. }
  2460. #u77257 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:30px;
  2464. top:0px;
  2465. width:97px;
  2466. height:22px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:16px;
  2472. }
  2473. #u77257 .text {
  2474. position:absolute;
  2475. align-self:flex-start;
  2476. padding:0px 0px 0px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u77257_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. }
  2485. #u77258_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:65px;
  2491. height:22px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 0);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:16px;
  2503. }
  2504. #u77258 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:30px;
  2508. top:42px;
  2509. width:65px;
  2510. height:22px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:16px;
  2516. }
  2517. #u77258 .text {
  2518. position:absolute;
  2519. align-self:flex-start;
  2520. padding:0px 0px 0px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u77258_text {
  2525. border-width:0px;
  2526. white-space:nowrap;
  2527. text-transform:none;
  2528. }
  2529. #u77259_div {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:49px;
  2535. height:22px;
  2536. background:inherit;
  2537. background-color:rgba(255, 255, 255, 0);
  2538. border:none;
  2539. border-radius:0px;
  2540. -moz-box-shadow:none;
  2541. -webkit-box-shadow:none;
  2542. box-shadow:none;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:16px;
  2547. }
  2548. #u77259 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:30px;
  2552. top:145px;
  2553. width:49px;
  2554. height:22px;
  2555. display:flex;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:16px;
  2560. }
  2561. #u77259 .text {
  2562. position:absolute;
  2563. align-self:flex-start;
  2564. padding:0px 0px 0px 0px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u77259_text {
  2569. border-width:0px;
  2570. white-space:nowrap;
  2571. text-transform:none;
  2572. }
  2573. #u77260_div {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:97px;
  2579. height:22px;
  2580. background:inherit;
  2581. background-color:rgba(255, 255, 255, 0);
  2582. border:none;
  2583. border-radius:0px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:16px;
  2591. }
  2592. #u77260 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:30px;
  2596. top:187px;
  2597. width:97px;
  2598. height:22px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:16px;
  2604. }
  2605. #u77260 .text {
  2606. position:absolute;
  2607. align-self:flex-start;
  2608. padding:0px 0px 0px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u77260_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. }
  2617. #u77261_img {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:201px;
  2623. height:2px;
  2624. }
  2625. #u77261 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:84px;
  2630. width:200px;
  2631. height:1px;
  2632. display:flex;
  2633. }
  2634. #u77261 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 2px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u77261_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u77262_div {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:49px;
  2653. height:17px;
  2654. background:inherit;
  2655. background-color:rgba(255, 255, 255, 0);
  2656. border:none;
  2657. border-radius:0px;
  2658. -moz-box-shadow:none;
  2659. -webkit-box-shadow:none;
  2660. box-shadow:none;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:12px;
  2665. color:#AAAAAA;
  2666. }
  2667. #u77262 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:30px;
  2671. top:105px;
  2672. width:49px;
  2673. height:17px;
  2674. display:flex;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:12px;
  2679. color:#AAAAAA;
  2680. }
  2681. #u77262 .text {
  2682. position:absolute;
  2683. align-self:flex-start;
  2684. padding:0px 0px 0px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u77262_text {
  2689. border-width:0px;
  2690. white-space:nowrap;
  2691. text-transform:none;
  2692. }
  2693. #u77263_div {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:97px;
  2699. height:22px;
  2700. background:inherit;
  2701. background-color:rgba(255, 255, 255, 0);
  2702. border:none;
  2703. border-radius:0px;
  2704. -moz-box-shadow:none;
  2705. -webkit-box-shadow:none;
  2706. box-shadow:none;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:16px;
  2711. }
  2712. #u77263 {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:30px;
  2716. top:229px;
  2717. width:97px;
  2718. height:22px;
  2719. display:flex;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:16px;
  2724. }
  2725. #u77263 .text {
  2726. position:absolute;
  2727. align-self:flex-start;
  2728. padding:0px 0px 0px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u77263_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. }
  2737. #u77264_div {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:65px;
  2743. height:22px;
  2744. background:inherit;
  2745. background-color:rgba(255, 255, 255, 0);
  2746. border:none;
  2747. border-radius:0px;
  2748. -moz-box-shadow:none;
  2749. -webkit-box-shadow:none;
  2750. box-shadow:none;
  2751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2752. font-weight:400;
  2753. font-style:normal;
  2754. font-size:16px;
  2755. }
  2756. #u77264 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:30px;
  2760. top:271px;
  2761. width:65px;
  2762. height:22px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:16px;
  2768. }
  2769. #u77264 .text {
  2770. position:absolute;
  2771. align-self:flex-start;
  2772. padding:0px 0px 0px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u77264_text {
  2777. border-width:0px;
  2778. white-space:nowrap;
  2779. text-transform:none;
  2780. }
  2781. #u77265_img {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:201px;
  2787. height:2px;
  2788. }
  2789. #u77265 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:313px;
  2794. width:200px;
  2795. height:1px;
  2796. display:flex;
  2797. }
  2798. #u77265 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 2px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u77265_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u77266_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:65px;
  2817. height:22px;
  2818. background:inherit;
  2819. background-color:rgba(255, 255, 255, 0);
  2820. border:none;
  2821. border-radius:0px;
  2822. -moz-box-shadow:none;
  2823. -webkit-box-shadow:none;
  2824. box-shadow:none;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:16px;
  2829. }
  2830. #u77266 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:30px;
  2834. top:370px;
  2835. width:65px;
  2836. height:22px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:16px;
  2842. }
  2843. #u77266 .text {
  2844. position:absolute;
  2845. align-self:flex-start;
  2846. padding:0px 0px 0px 0px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u77266_text {
  2851. border-width:0px;
  2852. white-space:nowrap;
  2853. text-transform:none;
  2854. }
  2855. #u77267_div {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:49px;
  2861. height:17px;
  2862. background:inherit;
  2863. background-color:rgba(255, 255, 255, 0);
  2864. border:none;
  2865. border-radius:0px;
  2866. -moz-box-shadow:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:12px;
  2873. color:#AAAAAA;
  2874. }
  2875. #u77267 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:30px;
  2879. top:334px;
  2880. width:49px;
  2881. height:17px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. color:#AAAAAA;
  2888. }
  2889. #u77267 .text {
  2890. position:absolute;
  2891. align-self:flex-start;
  2892. padding:0px 0px 0px 0px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u77267_text {
  2897. border-width:0px;
  2898. white-space:nowrap;
  2899. text-transform:none;
  2900. }
  2901. #u77268_div {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:65px;
  2907. height:22px;
  2908. background:inherit;
  2909. background-color:rgba(255, 255, 255, 0);
  2910. border:none;
  2911. border-radius:0px;
  2912. -moz-box-shadow:none;
  2913. -webkit-box-shadow:none;
  2914. box-shadow:none;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:16px;
  2919. }
  2920. #u77268 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:30px;
  2924. top:412px;
  2925. width:65px;
  2926. height:22px;
  2927. display:flex;
  2928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2929. font-weight:400;
  2930. font-style:normal;
  2931. font-size:16px;
  2932. }
  2933. #u77268 .text {
  2934. position:absolute;
  2935. align-self:flex-start;
  2936. padding:0px 0px 0px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u77268_text {
  2941. border-width:0px;
  2942. white-space:nowrap;
  2943. text-transform:none;
  2944. }
  2945. #u77269_div {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:65px;
  2951. height:22px;
  2952. background:inherit;
  2953. background-color:rgba(255, 255, 255, 0);
  2954. border:none;
  2955. border-radius:0px;
  2956. -moz-box-shadow:none;
  2957. -webkit-box-shadow:none;
  2958. box-shadow:none;
  2959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:16px;
  2963. }
  2964. #u77269 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:30px;
  2968. top:454px;
  2969. width:65px;
  2970. height:22px;
  2971. display:flex;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:16px;
  2976. }
  2977. #u77269 .text {
  2978. position:absolute;
  2979. align-self:flex-start;
  2980. padding:0px 0px 0px 0px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u77269_text {
  2985. border-width:0px;
  2986. white-space:nowrap;
  2987. text-transform:none;
  2988. }
  2989. #u77270_div {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:65px;
  2995. height:22px;
  2996. background:inherit;
  2997. background-color:rgba(255, 255, 255, 0);
  2998. border:none;
  2999. border-radius:0px;
  3000. -moz-box-shadow:none;
  3001. -webkit-box-shadow:none;
  3002. box-shadow:none;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:16px;
  3007. }
  3008. #u77270 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:30px;
  3012. top:496px;
  3013. width:65px;
  3014. height:22px;
  3015. display:flex;
  3016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:16px;
  3020. }
  3021. #u77270 .text {
  3022. position:absolute;
  3023. align-self:flex-start;
  3024. padding:0px 0px 0px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u77270_text {
  3029. border-width:0px;
  3030. white-space:nowrap;
  3031. text-transform:none;
  3032. }
  3033. #u77271_div {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:65px;
  3039. height:22px;
  3040. background:inherit;
  3041. background-color:rgba(255, 255, 255, 0);
  3042. border:none;
  3043. border-radius:0px;
  3044. -moz-box-shadow:none;
  3045. -webkit-box-shadow:none;
  3046. box-shadow:none;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:16px;
  3051. }
  3052. #u77271 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:30px;
  3056. top:538px;
  3057. width:65px;
  3058. height:22px;
  3059. display:flex;
  3060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. font-size:16px;
  3064. }
  3065. #u77271 .text {
  3066. position:absolute;
  3067. align-self:flex-start;
  3068. padding:0px 0px 0px 0px;
  3069. box-sizing:border-box;
  3070. width:100%;
  3071. }
  3072. #u77271_text {
  3073. border-width:0px;
  3074. white-space:nowrap;
  3075. text-transform:none;
  3076. }
  3077. #u77272_div {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:65px;
  3083. height:22px;
  3084. background:inherit;
  3085. background-color:rgba(255, 255, 255, 0);
  3086. border:none;
  3087. border-radius:0px;
  3088. -moz-box-shadow:none;
  3089. -webkit-box-shadow:none;
  3090. box-shadow:none;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:16px;
  3095. }
  3096. #u77272 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:30px;
  3100. top:580px;
  3101. width:65px;
  3102. height:22px;
  3103. display:flex;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:16px;
  3108. }
  3109. #u77272 .text {
  3110. position:absolute;
  3111. align-self:flex-start;
  3112. padding:0px 0px 0px 0px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u77272_text {
  3117. border-width:0px;
  3118. white-space:nowrap;
  3119. text-transform:none;
  3120. }
  3121. #u77273_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:201px;
  3127. height:2px;
  3128. }
  3129. #u77273 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:1289px;
  3134. width:200px;
  3135. height:1px;
  3136. display:flex;
  3137. }
  3138. #u77273 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u77273_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u77274_div {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:65px;
  3157. height:22px;
  3158. background:inherit;
  3159. background-color:rgba(255, 255, 255, 0);
  3160. border:none;
  3161. border-radius:0px;
  3162. -moz-box-shadow:none;
  3163. -webkit-box-shadow:none;
  3164. box-shadow:none;
  3165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:16px;
  3169. }
  3170. #u77274 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:30px;
  3174. top:1346px;
  3175. width:65px;
  3176. height:22px;
  3177. display:flex;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:16px;
  3182. }
  3183. #u77274 .text {
  3184. position:absolute;
  3185. align-self:flex-start;
  3186. padding:0px 0px 0px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u77274_text {
  3191. border-width:0px;
  3192. white-space:nowrap;
  3193. text-transform:none;
  3194. }
  3195. #u77275_div {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:49px;
  3201. height:17px;
  3202. background:inherit;
  3203. background-color:rgba(255, 255, 255, 0);
  3204. border:none;
  3205. border-radius:0px;
  3206. -moz-box-shadow:none;
  3207. -webkit-box-shadow:none;
  3208. box-shadow:none;
  3209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:12px;
  3213. color:#AAAAAA;
  3214. }
  3215. #u77275 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:30px;
  3219. top:1310px;
  3220. width:49px;
  3221. height:17px;
  3222. display:flex;
  3223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:12px;
  3227. color:#AAAAAA;
  3228. }
  3229. #u77275 .text {
  3230. position:absolute;
  3231. align-self:flex-start;
  3232. padding:0px 0px 0px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u77275_text {
  3237. border-width:0px;
  3238. white-space:nowrap;
  3239. text-transform:none;
  3240. }
  3241. #u77276_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:65px;
  3247. height:22px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 0);
  3250. border:none;
  3251. border-radius:0px;
  3252. -moz-box-shadow:none;
  3253. -webkit-box-shadow:none;
  3254. box-shadow:none;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:16px;
  3259. }
  3260. #u77276 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:30px;
  3264. top:1388px;
  3265. width:65px;
  3266. height:22px;
  3267. display:flex;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:16px;
  3272. }
  3273. #u77276 .text {
  3274. position:absolute;
  3275. align-self:flex-start;
  3276. padding:0px 0px 0px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u77276_text {
  3281. border-width:0px;
  3282. white-space:nowrap;
  3283. text-transform:none;
  3284. }
  3285. #u77277_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:65px;
  3291. height:22px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 0);
  3294. border:none;
  3295. border-radius:0px;
  3296. -moz-box-shadow:none;
  3297. -webkit-box-shadow:none;
  3298. box-shadow:none;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:16px;
  3303. }
  3304. #u77277 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:30px;
  3308. top:1472px;
  3309. width:65px;
  3310. height:22px;
  3311. display:flex;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:16px;
  3316. }
  3317. #u77277 .text {
  3318. position:absolute;
  3319. align-self:flex-start;
  3320. padding:0px 0px 0px 0px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u77277_text {
  3325. border-width:0px;
  3326. white-space:nowrap;
  3327. text-transform:none;
  3328. }
  3329. #u77278_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:201px;
  3335. height:2px;
  3336. }
  3337. #u77278 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:1514px;
  3342. width:200px;
  3343. height:1px;
  3344. display:flex;
  3345. }
  3346. #u77278 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 2px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u77278_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u77279_div {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:49px;
  3365. height:22px;
  3366. background:inherit;
  3367. background-color:rgba(255, 255, 255, 0);
  3368. border:none;
  3369. border-radius:0px;
  3370. -moz-box-shadow:none;
  3371. -webkit-box-shadow:none;
  3372. box-shadow:none;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:16px;
  3377. }
  3378. #u77279 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:30px;
  3382. top:1571px;
  3383. width:49px;
  3384. height:22px;
  3385. display:flex;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:16px;
  3390. }
  3391. #u77279 .text {
  3392. position:absolute;
  3393. align-self:flex-start;
  3394. padding:0px 0px 0px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u77279_text {
  3399. border-width:0px;
  3400. white-space:nowrap;
  3401. text-transform:none;
  3402. }
  3403. #u77280_div {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:49px;
  3409. height:17px;
  3410. background:inherit;
  3411. background-color:rgba(255, 255, 255, 0);
  3412. border:none;
  3413. border-radius:0px;
  3414. -moz-box-shadow:none;
  3415. -webkit-box-shadow:none;
  3416. box-shadow:none;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. color:#AAAAAA;
  3422. }
  3423. #u77280 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:30px;
  3427. top:1535px;
  3428. width:49px;
  3429. height:17px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#AAAAAA;
  3436. }
  3437. #u77280 .text {
  3438. position:absolute;
  3439. align-self:flex-start;
  3440. padding:0px 0px 0px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u77280_text {
  3445. border-width:0px;
  3446. white-space:nowrap;
  3447. text-transform:none;
  3448. }
  3449. #u77281_div {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:49px;
  3455. height:22px;
  3456. background:inherit;
  3457. background-color:rgba(255, 255, 255, 0);
  3458. border:none;
  3459. border-radius:0px;
  3460. -moz-box-shadow:none;
  3461. -webkit-box-shadow:none;
  3462. box-shadow:none;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:16px;
  3467. }
  3468. #u77281 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:30px;
  3472. top:1613px;
  3473. width:49px;
  3474. height:22px;
  3475. display:flex;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:16px;
  3480. }
  3481. #u77281 .text {
  3482. position:absolute;
  3483. align-self:flex-start;
  3484. padding:0px 0px 0px 0px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u77281_text {
  3489. border-width:0px;
  3490. white-space:nowrap;
  3491. text-transform:none;
  3492. }
  3493. #u77282_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:65px;
  3499. height:22px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 0);
  3502. border:none;
  3503. border-radius:0px;
  3504. -moz-box-shadow:none;
  3505. -webkit-box-shadow:none;
  3506. box-shadow:none;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:16px;
  3511. }
  3512. #u77282 {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:30px;
  3516. top:1655px;
  3517. width:65px;
  3518. height:22px;
  3519. display:flex;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:16px;
  3524. }
  3525. #u77282 .text {
  3526. position:absolute;
  3527. align-self:flex-start;
  3528. padding:0px 0px 0px 0px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u77282_text {
  3533. border-width:0px;
  3534. white-space:nowrap;
  3535. text-transform:none;
  3536. }
  3537. #u77283_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:201px;
  3543. height:2px;
  3544. }
  3545. #u77283 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:1697px;
  3550. width:200px;
  3551. height:1px;
  3552. display:flex;
  3553. }
  3554. #u77283 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u77283_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u77284_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:81px;
  3573. height:22px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 0);
  3576. border:none;
  3577. border-radius:0px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:16px;
  3585. }
  3586. #u77284 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:30px;
  3590. top:1754px;
  3591. width:81px;
  3592. height:22px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:16px;
  3598. }
  3599. #u77284 .text {
  3600. position:absolute;
  3601. align-self:flex-start;
  3602. padding:0px 0px 0px 0px;
  3603. box-sizing:border-box;
  3604. width:100%;
  3605. }
  3606. #u77284_text {
  3607. border-width:0px;
  3608. white-space:nowrap;
  3609. text-transform:none;
  3610. }
  3611. #u77285_div {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:49px;
  3617. height:17px;
  3618. background:inherit;
  3619. background-color:rgba(255, 255, 255, 0);
  3620. border:none;
  3621. border-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:12px;
  3629. color:#AAAAAA;
  3630. }
  3631. #u77285 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:30px;
  3635. top:1718px;
  3636. width:49px;
  3637. height:17px;
  3638. display:flex;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. color:#AAAAAA;
  3644. }
  3645. #u77285 .text {
  3646. position:absolute;
  3647. align-self:flex-start;
  3648. padding:0px 0px 0px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u77285_text {
  3653. border-width:0px;
  3654. white-space:nowrap;
  3655. text-transform:none;
  3656. }
  3657. #u77286_div {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:81px;
  3663. height:22px;
  3664. background:inherit;
  3665. background-color:rgba(255, 255, 255, 0);
  3666. border:none;
  3667. border-radius:0px;
  3668. -moz-box-shadow:none;
  3669. -webkit-box-shadow:none;
  3670. box-shadow:none;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:16px;
  3675. }
  3676. #u77286 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:30px;
  3680. top:1796px;
  3681. width:81px;
  3682. height:22px;
  3683. display:flex;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:16px;
  3688. }
  3689. #u77286 .text {
  3690. position:absolute;
  3691. align-self:flex-start;
  3692. padding:0px 0px 0px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u77286_text {
  3697. border-width:0px;
  3698. white-space:nowrap;
  3699. text-transform:none;
  3700. }
  3701. #u77287_div {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:81px;
  3707. height:22px;
  3708. background:inherit;
  3709. background-color:rgba(255, 255, 255, 0);
  3710. border:none;
  3711. border-radius:0px;
  3712. -moz-box-shadow:none;
  3713. -webkit-box-shadow:none;
  3714. box-shadow:none;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:16px;
  3719. }
  3720. #u77287 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:30px;
  3724. top:1838px;
  3725. width:81px;
  3726. height:22px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:16px;
  3732. }
  3733. #u77287 .text {
  3734. position:absolute;
  3735. align-self:flex-start;
  3736. padding:0px 0px 0px 0px;
  3737. box-sizing:border-box;
  3738. width:100%;
  3739. }
  3740. #u77287_text {
  3741. border-width:0px;
  3742. white-space:nowrap;
  3743. text-transform:none;
  3744. }
  3745. #u77288_div {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:65px;
  3751. height:22px;
  3752. background:inherit;
  3753. background-color:rgba(255, 255, 255, 0);
  3754. border:none;
  3755. border-radius:0px;
  3756. -moz-box-shadow:none;
  3757. -webkit-box-shadow:none;
  3758. box-shadow:none;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:16px;
  3763. }
  3764. #u77288 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:30px;
  3768. top:1430px;
  3769. width:65px;
  3770. height:22px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:16px;
  3776. }
  3777. #u77288 .text {
  3778. position:absolute;
  3779. align-self:flex-start;
  3780. padding:0px 0px 0px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u77288_text {
  3785. border-width:0px;
  3786. white-space:nowrap;
  3787. text-transform:none;
  3788. }
  3789. #u77289_img {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:201px;
  3795. height:2px;
  3796. }
  3797. #u77289 {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:669px;
  3802. width:200px;
  3803. height:1px;
  3804. display:flex;
  3805. }
  3806. #u77289 .text {
  3807. position:absolute;
  3808. align-self:center;
  3809. padding:2px 2px 2px 2px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u77289_text {
  3814. border-width:0px;
  3815. word-wrap:break-word;
  3816. text-transform:none;
  3817. visibility:hidden;
  3818. }
  3819. #u77290_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:65px;
  3825. height:22px;
  3826. background:inherit;
  3827. background-color:rgba(255, 255, 255, 0);
  3828. border:none;
  3829. border-radius:0px;
  3830. -moz-box-shadow:none;
  3831. -webkit-box-shadow:none;
  3832. box-shadow:none;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:16px;
  3837. }
  3838. #u77290 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:30px;
  3842. top:726px;
  3843. width:65px;
  3844. height:22px;
  3845. display:flex;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:16px;
  3850. }
  3851. #u77290 .text {
  3852. position:absolute;
  3853. align-self:flex-start;
  3854. padding:0px 0px 0px 0px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u77290_text {
  3859. border-width:0px;
  3860. white-space:nowrap;
  3861. text-transform:none;
  3862. }
  3863. #u77291_div {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:49px;
  3869. height:17px;
  3870. background:inherit;
  3871. background-color:rgba(255, 255, 255, 0);
  3872. border:none;
  3873. border-radius:0px;
  3874. -moz-box-shadow:none;
  3875. -webkit-box-shadow:none;
  3876. box-shadow:none;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. color:#AAAAAA;
  3882. }
  3883. #u77291 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:30px;
  3887. top:690px;
  3888. width:49px;
  3889. height:17px;
  3890. display:flex;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:12px;
  3895. color:#AAAAAA;
  3896. }
  3897. #u77291 .text {
  3898. position:absolute;
  3899. align-self:flex-start;
  3900. padding:0px 0px 0px 0px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u77291_text {
  3905. border-width:0px;
  3906. white-space:nowrap;
  3907. text-transform:none;
  3908. }
  3909. #u77292_div {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:65px;
  3915. height:22px;
  3916. background:inherit;
  3917. background-color:rgba(255, 255, 255, 0);
  3918. border:none;
  3919. border-radius:0px;
  3920. -moz-box-shadow:none;
  3921. -webkit-box-shadow:none;
  3922. box-shadow:none;
  3923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:16px;
  3927. }
  3928. #u77292 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:30px;
  3932. top:768px;
  3933. width:65px;
  3934. height:22px;
  3935. display:flex;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:16px;
  3940. }
  3941. #u77292 .text {
  3942. position:absolute;
  3943. align-self:flex-start;
  3944. padding:0px 0px 0px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u77292_text {
  3949. border-width:0px;
  3950. white-space:nowrap;
  3951. text-transform:none;
  3952. }
  3953. #u77293_div {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:65px;
  3959. height:22px;
  3960. background:inherit;
  3961. background-color:rgba(255, 255, 255, 0);
  3962. border:none;
  3963. border-radius:0px;
  3964. -moz-box-shadow:none;
  3965. -webkit-box-shadow:none;
  3966. box-shadow:none;
  3967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:16px;
  3971. }
  3972. #u77293 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:30px;
  3976. top:852px;
  3977. width:65px;
  3978. height:22px;
  3979. display:flex;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:16px;
  3984. }
  3985. #u77293 .text {
  3986. position:absolute;
  3987. align-self:flex-start;
  3988. padding:0px 0px 0px 0px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u77293_text {
  3993. border-width:0px;
  3994. white-space:nowrap;
  3995. text-transform:none;
  3996. }
  3997. #u77294_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:65px;
  4003. height:22px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 0);
  4006. border:none;
  4007. border-radius:0px;
  4008. -moz-box-shadow:none;
  4009. -webkit-box-shadow:none;
  4010. box-shadow:none;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:16px;
  4015. }
  4016. #u77294 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:30px;
  4020. top:810px;
  4021. width:65px;
  4022. height:22px;
  4023. display:flex;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:16px;
  4028. }
  4029. #u77294 .text {
  4030. position:absolute;
  4031. align-self:flex-start;
  4032. padding:0px 0px 0px 0px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u77294_text {
  4037. border-width:0px;
  4038. white-space:nowrap;
  4039. text-transform:none;
  4040. }
  4041. #u77295_div {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:65px;
  4047. height:22px;
  4048. background:inherit;
  4049. background-color:rgba(255, 255, 255, 0);
  4050. border:none;
  4051. border-radius:0px;
  4052. -moz-box-shadow:none;
  4053. -webkit-box-shadow:none;
  4054. box-shadow:none;
  4055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:16px;
  4059. }
  4060. #u77295 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:30px;
  4064. top:894px;
  4065. width:65px;
  4066. height:22px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:16px;
  4072. }
  4073. #u77295 .text {
  4074. position:absolute;
  4075. align-self:flex-start;
  4076. padding:0px 0px 0px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u77295_text {
  4081. border-width:0px;
  4082. white-space:nowrap;
  4083. text-transform:none;
  4084. }
  4085. #u77296_div {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:65px;
  4091. height:22px;
  4092. background:inherit;
  4093. background-color:rgba(255, 255, 255, 0);
  4094. border:none;
  4095. border-radius:0px;
  4096. -moz-box-shadow:none;
  4097. -webkit-box-shadow:none;
  4098. box-shadow:none;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:16px;
  4103. }
  4104. #u77296 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:30px;
  4108. top:936px;
  4109. width:65px;
  4110. height:22px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:16px;
  4116. }
  4117. #u77296 .text {
  4118. position:absolute;
  4119. align-self:flex-start;
  4120. padding:0px 0px 0px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u77296_text {
  4125. border-width:0px;
  4126. white-space:nowrap;
  4127. text-transform:none;
  4128. }
  4129. #u77297_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:201px;
  4135. height:2px;
  4136. }
  4137. #u77297 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:1018px;
  4142. width:200px;
  4143. height:1px;
  4144. display:flex;
  4145. }
  4146. #u77297 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 2px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u77297_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u77298_div {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:65px;
  4165. height:22px;
  4166. background:inherit;
  4167. background-color:rgba(255, 255, 255, 0);
  4168. border:none;
  4169. border-radius:0px;
  4170. -moz-box-shadow:none;
  4171. -webkit-box-shadow:none;
  4172. box-shadow:none;
  4173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:16px;
  4177. }
  4178. #u77298 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:30px;
  4182. top:1075px;
  4183. width:65px;
  4184. height:22px;
  4185. display:flex;
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:16px;
  4190. }
  4191. #u77298 .text {
  4192. position:absolute;
  4193. align-self:flex-start;
  4194. padding:0px 0px 0px 0px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u77298_text {
  4199. border-width:0px;
  4200. white-space:nowrap;
  4201. text-transform:none;
  4202. }
  4203. #u77299_div {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:49px;
  4209. height:17px;
  4210. background:inherit;
  4211. background-color:rgba(255, 255, 255, 0);
  4212. border:none;
  4213. border-radius:0px;
  4214. -moz-box-shadow:none;
  4215. -webkit-box-shadow:none;
  4216. box-shadow:none;
  4217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:12px;
  4221. color:#AAAAAA;
  4222. }
  4223. #u77299 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:30px;
  4227. top:1039px;
  4228. width:49px;
  4229. height:17px;
  4230. display:flex;
  4231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. font-size:12px;
  4235. color:#AAAAAA;
  4236. }
  4237. #u77299 .text {
  4238. position:absolute;
  4239. align-self:flex-start;
  4240. padding:0px 0px 0px 0px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u77299_text {
  4245. border-width:0px;
  4246. white-space:nowrap;
  4247. text-transform:none;
  4248. }
  4249. #u77300_div {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:65px;
  4255. height:22px;
  4256. background:inherit;
  4257. background-color:rgba(255, 255, 255, 0);
  4258. border:none;
  4259. border-radius:0px;
  4260. -moz-box-shadow:none;
  4261. -webkit-box-shadow:none;
  4262. box-shadow:none;
  4263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:16px;
  4267. }
  4268. #u77300 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:30px;
  4272. top:1117px;
  4273. width:65px;
  4274. height:22px;
  4275. display:flex;
  4276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4277. font-weight:400;
  4278. font-style:normal;
  4279. font-size:16px;
  4280. }
  4281. #u77300 .text {
  4282. position:absolute;
  4283. align-self:flex-start;
  4284. padding:0px 0px 0px 0px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u77300_text {
  4289. border-width:0px;
  4290. white-space:nowrap;
  4291. text-transform:none;
  4292. }
  4293. #u77301_div {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:65px;
  4299. height:22px;
  4300. background:inherit;
  4301. background-color:rgba(255, 255, 255, 0);
  4302. border:none;
  4303. border-radius:0px;
  4304. -moz-box-shadow:none;
  4305. -webkit-box-shadow:none;
  4306. box-shadow:none;
  4307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:16px;
  4311. }
  4312. #u77301 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:30px;
  4316. top:1201px;
  4317. width:65px;
  4318. height:22px;
  4319. display:flex;
  4320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4321. font-weight:400;
  4322. font-style:normal;
  4323. font-size:16px;
  4324. }
  4325. #u77301 .text {
  4326. position:absolute;
  4327. align-self:flex-start;
  4328. padding:0px 0px 0px 0px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u77301_text {
  4333. border-width:0px;
  4334. white-space:nowrap;
  4335. text-transform:none;
  4336. }
  4337. #u77302_div {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:65px;
  4343. height:22px;
  4344. background:inherit;
  4345. background-color:rgba(255, 255, 255, 0);
  4346. border:none;
  4347. border-radius:0px;
  4348. -moz-box-shadow:none;
  4349. -webkit-box-shadow:none;
  4350. box-shadow:none;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:16px;
  4355. }
  4356. #u77302 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:30px;
  4360. top:1159px;
  4361. width:65px;
  4362. height:22px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:16px;
  4368. }
  4369. #u77302 .text {
  4370. position:absolute;
  4371. align-self:flex-start;
  4372. padding:0px 0px 0px 0px;
  4373. box-sizing:border-box;
  4374. width:100%;
  4375. }
  4376. #u77302_text {
  4377. border-width:0px;
  4378. white-space:nowrap;
  4379. text-transform:none;
  4380. }
  4381. #u77303_div {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:65px;
  4387. height:22px;
  4388. background:inherit;
  4389. background-color:rgba(255, 255, 255, 0);
  4390. border:none;
  4391. border-radius:0px;
  4392. -moz-box-shadow:none;
  4393. -webkit-box-shadow:none;
  4394. box-shadow:none;
  4395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:16px;
  4399. }
  4400. #u77303 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:30px;
  4404. top:1243px;
  4405. width:65px;
  4406. height:22px;
  4407. display:flex;
  4408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4409. font-weight:400;
  4410. font-style:normal;
  4411. font-size:16px;
  4412. }
  4413. #u77303 .text {
  4414. position:absolute;
  4415. align-self:flex-start;
  4416. padding:0px 0px 0px 0px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u77303_text {
  4421. border-width:0px;
  4422. white-space:nowrap;
  4423. text-transform:none;
  4424. }
  4425. #u77304_div {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:65px;
  4431. height:22px;
  4432. background:inherit;
  4433. background-color:rgba(255, 255, 255, 0);
  4434. border:none;
  4435. border-radius:0px;
  4436. -moz-box-shadow:none;
  4437. -webkit-box-shadow:none;
  4438. box-shadow:none;
  4439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:16px;
  4443. }
  4444. #u77304 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:30px;
  4448. top:978px;
  4449. width:65px;
  4450. height:22px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:16px;
  4456. }
  4457. #u77304 .text {
  4458. position:absolute;
  4459. align-self:flex-start;
  4460. padding:0px 0px 0px 0px;
  4461. box-sizing:border-box;
  4462. width:100%;
  4463. }
  4464. #u77304_text {
  4465. border-width:0px;
  4466. white-space:nowrap;
  4467. text-transform:none;
  4468. }
  4469. #u77305_div {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:65px;
  4475. height:22px;
  4476. background:inherit;
  4477. background-color:rgba(255, 255, 255, 0);
  4478. border:none;
  4479. border-radius:0px;
  4480. -moz-box-shadow:none;
  4481. -webkit-box-shadow:none;
  4482. box-shadow:none;
  4483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:16px;
  4487. }
  4488. #u77305 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:30px;
  4492. top:622px;
  4493. width:65px;
  4494. height:22px;
  4495. display:flex;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:16px;
  4500. }
  4501. #u77305 .text {
  4502. position:absolute;
  4503. align-self:flex-start;
  4504. padding:0px 0px 0px 0px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u77305_text {
  4509. border-width:0px;
  4510. white-space:nowrap;
  4511. text-transform:none;
  4512. }