styles.css 80 KB

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