styles.css 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728
  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. #u11932_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. #u11932 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u11932 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u11932_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u11933_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. #u11933 {
  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. #u11933 .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. #u11933_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u11934_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. #u11934 {
  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. #u11934 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u11934_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u11935 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u11936_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u11936 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u11936 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u11936_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u11937_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. #u11937 {
  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. #u11937 .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. #u11937_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u11938_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. #u11938 {
  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. #u11938 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u11938_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u11939 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u11940_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. #u11940_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. #u11940_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. #u11940 {
  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. #u11940 .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. #u11940_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. #u11940.disabled {
  356. }
  357. .u11940_input_option {
  358. font-size:14px;
  359. }
  360. #u11941_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u11941 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u11941 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u11941_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u11942_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. #u11942 {
  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. #u11942 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u11942_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u11943_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. #u11943 {
  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. #u11943 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u11943_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u11944 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u11945_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. #u11945 {
  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. #u11945 .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. #u11945_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u11946_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u11946 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u11946 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u11946_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u11947 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u11948_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. #u11948 {
  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. #u11948 .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. #u11948_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u11949_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u11949 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u11949 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u11949_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u11950 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u11951_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. #u11951 {
  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. #u11951 .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. #u11951_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u11952_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u11952 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u11952 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u11952_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u11953 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u11954_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. #u11954 {
  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. #u11954 .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. #u11954_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u11955_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u11955 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u11955 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u11955_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u11956 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u11957_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. #u11957 {
  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. #u11957 .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. #u11957_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u11958_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u11958 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u11958 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u11958_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u11959 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u11960_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. #u11960 {
  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. #u11960 .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. #u11960_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u11961_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u11961 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u11961 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u11961_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u11962 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u11963_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. #u11963 {
  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. #u11963 .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. #u11963_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u11964_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u11964 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u11964 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u11964_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u11965 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u11966_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. #u11966 {
  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. #u11966 .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. #u11966_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u11967_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u11967 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u11967 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u11967_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u11968 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u11969_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. #u11969 {
  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. #u11969 .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. #u11969_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u11970_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u11970 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u11970 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u11970_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u11971 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u11972_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. #u11972 {
  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. #u11972 .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. #u11972_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u11973_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u11973 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u11973 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u11973_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u11974_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. #u11974 {
  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. #u11974 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u11974_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u11975_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u11975 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u11975 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u11975_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u11976_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. #u11976 {
  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. #u11976 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u11976_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u11977_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u11977 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u11977 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u11977_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u11978 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u11979_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. #u11979 {
  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. #u11979 .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. #u11979_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u11980_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u11980 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u11980 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u11980_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u11981 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u11982_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. #u11982 {
  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. #u11982 .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. #u11982_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u11983_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u11983 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u11983 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u11983_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u11984 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u11985_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. #u11985 {
  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. #u11985 .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. #u11985_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u11986_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u11986 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u11986 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u11986_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u11987_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. #u11987 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1260px;
  1743. height:1191px;
  1744. display:flex;
  1745. }
  1746. #u11987 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u11987_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u11988_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:109px;
  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. #u11988 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:350px;
  1782. top:71px;
  1783. width:109px;
  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. #u11988 .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. #u11988_text {
  1799. border-width:0px;
  1800. white-space:nowrap;
  1801. text-transform:none;
  1802. }
  1803. #u11989 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:0px;
  1809. height:0px;
  1810. }
  1811. #u11990 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:350px;
  1815. top:113px;
  1816. width:1204px;
  1817. height:98px;
  1818. }
  1819. #u11991_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:232px;
  1825. height:34px;
  1826. }
  1827. #u11991 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:232px;
  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. #u11991 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 10px 2px 10px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u11991_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u11992_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:232px;
  1861. height:34px;
  1862. }
  1863. #u11992 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:232px;
  1867. top:0px;
  1868. width:232px;
  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. #u11992 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 10px 2px 10px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u11992_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u11993_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:232px;
  1897. height:34px;
  1898. }
  1899. #u11993 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:464px;
  1903. top:0px;
  1904. width:232px;
  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. #u11993 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 10px 2px 10px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u11993_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. }
  1927. #u11994_img {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:226px;
  1933. height:34px;
  1934. }
  1935. #u11994 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:696px;
  1939. top:0px;
  1940. width:226px;
  1941. height:34px;
  1942. display:flex;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:14px;
  1947. color:#FFFFFF;
  1948. text-align:left;
  1949. line-height:30px;
  1950. }
  1951. #u11994 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 10px 2px 10px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u11994_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. }
  1963. #u11995_img {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:282px;
  1969. height:34px;
  1970. }
  1971. #u11995 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:922px;
  1975. top:0px;
  1976. width:282px;
  1977. height:34px;
  1978. display:flex;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:14px;
  1983. color:#FFFFFF;
  1984. text-align:left;
  1985. line-height:30px;
  1986. }
  1987. #u11995 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:2px 10px 2px 10px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u11995_text {
  1995. border-width:0px;
  1996. word-wrap:break-word;
  1997. text-transform:none;
  1998. }
  1999. #u11996_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:232px;
  2005. height:34px;
  2006. }
  2007. #u11996 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:34px;
  2012. width:232px;
  2013. height:34px;
  2014. display:flex;
  2015. font-size:14px;
  2016. text-align:left;
  2017. line-height:30px;
  2018. }
  2019. #u11996 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 10px 2px 10px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u11996_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u11997_img {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:232px;
  2038. height:34px;
  2039. }
  2040. #u11997 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:232px;
  2044. top:34px;
  2045. width:232px;
  2046. height:34px;
  2047. display:flex;
  2048. font-size:14px;
  2049. text-align:left;
  2050. line-height:30px;
  2051. }
  2052. #u11997 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 10px 2px 10px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u11997_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u11998_img {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:232px;
  2071. height:34px;
  2072. }
  2073. #u11998 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:464px;
  2077. top:34px;
  2078. width:232px;
  2079. height:34px;
  2080. display:flex;
  2081. font-size:14px;
  2082. text-align:left;
  2083. line-height:30px;
  2084. }
  2085. #u11998 .text {
  2086. position:absolute;
  2087. align-self:center;
  2088. padding:2px 10px 2px 10px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u11998_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. visibility:hidden;
  2097. }
  2098. #u11999_img {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:226px;
  2104. height:34px;
  2105. }
  2106. #u11999 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:696px;
  2110. top:34px;
  2111. width:226px;
  2112. height:34px;
  2113. display:flex;
  2114. font-size:14px;
  2115. text-align:left;
  2116. line-height:30px;
  2117. }
  2118. #u11999 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 10px 2px 10px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u11999_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. visibility:hidden;
  2130. }
  2131. #u12000_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:282px;
  2137. height:34px;
  2138. }
  2139. #u12000 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:922px;
  2143. top:34px;
  2144. width:282px;
  2145. height:34px;
  2146. display:flex;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:14px;
  2151. color:#1890FF;
  2152. text-align:left;
  2153. line-height:30px;
  2154. }
  2155. #u12000 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 10px 2px 10px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u12000_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u12001_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:232px;
  2173. height:30px;
  2174. }
  2175. #u12001 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:68px;
  2180. width:232px;
  2181. height:30px;
  2182. display:flex;
  2183. font-size:14px;
  2184. text-align:left;
  2185. line-height:30px;
  2186. }
  2187. #u12001 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 10px 2px 10px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u12001_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u12002_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:232px;
  2206. height:30px;
  2207. }
  2208. #u12002 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:232px;
  2212. top:68px;
  2213. width:232px;
  2214. height:30px;
  2215. display:flex;
  2216. font-size:14px;
  2217. text-align:left;
  2218. line-height:30px;
  2219. }
  2220. #u12002 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 10px 2px 10px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u12002_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. visibility:hidden;
  2232. }
  2233. #u12003_img {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:232px;
  2239. height:30px;
  2240. }
  2241. #u12003 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:464px;
  2245. top:68px;
  2246. width:232px;
  2247. height:30px;
  2248. display:flex;
  2249. font-size:14px;
  2250. text-align:left;
  2251. line-height:30px;
  2252. }
  2253. #u12003 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 10px 2px 10px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u12003_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. visibility:hidden;
  2265. }
  2266. #u12004_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:226px;
  2272. height:30px;
  2273. }
  2274. #u12004 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:696px;
  2278. top:68px;
  2279. width:226px;
  2280. height:30px;
  2281. display:flex;
  2282. font-size:14px;
  2283. text-align:left;
  2284. line-height:30px;
  2285. }
  2286. #u12004 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 10px 2px 10px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u12004_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u12005_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:282px;
  2305. height:30px;
  2306. }
  2307. #u12005 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:922px;
  2311. top:68px;
  2312. width:282px;
  2313. height:30px;
  2314. display:flex;
  2315. font-size:14px;
  2316. color:#1890FF;
  2317. text-align:left;
  2318. line-height:30px;
  2319. }
  2320. #u12005 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 10px 2px 10px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u12005_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u12006_div {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:80px;
  2339. height:30px;
  2340. background:inherit;
  2341. background-color:rgba(41, 143, 255, 1);
  2342. border:none;
  2343. border-radius:4px;
  2344. -moz-box-shadow:none;
  2345. -webkit-box-shadow:none;
  2346. box-shadow:none;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:14px;
  2351. color:#FFFFFF;
  2352. }
  2353. #u12006 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:1474px;
  2357. top:71px;
  2358. width:80px;
  2359. height:30px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:14px;
  2365. color:#FFFFFF;
  2366. }
  2367. #u12006 .text {
  2368. position:absolute;
  2369. align-self:center;
  2370. padding:5px 10px 5px 10px;
  2371. box-sizing:border-box;
  2372. width:100%;
  2373. }
  2374. #u12006_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. }
  2379. #u12007_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:-5px;
  2383. top:-5px;
  2384. width:525px;
  2385. height:280px;
  2386. }
  2387. #u12007 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:814px;
  2391. top:310px;
  2392. width:515px;
  2393. height:270px;
  2394. display:flex;
  2395. }
  2396. #u12007 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 2px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u12007_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u12009 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:0px;
  2415. height:0px;
  2416. }
  2417. #u12010_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:200px;
  2423. height:1191px;
  2424. }
  2425. #u12010 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:120px;
  2429. top:50px;
  2430. width:200px;
  2431. height:1191px;
  2432. display:flex;
  2433. }
  2434. #u12010 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 2px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u12010_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u12011_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:200px;
  2453. height:60px;
  2454. background:inherit;
  2455. background-color:rgba(224, 231, 247, 1);
  2456. border:none;
  2457. border-radius:0px;
  2458. -moz-box-shadow:none;
  2459. -webkit-box-shadow:none;
  2460. box-shadow:none;
  2461. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2462. font-weight:500;
  2463. font-style:normal;
  2464. font-size:18px;
  2465. }
  2466. #u12011 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:120px;
  2470. top:50px;
  2471. width:200px;
  2472. height:60px;
  2473. display:flex;
  2474. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2475. font-weight:500;
  2476. font-style:normal;
  2477. font-size:18px;
  2478. }
  2479. #u12011 .text {
  2480. position:absolute;
  2481. align-self:center;
  2482. padding:0px 0px 0px 20px;
  2483. box-sizing:border-box;
  2484. width:100%;
  2485. }
  2486. #u12011_text {
  2487. border-width:0px;
  2488. word-wrap:break-word;
  2489. text-transform:none;
  2490. }
  2491. #u12012 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:120px;
  2495. top:130px;
  2496. width:200px;
  2497. height:1078px;
  2498. }
  2499. #u12012_state0 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:200px;
  2505. height:1078px;
  2506. overflow:auto;
  2507. -webkit-overflow-scrolling:touch;
  2508. -ms-overflow-x:hidden;
  2509. overflow-x:hidden;
  2510. background-image:none;
  2511. border:none;
  2512. border-radius:0px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. }
  2517. #u12012_state0_content {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:1px;
  2523. height:1px;
  2524. }
  2525. #u12013_div {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:97px;
  2531. height:22px;
  2532. background:inherit;
  2533. background-color:rgba(255, 255, 255, 0);
  2534. border:none;
  2535. border-radius:0px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:16px;
  2543. }
  2544. #u12013 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:30px;
  2548. top:0px;
  2549. width:97px;
  2550. height:22px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:16px;
  2556. }
  2557. #u12013 .text {
  2558. position:absolute;
  2559. align-self:flex-start;
  2560. padding:0px 0px 0px 0px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u12013_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u12014_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:65px;
  2575. height:22px;
  2576. background:inherit;
  2577. background-color:rgba(255, 255, 255, 0);
  2578. border:none;
  2579. border-radius:0px;
  2580. -moz-box-shadow:none;
  2581. -webkit-box-shadow:none;
  2582. box-shadow:none;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:16px;
  2587. }
  2588. #u12014 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:30px;
  2592. top:42px;
  2593. width:65px;
  2594. height:22px;
  2595. display:flex;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:16px;
  2600. }
  2601. #u12014 .text {
  2602. position:absolute;
  2603. align-self:flex-start;
  2604. padding:0px 0px 0px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u12014_text {
  2609. border-width:0px;
  2610. white-space:nowrap;
  2611. text-transform:none;
  2612. }
  2613. #u12015_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:49px;
  2619. height:22px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 0);
  2622. border:none;
  2623. border-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:16px;
  2631. }
  2632. #u12015 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:30px;
  2636. top:145px;
  2637. width:49px;
  2638. height:22px;
  2639. display:flex;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:16px;
  2644. }
  2645. #u12015 .text {
  2646. position:absolute;
  2647. align-self:flex-start;
  2648. padding:0px 0px 0px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u12015_text {
  2653. border-width:0px;
  2654. white-space:nowrap;
  2655. text-transform:none;
  2656. }
  2657. #u12016_div {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:97px;
  2663. height:22px;
  2664. background:inherit;
  2665. background-color:rgba(255, 255, 255, 0);
  2666. border:none;
  2667. border-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:16px;
  2675. }
  2676. #u12016 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:30px;
  2680. top:187px;
  2681. width:97px;
  2682. height:22px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:16px;
  2688. }
  2689. #u12016 .text {
  2690. position:absolute;
  2691. align-self:flex-start;
  2692. padding:0px 0px 0px 0px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u12016_text {
  2697. border-width:0px;
  2698. word-wrap:break-word;
  2699. text-transform:none;
  2700. }
  2701. #u12017_img {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:201px;
  2707. height:2px;
  2708. }
  2709. #u12017 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:84px;
  2714. width:200px;
  2715. height:1px;
  2716. display:flex;
  2717. }
  2718. #u12017 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u12017_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u12018_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:49px;
  2737. height:17px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 0);
  2740. border:none;
  2741. border-radius:0px;
  2742. -moz-box-shadow:none;
  2743. -webkit-box-shadow:none;
  2744. box-shadow:none;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. color:#AAAAAA;
  2750. }
  2751. #u12018 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:30px;
  2755. top:105px;
  2756. width:49px;
  2757. height:17px;
  2758. display:flex;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:12px;
  2763. color:#AAAAAA;
  2764. }
  2765. #u12018 .text {
  2766. position:absolute;
  2767. align-self:flex-start;
  2768. padding:0px 0px 0px 0px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u12018_text {
  2773. border-width:0px;
  2774. white-space:nowrap;
  2775. text-transform:none;
  2776. }
  2777. #u12019_div {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:97px;
  2783. height:22px;
  2784. background:inherit;
  2785. background-color:rgba(255, 255, 255, 0);
  2786. border:none;
  2787. border-radius:0px;
  2788. -moz-box-shadow:none;
  2789. -webkit-box-shadow:none;
  2790. box-shadow:none;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:16px;
  2795. }
  2796. #u12019 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:30px;
  2800. top:229px;
  2801. width:97px;
  2802. height:22px;
  2803. display:flex;
  2804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:16px;
  2808. }
  2809. #u12019 .text {
  2810. position:absolute;
  2811. align-self:flex-start;
  2812. padding:0px 0px 0px 0px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u12019_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. }
  2821. #u12020_div {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:65px;
  2827. height:22px;
  2828. background:inherit;
  2829. background-color:rgba(255, 255, 255, 0);
  2830. border:none;
  2831. border-radius:0px;
  2832. -moz-box-shadow:none;
  2833. -webkit-box-shadow:none;
  2834. box-shadow:none;
  2835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:16px;
  2839. }
  2840. #u12020 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:30px;
  2844. top:271px;
  2845. width:65px;
  2846. height:22px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:16px;
  2852. }
  2853. #u12020 .text {
  2854. position:absolute;
  2855. align-self:flex-start;
  2856. padding:0px 0px 0px 0px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u12020_text {
  2861. border-width:0px;
  2862. white-space:nowrap;
  2863. text-transform:none;
  2864. }
  2865. #u12021_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:201px;
  2871. height:2px;
  2872. }
  2873. #u12021 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:353px;
  2878. width:200px;
  2879. height:1px;
  2880. display:flex;
  2881. }
  2882. #u12021 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 2px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u12021_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u12022_div {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:65px;
  2901. height:22px;
  2902. background:inherit;
  2903. background-color:rgba(255, 255, 255, 0);
  2904. border:none;
  2905. border-radius:0px;
  2906. -moz-box-shadow:none;
  2907. -webkit-box-shadow:none;
  2908. box-shadow:none;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:16px;
  2913. }
  2914. #u12022 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:30px;
  2918. top:410px;
  2919. width:65px;
  2920. height:22px;
  2921. display:flex;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:16px;
  2926. }
  2927. #u12022 .text {
  2928. position:absolute;
  2929. align-self:flex-start;
  2930. padding:0px 0px 0px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u12022_text {
  2935. border-width:0px;
  2936. white-space:nowrap;
  2937. text-transform:none;
  2938. }
  2939. #u12023_div {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:49px;
  2945. height:17px;
  2946. background:inherit;
  2947. background-color:rgba(255, 255, 255, 0);
  2948. border:none;
  2949. border-radius:0px;
  2950. -moz-box-shadow:none;
  2951. -webkit-box-shadow:none;
  2952. box-shadow:none;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:12px;
  2957. color:#AAAAAA;
  2958. }
  2959. #u12023 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:30px;
  2963. top:374px;
  2964. width:49px;
  2965. height:17px;
  2966. display:flex;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:12px;
  2971. color:#AAAAAA;
  2972. }
  2973. #u12023 .text {
  2974. position:absolute;
  2975. align-self:flex-start;
  2976. padding:0px 0px 0px 0px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u12023_text {
  2981. border-width:0px;
  2982. white-space:nowrap;
  2983. text-transform:none;
  2984. }
  2985. #u12024_div {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:65px;
  2991. height:22px;
  2992. background:inherit;
  2993. background-color:rgba(255, 255, 255, 0);
  2994. border:none;
  2995. border-radius:0px;
  2996. -moz-box-shadow:none;
  2997. -webkit-box-shadow:none;
  2998. box-shadow:none;
  2999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. font-size:16px;
  3003. }
  3004. #u12024 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:30px;
  3008. top:452px;
  3009. width:65px;
  3010. height:22px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:16px;
  3016. }
  3017. #u12024 .text {
  3018. position:absolute;
  3019. align-self:flex-start;
  3020. padding:0px 0px 0px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u12024_text {
  3025. border-width:0px;
  3026. white-space:nowrap;
  3027. text-transform:none;
  3028. }
  3029. #u12025_div {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:65px;
  3035. height:22px;
  3036. background:inherit;
  3037. background-color:rgba(255, 255, 255, 0);
  3038. border:none;
  3039. border-radius:0px;
  3040. -moz-box-shadow:none;
  3041. -webkit-box-shadow:none;
  3042. box-shadow:none;
  3043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:16px;
  3047. }
  3048. #u12025 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:30px;
  3052. top:494px;
  3053. width:65px;
  3054. height:22px;
  3055. display:flex;
  3056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. font-size:16px;
  3060. }
  3061. #u12025 .text {
  3062. position:absolute;
  3063. align-self:flex-start;
  3064. padding:0px 0px 0px 0px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u12025_text {
  3069. border-width:0px;
  3070. white-space:nowrap;
  3071. text-transform:none;
  3072. }
  3073. #u12026_div {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:65px;
  3079. height:22px;
  3080. background:inherit;
  3081. background-color:rgba(255, 255, 255, 0);
  3082. border:none;
  3083. border-radius:0px;
  3084. -moz-box-shadow:none;
  3085. -webkit-box-shadow:none;
  3086. box-shadow:none;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:16px;
  3091. }
  3092. #u12026 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:30px;
  3096. top:536px;
  3097. width:65px;
  3098. height:22px;
  3099. display:flex;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:16px;
  3104. }
  3105. #u12026 .text {
  3106. position:absolute;
  3107. align-self:flex-start;
  3108. padding:0px 0px 0px 0px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u12026_text {
  3113. border-width:0px;
  3114. white-space:nowrap;
  3115. text-transform:none;
  3116. }
  3117. #u12027_div {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:65px;
  3123. height:22px;
  3124. background:inherit;
  3125. background-color:rgba(255, 255, 255, 0);
  3126. border:none;
  3127. border-radius:0px;
  3128. -moz-box-shadow:none;
  3129. -webkit-box-shadow:none;
  3130. box-shadow:none;
  3131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3132. font-weight:400;
  3133. font-style:normal;
  3134. font-size:16px;
  3135. }
  3136. #u12027 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:30px;
  3140. top:578px;
  3141. width:65px;
  3142. height:22px;
  3143. display:flex;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:16px;
  3148. }
  3149. #u12027 .text {
  3150. position:absolute;
  3151. align-self:flex-start;
  3152. padding:0px 0px 0px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u12027_text {
  3157. border-width:0px;
  3158. white-space:nowrap;
  3159. text-transform:none;
  3160. }
  3161. #u12028_div {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:65px;
  3167. height:22px;
  3168. background:inherit;
  3169. background-color:rgba(255, 255, 255, 0);
  3170. border:none;
  3171. border-radius:0px;
  3172. -moz-box-shadow:none;
  3173. -webkit-box-shadow:none;
  3174. box-shadow:none;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:16px;
  3179. }
  3180. #u12028 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:30px;
  3184. top:620px;
  3185. width:65px;
  3186. height:22px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:16px;
  3192. }
  3193. #u12028 .text {
  3194. position:absolute;
  3195. align-self:flex-start;
  3196. padding:0px 0px 0px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u12028_text {
  3201. border-width:0px;
  3202. white-space:nowrap;
  3203. text-transform:none;
  3204. }
  3205. #u12029_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:201px;
  3211. height:2px;
  3212. }
  3213. #u12029 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:1325px;
  3218. width:200px;
  3219. height:1px;
  3220. display:flex;
  3221. }
  3222. #u12029 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 2px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u12029_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u12030_div {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:65px;
  3241. height:22px;
  3242. background:inherit;
  3243. background-color:rgba(255, 255, 255, 0);
  3244. border:none;
  3245. border-radius:0px;
  3246. -moz-box-shadow:none;
  3247. -webkit-box-shadow:none;
  3248. box-shadow:none;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:16px;
  3253. }
  3254. #u12030 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:30px;
  3258. top:1382px;
  3259. width:65px;
  3260. height:22px;
  3261. display:flex;
  3262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. font-size:16px;
  3266. }
  3267. #u12030 .text {
  3268. position:absolute;
  3269. align-self:flex-start;
  3270. padding:0px 0px 0px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u12030_text {
  3275. border-width:0px;
  3276. white-space:nowrap;
  3277. text-transform:none;
  3278. }
  3279. #u12031_div {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:49px;
  3285. height:17px;
  3286. background:inherit;
  3287. background-color:rgba(255, 255, 255, 0);
  3288. border:none;
  3289. border-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. color:#AAAAAA;
  3298. }
  3299. #u12031 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:30px;
  3303. top:1346px;
  3304. width:49px;
  3305. height:17px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. color:#AAAAAA;
  3312. }
  3313. #u12031 .text {
  3314. position:absolute;
  3315. align-self:flex-start;
  3316. padding:0px 0px 0px 0px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u12031_text {
  3321. border-width:0px;
  3322. white-space:nowrap;
  3323. text-transform:none;
  3324. }
  3325. #u12032_div {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:65px;
  3331. height:22px;
  3332. background:inherit;
  3333. background-color:rgba(255, 255, 255, 0);
  3334. border:none;
  3335. border-radius:0px;
  3336. -moz-box-shadow:none;
  3337. -webkit-box-shadow:none;
  3338. box-shadow:none;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:16px;
  3343. }
  3344. #u12032 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:30px;
  3348. top:1424px;
  3349. width:65px;
  3350. height:22px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:16px;
  3356. }
  3357. #u12032 .text {
  3358. position:absolute;
  3359. align-self:flex-start;
  3360. padding:0px 0px 0px 0px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u12032_text {
  3365. border-width:0px;
  3366. white-space:nowrap;
  3367. text-transform:none;
  3368. }
  3369. #u12033_div {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:65px;
  3375. height:22px;
  3376. background:inherit;
  3377. background-color:rgba(255, 255, 255, 0);
  3378. border:none;
  3379. border-radius:0px;
  3380. -moz-box-shadow:none;
  3381. -webkit-box-shadow:none;
  3382. box-shadow:none;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:16px;
  3387. }
  3388. #u12033 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:30px;
  3392. top:1508px;
  3393. width:65px;
  3394. height:22px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:16px;
  3400. }
  3401. #u12033 .text {
  3402. position:absolute;
  3403. align-self:flex-start;
  3404. padding:0px 0px 0px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u12033_text {
  3409. border-width:0px;
  3410. white-space:nowrap;
  3411. text-transform:none;
  3412. }
  3413. #u12034_img {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:201px;
  3419. height:2px;
  3420. }
  3421. #u12034 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:1634px;
  3426. width:200px;
  3427. height:1px;
  3428. display:flex;
  3429. }
  3430. #u12034 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 2px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u12034_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u12035_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:49px;
  3449. height:22px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 0);
  3452. border:none;
  3453. border-radius:0px;
  3454. -moz-box-shadow:none;
  3455. -webkit-box-shadow:none;
  3456. box-shadow:none;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:16px;
  3461. }
  3462. #u12035 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:30px;
  3466. top:1691px;
  3467. width:49px;
  3468. height:22px;
  3469. display:flex;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:16px;
  3474. }
  3475. #u12035 .text {
  3476. position:absolute;
  3477. align-self:flex-start;
  3478. padding:0px 0px 0px 0px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u12035_text {
  3483. border-width:0px;
  3484. white-space:nowrap;
  3485. text-transform:none;
  3486. }
  3487. #u12036_div {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:49px;
  3493. height:17px;
  3494. background:inherit;
  3495. background-color:rgba(255, 255, 255, 0);
  3496. border:none;
  3497. border-radius:0px;
  3498. -moz-box-shadow:none;
  3499. -webkit-box-shadow:none;
  3500. box-shadow:none;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:12px;
  3505. color:#AAAAAA;
  3506. }
  3507. #u12036 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:30px;
  3511. top:1655px;
  3512. width:49px;
  3513. height:17px;
  3514. display:flex;
  3515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:12px;
  3519. color:#AAAAAA;
  3520. }
  3521. #u12036 .text {
  3522. position:absolute;
  3523. align-self:flex-start;
  3524. padding:0px 0px 0px 0px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u12036_text {
  3529. border-width:0px;
  3530. white-space:nowrap;
  3531. text-transform:none;
  3532. }
  3533. #u12037_div {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:49px;
  3539. height:22px;
  3540. background:inherit;
  3541. background-color:rgba(255, 255, 255, 0);
  3542. border:none;
  3543. border-radius:0px;
  3544. -moz-box-shadow:none;
  3545. -webkit-box-shadow:none;
  3546. box-shadow:none;
  3547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3548. font-weight:400;
  3549. font-style:normal;
  3550. font-size:16px;
  3551. }
  3552. #u12037 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:30px;
  3556. top:1733px;
  3557. width:49px;
  3558. height:22px;
  3559. display:flex;
  3560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:16px;
  3564. }
  3565. #u12037 .text {
  3566. position:absolute;
  3567. align-self:flex-start;
  3568. padding:0px 0px 0px 0px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u12037_text {
  3573. border-width:0px;
  3574. white-space:nowrap;
  3575. text-transform:none;
  3576. }
  3577. #u12038_div {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:65px;
  3583. height:22px;
  3584. background:inherit;
  3585. background-color:rgba(255, 255, 255, 0);
  3586. border:none;
  3587. border-radius:0px;
  3588. -moz-box-shadow:none;
  3589. -webkit-box-shadow:none;
  3590. box-shadow:none;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:16px;
  3595. }
  3596. #u12038 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:30px;
  3600. top:1775px;
  3601. width:65px;
  3602. height:22px;
  3603. display:flex;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:16px;
  3608. }
  3609. #u12038 .text {
  3610. position:absolute;
  3611. align-self:flex-start;
  3612. padding:0px 0px 0px 0px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u12038_text {
  3617. border-width:0px;
  3618. white-space:nowrap;
  3619. text-transform:none;
  3620. }
  3621. #u12039_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:201px;
  3627. height:2px;
  3628. }
  3629. #u12039 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:1817px;
  3634. width:200px;
  3635. height:1px;
  3636. display:flex;
  3637. }
  3638. #u12039 .text {
  3639. position:absolute;
  3640. align-self:center;
  3641. padding:2px 2px 2px 2px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u12039_text {
  3646. border-width:0px;
  3647. word-wrap:break-word;
  3648. text-transform:none;
  3649. visibility:hidden;
  3650. }
  3651. #u12040_div {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:81px;
  3657. height:22px;
  3658. background:inherit;
  3659. background-color:rgba(255, 255, 255, 0);
  3660. border:none;
  3661. border-radius:0px;
  3662. -moz-box-shadow:none;
  3663. -webkit-box-shadow:none;
  3664. box-shadow:none;
  3665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:16px;
  3669. }
  3670. #u12040 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:30px;
  3674. top:1874px;
  3675. width:81px;
  3676. height:22px;
  3677. display:flex;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:16px;
  3682. }
  3683. #u12040 .text {
  3684. position:absolute;
  3685. align-self:flex-start;
  3686. padding:0px 0px 0px 0px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u12040_text {
  3691. border-width:0px;
  3692. white-space:nowrap;
  3693. text-transform:none;
  3694. }
  3695. #u12041_div {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:49px;
  3701. height:17px;
  3702. background:inherit;
  3703. background-color:rgba(255, 255, 255, 0);
  3704. border:none;
  3705. border-radius:0px;
  3706. -moz-box-shadow:none;
  3707. -webkit-box-shadow:none;
  3708. box-shadow:none;
  3709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:12px;
  3713. color:#AAAAAA;
  3714. }
  3715. #u12041 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:30px;
  3719. top:1838px;
  3720. width:49px;
  3721. height:17px;
  3722. display:flex;
  3723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:12px;
  3727. color:#AAAAAA;
  3728. }
  3729. #u12041 .text {
  3730. position:absolute;
  3731. align-self:flex-start;
  3732. padding:0px 0px 0px 0px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u12041_text {
  3737. border-width:0px;
  3738. white-space:nowrap;
  3739. text-transform:none;
  3740. }
  3741. #u12042_div {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:81px;
  3747. height:22px;
  3748. background:inherit;
  3749. background-color:rgba(255, 255, 255, 0);
  3750. border:none;
  3751. border-radius:0px;
  3752. -moz-box-shadow:none;
  3753. -webkit-box-shadow:none;
  3754. box-shadow:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:16px;
  3759. }
  3760. #u12042 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:30px;
  3764. top:1916px;
  3765. width:81px;
  3766. height:22px;
  3767. display:flex;
  3768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3769. font-weight:400;
  3770. font-style:normal;
  3771. font-size:16px;
  3772. }
  3773. #u12042 .text {
  3774. position:absolute;
  3775. align-self:flex-start;
  3776. padding:0px 0px 0px 0px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u12042_text {
  3781. border-width:0px;
  3782. white-space:nowrap;
  3783. text-transform:none;
  3784. }
  3785. #u12043_div {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:81px;
  3791. height:22px;
  3792. background:inherit;
  3793. background-color:rgba(255, 255, 255, 0);
  3794. border:none;
  3795. border-radius:0px;
  3796. -moz-box-shadow:none;
  3797. -webkit-box-shadow:none;
  3798. box-shadow:none;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:16px;
  3803. }
  3804. #u12043 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:30px;
  3808. top:1958px;
  3809. width:81px;
  3810. height:22px;
  3811. display:flex;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:16px;
  3816. }
  3817. #u12043 .text {
  3818. position:absolute;
  3819. align-self:flex-start;
  3820. padding:0px 0px 0px 0px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u12043_text {
  3825. border-width:0px;
  3826. white-space:nowrap;
  3827. text-transform:none;
  3828. }
  3829. #u12044_div {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:65px;
  3835. height:22px;
  3836. background:inherit;
  3837. background-color:rgba(255, 255, 255, 0);
  3838. border:none;
  3839. border-radius:0px;
  3840. -moz-box-shadow:none;
  3841. -webkit-box-shadow:none;
  3842. box-shadow:none;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:16px;
  3847. }
  3848. #u12044 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:30px;
  3852. top:1466px;
  3853. width:65px;
  3854. height:22px;
  3855. display:flex;
  3856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:16px;
  3860. }
  3861. #u12044 .text {
  3862. position:absolute;
  3863. align-self:flex-start;
  3864. padding:0px 0px 0px 0px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u12044_text {
  3869. border-width:0px;
  3870. white-space:nowrap;
  3871. text-transform:none;
  3872. }
  3873. #u12045_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:201px;
  3879. height:2px;
  3880. }
  3881. #u12045 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:709px;
  3886. width:200px;
  3887. height:1px;
  3888. display:flex;
  3889. }
  3890. #u12045 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 2px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u12045_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u12046_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:65px;
  3909. height:22px;
  3910. background:inherit;
  3911. background-color:rgba(255, 255, 255, 0);
  3912. border:none;
  3913. border-radius:0px;
  3914. -moz-box-shadow:none;
  3915. -webkit-box-shadow:none;
  3916. box-shadow:none;
  3917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:16px;
  3921. }
  3922. #u12046 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:30px;
  3926. top:766px;
  3927. width:65px;
  3928. height:22px;
  3929. display:flex;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:16px;
  3934. }
  3935. #u12046 .text {
  3936. position:absolute;
  3937. align-self:flex-start;
  3938. padding:0px 0px 0px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u12046_text {
  3943. border-width:0px;
  3944. white-space:nowrap;
  3945. text-transform:none;
  3946. }
  3947. #u12047_div {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:49px;
  3953. height:17px;
  3954. background:inherit;
  3955. background-color:rgba(255, 255, 255, 0);
  3956. border:none;
  3957. border-radius:0px;
  3958. -moz-box-shadow:none;
  3959. -webkit-box-shadow:none;
  3960. box-shadow:none;
  3961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:12px;
  3965. color:#AAAAAA;
  3966. }
  3967. #u12047 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:30px;
  3971. top:730px;
  3972. width:49px;
  3973. height:17px;
  3974. display:flex;
  3975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:12px;
  3979. color:#AAAAAA;
  3980. }
  3981. #u12047 .text {
  3982. position:absolute;
  3983. align-self:flex-start;
  3984. padding:0px 0px 0px 0px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u12047_text {
  3989. border-width:0px;
  3990. white-space:nowrap;
  3991. text-transform:none;
  3992. }
  3993. #u12048_div {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:65px;
  3999. height:22px;
  4000. background:inherit;
  4001. background-color:rgba(255, 255, 255, 0);
  4002. border:none;
  4003. border-radius:0px;
  4004. -moz-box-shadow:none;
  4005. -webkit-box-shadow:none;
  4006. box-shadow:none;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:16px;
  4011. }
  4012. #u12048 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:30px;
  4016. top:808px;
  4017. width:65px;
  4018. height:22px;
  4019. display:flex;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:16px;
  4024. }
  4025. #u12048 .text {
  4026. position:absolute;
  4027. align-self:flex-start;
  4028. padding:0px 0px 0px 0px;
  4029. box-sizing:border-box;
  4030. width:100%;
  4031. }
  4032. #u12048_text {
  4033. border-width:0px;
  4034. white-space:nowrap;
  4035. text-transform:none;
  4036. }
  4037. #u12049_div {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:65px;
  4043. height:22px;
  4044. background:inherit;
  4045. background-color:rgba(255, 255, 255, 0);
  4046. border:none;
  4047. border-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:16px;
  4055. }
  4056. #u12049 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:30px;
  4060. top:892px;
  4061. width:65px;
  4062. height:22px;
  4063. display:flex;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:16px;
  4068. }
  4069. #u12049 .text {
  4070. position:absolute;
  4071. align-self:flex-start;
  4072. padding:0px 0px 0px 0px;
  4073. box-sizing:border-box;
  4074. width:100%;
  4075. }
  4076. #u12049_text {
  4077. border-width:0px;
  4078. white-space:nowrap;
  4079. text-transform:none;
  4080. }
  4081. #u12050_div {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:65px;
  4087. height:22px;
  4088. background:inherit;
  4089. background-color:rgba(255, 255, 255, 0);
  4090. border:none;
  4091. border-radius:0px;
  4092. -moz-box-shadow:none;
  4093. -webkit-box-shadow:none;
  4094. box-shadow:none;
  4095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4096. font-weight:400;
  4097. font-style:normal;
  4098. font-size:16px;
  4099. }
  4100. #u12050 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:30px;
  4104. top:850px;
  4105. width:65px;
  4106. height:22px;
  4107. display:flex;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:16px;
  4112. }
  4113. #u12050 .text {
  4114. position:absolute;
  4115. align-self:flex-start;
  4116. padding:0px 0px 0px 0px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u12050_text {
  4121. border-width:0px;
  4122. white-space:nowrap;
  4123. text-transform:none;
  4124. }
  4125. #u12051_div {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:65px;
  4131. height:22px;
  4132. background:inherit;
  4133. background-color:rgba(255, 255, 255, 0);
  4134. border:none;
  4135. border-radius:0px;
  4136. -moz-box-shadow:none;
  4137. -webkit-box-shadow:none;
  4138. box-shadow:none;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:16px;
  4143. }
  4144. #u12051 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:30px;
  4148. top:934px;
  4149. width:65px;
  4150. height:22px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:16px;
  4156. }
  4157. #u12051 .text {
  4158. position:absolute;
  4159. align-self:flex-start;
  4160. padding:0px 0px 0px 0px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u12051_text {
  4165. border-width:0px;
  4166. white-space:nowrap;
  4167. text-transform:none;
  4168. }
  4169. #u12052_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:65px;
  4175. height:22px;
  4176. background:inherit;
  4177. background-color:rgba(255, 255, 255, 0);
  4178. border:none;
  4179. border-radius:0px;
  4180. -moz-box-shadow:none;
  4181. -webkit-box-shadow:none;
  4182. box-shadow:none;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:16px;
  4187. }
  4188. #u12052 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:30px;
  4192. top:976px;
  4193. width:65px;
  4194. height:22px;
  4195. display:flex;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:16px;
  4200. }
  4201. #u12052 .text {
  4202. position:absolute;
  4203. align-self:flex-start;
  4204. padding:0px 0px 0px 0px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u12052_text {
  4209. border-width:0px;
  4210. white-space:nowrap;
  4211. text-transform:none;
  4212. }
  4213. #u12053_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:201px;
  4219. height:2px;
  4220. }
  4221. #u12053 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:1058px;
  4226. width:200px;
  4227. height:1px;
  4228. display:flex;
  4229. }
  4230. #u12053 .text {
  4231. position:absolute;
  4232. align-self:center;
  4233. padding:2px 2px 2px 2px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u12053_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. visibility:hidden;
  4242. }
  4243. #u12054_div {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:65px;
  4249. height:22px;
  4250. background:inherit;
  4251. background-color:rgba(255, 255, 255, 0);
  4252. border:none;
  4253. border-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:16px;
  4261. }
  4262. #u12054 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:30px;
  4266. top:1115px;
  4267. width:65px;
  4268. height:22px;
  4269. display:flex;
  4270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:16px;
  4274. }
  4275. #u12054 .text {
  4276. position:absolute;
  4277. align-self:flex-start;
  4278. padding:0px 0px 0px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u12054_text {
  4283. border-width:0px;
  4284. white-space:nowrap;
  4285. text-transform:none;
  4286. }
  4287. #u12055_div {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:49px;
  4293. height:17px;
  4294. background:inherit;
  4295. background-color:rgba(255, 255, 255, 0);
  4296. border:none;
  4297. border-radius:0px;
  4298. -moz-box-shadow:none;
  4299. -webkit-box-shadow:none;
  4300. box-shadow:none;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:12px;
  4305. color:#AAAAAA;
  4306. }
  4307. #u12055 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:30px;
  4311. top:1079px;
  4312. width:49px;
  4313. height:17px;
  4314. display:flex;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:12px;
  4319. color:#AAAAAA;
  4320. }
  4321. #u12055 .text {
  4322. position:absolute;
  4323. align-self:flex-start;
  4324. padding:0px 0px 0px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u12055_text {
  4329. border-width:0px;
  4330. white-space:nowrap;
  4331. text-transform:none;
  4332. }
  4333. #u12056_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:65px;
  4339. height:22px;
  4340. background:inherit;
  4341. background-color:rgba(255, 255, 255, 0);
  4342. border:none;
  4343. border-radius:0px;
  4344. -moz-box-shadow:none;
  4345. -webkit-box-shadow:none;
  4346. box-shadow:none;
  4347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4348. font-weight:400;
  4349. font-style:normal;
  4350. font-size:16px;
  4351. }
  4352. #u12056 {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:30px;
  4356. top:1157px;
  4357. width:65px;
  4358. height:22px;
  4359. display:flex;
  4360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:16px;
  4364. }
  4365. #u12056 .text {
  4366. position:absolute;
  4367. align-self:flex-start;
  4368. padding:0px 0px 0px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u12056_text {
  4373. border-width:0px;
  4374. white-space:nowrap;
  4375. text-transform:none;
  4376. }
  4377. #u12057_div {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:65px;
  4383. height:22px;
  4384. background:inherit;
  4385. background-color:rgba(255, 255, 255, 0);
  4386. border:none;
  4387. border-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:16px;
  4395. }
  4396. #u12057 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:30px;
  4400. top:1241px;
  4401. width:65px;
  4402. height:22px;
  4403. display:flex;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:16px;
  4408. }
  4409. #u12057 .text {
  4410. position:absolute;
  4411. align-self:flex-start;
  4412. padding:0px 0px 0px 0px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u12057_text {
  4417. border-width:0px;
  4418. white-space:nowrap;
  4419. text-transform:none;
  4420. }
  4421. #u12058_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:65px;
  4427. height:22px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 0);
  4430. border:none;
  4431. border-radius:0px;
  4432. -moz-box-shadow:none;
  4433. -webkit-box-shadow:none;
  4434. box-shadow:none;
  4435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4436. font-weight:400;
  4437. font-style:normal;
  4438. font-size:16px;
  4439. }
  4440. #u12058 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:30px;
  4444. top:1199px;
  4445. width:65px;
  4446. height:22px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:16px;
  4452. }
  4453. #u12058 .text {
  4454. position:absolute;
  4455. align-self:flex-start;
  4456. padding:0px 0px 0px 0px;
  4457. box-sizing:border-box;
  4458. width:100%;
  4459. }
  4460. #u12058_text {
  4461. border-width:0px;
  4462. white-space:nowrap;
  4463. text-transform:none;
  4464. }
  4465. #u12059_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:65px;
  4471. height:22px;
  4472. background:inherit;
  4473. background-color:rgba(255, 255, 255, 0);
  4474. border:none;
  4475. border-radius:0px;
  4476. -moz-box-shadow:none;
  4477. -webkit-box-shadow:none;
  4478. box-shadow:none;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:16px;
  4483. }
  4484. #u12059 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:30px;
  4488. top:1283px;
  4489. width:65px;
  4490. height:22px;
  4491. display:flex;
  4492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4493. font-weight:400;
  4494. font-style:normal;
  4495. font-size:16px;
  4496. }
  4497. #u12059 .text {
  4498. position:absolute;
  4499. align-self:flex-start;
  4500. padding:0px 0px 0px 0px;
  4501. box-sizing:border-box;
  4502. width:100%;
  4503. }
  4504. #u12059_text {
  4505. border-width:0px;
  4506. white-space:nowrap;
  4507. text-transform:none;
  4508. }
  4509. #u12060_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:65px;
  4515. height:22px;
  4516. background:inherit;
  4517. background-color:rgba(255, 255, 255, 0);
  4518. border:none;
  4519. border-radius:0px;
  4520. -moz-box-shadow:none;
  4521. -webkit-box-shadow:none;
  4522. box-shadow:none;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:16px;
  4527. }
  4528. #u12060 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:30px;
  4532. top:313px;
  4533. width:65px;
  4534. height:22px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:16px;
  4540. }
  4541. #u12060 .text {
  4542. position:absolute;
  4543. align-self:flex-start;
  4544. padding:0px 0px 0px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u12060_text {
  4549. border-width:0px;
  4550. white-space:nowrap;
  4551. text-transform:none;
  4552. }
  4553. #u12061_div {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:65px;
  4559. height:22px;
  4560. background:inherit;
  4561. background-color:rgba(255, 255, 255, 0);
  4562. border:none;
  4563. border-radius:0px;
  4564. -moz-box-shadow:none;
  4565. -webkit-box-shadow:none;
  4566. box-shadow:none;
  4567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:16px;
  4571. }
  4572. #u12061 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:30px;
  4576. top:1550px;
  4577. width:65px;
  4578. height:22px;
  4579. display:flex;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:16px;
  4584. }
  4585. #u12061 .text {
  4586. position:absolute;
  4587. align-self:flex-start;
  4588. padding:0px 0px 0px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u12061_text {
  4593. border-width:0px;
  4594. white-space:nowrap;
  4595. text-transform:none;
  4596. }
  4597. #u12062_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:65px;
  4603. height:22px;
  4604. background:inherit;
  4605. background-color:rgba(255, 255, 255, 0);
  4606. border:none;
  4607. border-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:16px;
  4615. }
  4616. #u12062 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:30px;
  4620. top:1592px;
  4621. width:65px;
  4622. height:22px;
  4623. display:flex;
  4624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:16px;
  4628. }
  4629. #u12062 .text {
  4630. position:absolute;
  4631. align-self:flex-start;
  4632. padding:0px 0px 0px 0px;
  4633. box-sizing:border-box;
  4634. width:100%;
  4635. }
  4636. #u12062_text {
  4637. border-width:0px;
  4638. white-space:nowrap;
  4639. text-transform:none;
  4640. }
  4641. #u12063_div {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:65px;
  4647. height:22px;
  4648. background:inherit;
  4649. background-color:rgba(255, 255, 255, 0);
  4650. border:none;
  4651. border-radius:0px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:16px;
  4659. }
  4660. #u12063 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:30px;
  4664. top:1018px;
  4665. width:65px;
  4666. height:22px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:16px;
  4672. }
  4673. #u12063 .text {
  4674. position:absolute;
  4675. align-self:flex-start;
  4676. padding:0px 0px 0px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u12063_text {
  4681. border-width:0px;
  4682. white-space:nowrap;
  4683. text-transform:none;
  4684. }
  4685. #u12064_div {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:65px;
  4691. height:22px;
  4692. background:inherit;
  4693. background-color:rgba(255, 255, 255, 0);
  4694. border:none;
  4695. border-radius:0px;
  4696. -moz-box-shadow:none;
  4697. -webkit-box-shadow:none;
  4698. box-shadow:none;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:16px;
  4703. }
  4704. #u12064 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:30px;
  4708. top:662px;
  4709. width:65px;
  4710. height:22px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:16px;
  4716. }
  4717. #u12064 .text {
  4718. position:absolute;
  4719. align-self:flex-start;
  4720. padding:0px 0px 0px 0px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u12064_text {
  4725. border-width:0px;
  4726. white-space:nowrap;
  4727. text-transform:none;
  4728. }