styles.css 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247
  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. #u127694_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1402px;
  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. #u127694 {
  35. border-width:0px;
  36. position:absolute;
  37. left:198px;
  38. top:47px;
  39. width:1402px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u127694 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u127694_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u127695_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. #u127695 {
  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. #u127695 .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. #u127695_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u127696_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. #u127696 {
  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. #u127696 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u127696_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u127697 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u127698_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u127698 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u127698 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u127698_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u127699_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. #u127699 {
  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. #u127699 .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. #u127699_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u127700_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:200px;
  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. #u127700 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:200px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u127700 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u127700_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u127701_div {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:136px;
  263. height:16px;
  264. background:inherit;
  265. background-color:rgba(255, 255, 255, 0);
  266. border:none;
  267. border-radius:0px;
  268. -moz-box-shadow:none;
  269. -webkit-box-shadow:none;
  270. box-shadow:none;
  271. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  272. font-weight:200;
  273. font-style:normal;
  274. font-size:11px;
  275. color:#555555;
  276. }
  277. #u127701 {
  278. border-width:0px;
  279. position:absolute;
  280. left:208px;
  281. top:53px;
  282. width:136px;
  283. height:16px;
  284. display:flex;
  285. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  286. font-weight:200;
  287. font-style:normal;
  288. font-size:11px;
  289. color:#555555;
  290. }
  291. #u127701 .text {
  292. position:absolute;
  293. align-self:flex-start;
  294. padding:0px 0px 0px 0px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u127701_text {
  299. border-width:0px;
  300. white-space:nowrap;
  301. text-transform:none;
  302. }
  303. #u127702 {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:0px;
  309. height:0px;
  310. }
  311. #u127703 {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:0px;
  317. height:0px;
  318. }
  319. #u127704_div {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:29px;
  325. height:20px;
  326. background:inherit;
  327. background-color:rgba(255, 255, 255, 0);
  328. border:none;
  329. border-radius:25px;
  330. -moz-box-shadow:none;
  331. -webkit-box-shadow:none;
  332. box-shadow:none;
  333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  334. font-weight:400;
  335. font-style:normal;
  336. color:#FFFFFF;
  337. }
  338. #u127704 {
  339. border-width:0px;
  340. position:absolute;
  341. left:59px;
  342. top:1145px;
  343. width:29px;
  344. height:20px;
  345. display:flex;
  346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  347. font-weight:400;
  348. font-style:normal;
  349. color:#FFFFFF;
  350. }
  351. #u127704 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:0px 0px 0px 0px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u127704_text {
  359. border-width:0px;
  360. white-space:nowrap;
  361. text-transform:none;
  362. }
  363. #u127705_img {
  364. border-width:0px;
  365. position:absolute;
  366. left:0px;
  367. top:0px;
  368. width:22px;
  369. height:22px;
  370. }
  371. #u127705 {
  372. border-width:0px;
  373. position:absolute;
  374. left:27px;
  375. top:1144px;
  376. width:22px;
  377. height:22px;
  378. display:flex;
  379. }
  380. #u127705 .text {
  381. position:absolute;
  382. align-self:center;
  383. padding:2px 2px 2px 2px;
  384. box-sizing:border-box;
  385. width:100%;
  386. }
  387. #u127705_text {
  388. border-width:0px;
  389. word-wrap:break-word;
  390. text-transform:none;
  391. visibility:hidden;
  392. }
  393. #u127706 {
  394. border-width:0px;
  395. position:absolute;
  396. left:0px;
  397. top:0px;
  398. width:0px;
  399. height:0px;
  400. }
  401. #u127707_div {
  402. border-width:0px;
  403. position:absolute;
  404. left:0px;
  405. top:0px;
  406. width:29px;
  407. height:20px;
  408. background:inherit;
  409. background-color:rgba(255, 255, 255, 0);
  410. border:none;
  411. border-radius:25px;
  412. -moz-box-shadow:none;
  413. -webkit-box-shadow:none;
  414. box-shadow:none;
  415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  416. font-weight:400;
  417. font-style:normal;
  418. color:#FFFFFF;
  419. }
  420. #u127707 {
  421. border-width:0px;
  422. position:absolute;
  423. left:59px;
  424. top:1187px;
  425. width:29px;
  426. height:20px;
  427. display:flex;
  428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  429. font-weight:400;
  430. font-style:normal;
  431. color:#FFFFFF;
  432. }
  433. #u127707 .text {
  434. position:absolute;
  435. align-self:center;
  436. padding:0px 0px 0px 0px;
  437. box-sizing:border-box;
  438. width:100%;
  439. }
  440. #u127707_text {
  441. border-width:0px;
  442. white-space:nowrap;
  443. text-transform:none;
  444. }
  445. #u127708_img {
  446. border-width:0px;
  447. position:absolute;
  448. left:0px;
  449. top:0px;
  450. width:22px;
  451. height:22px;
  452. }
  453. #u127708 {
  454. border-width:0px;
  455. position:absolute;
  456. left:27px;
  457. top:1186px;
  458. width:22px;
  459. height:22px;
  460. display:flex;
  461. }
  462. #u127708 .text {
  463. position:absolute;
  464. align-self:center;
  465. padding:2px 2px 2px 2px;
  466. box-sizing:border-box;
  467. width:100%;
  468. }
  469. #u127708_text {
  470. border-width:0px;
  471. word-wrap:break-word;
  472. text-transform:none;
  473. visibility:hidden;
  474. }
  475. #u127709_div {
  476. border-width:0px;
  477. position:absolute;
  478. left:0px;
  479. top:0px;
  480. width:33px;
  481. height:22px;
  482. background:inherit;
  483. background-color:rgba(255, 255, 255, 0);
  484. border:none;
  485. border-radius:0px;
  486. -moz-box-shadow:none;
  487. -webkit-box-shadow:none;
  488. box-shadow:none;
  489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  490. font-weight:400;
  491. font-style:normal;
  492. font-size:16px;
  493. color:#FFFFFF;
  494. }
  495. #u127709 {
  496. border-width:0px;
  497. position:absolute;
  498. left:39px;
  499. top:71px;
  500. width:33px;
  501. height:22px;
  502. display:flex;
  503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  504. font-weight:400;
  505. font-style:normal;
  506. font-size:16px;
  507. color:#FFFFFF;
  508. }
  509. #u127709 .text {
  510. position:absolute;
  511. align-self:flex-start;
  512. padding:0px 0px 0px 0px;
  513. box-sizing:border-box;
  514. width:100%;
  515. }
  516. #u127709_text {
  517. border-width:0px;
  518. white-space:nowrap;
  519. text-transform:none;
  520. }
  521. #u127710_img {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:14px;
  527. height:14px;
  528. }
  529. #u127710 {
  530. border-width:0px;
  531. position:absolute;
  532. left:20px;
  533. top:75px;
  534. width:14px;
  535. height:14px;
  536. display:flex;
  537. }
  538. #u127710 .text {
  539. position:absolute;
  540. align-self:center;
  541. padding:2px 2px 2px 2px;
  542. box-sizing:border-box;
  543. width:100%;
  544. }
  545. #u127710_text {
  546. border-width:0px;
  547. word-wrap:break-word;
  548. text-transform:none;
  549. visibility:hidden;
  550. }
  551. #u127711_div {
  552. border-width:0px;
  553. position:absolute;
  554. left:0px;
  555. top:0px;
  556. width:33px;
  557. height:22px;
  558. background:inherit;
  559. background-color:rgba(255, 255, 255, 0);
  560. border:none;
  561. border-radius:0px;
  562. -moz-box-shadow:none;
  563. -webkit-box-shadow:none;
  564. box-shadow:none;
  565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  566. font-weight:400;
  567. font-style:normal;
  568. font-size:16px;
  569. color:#FFFFFF;
  570. }
  571. #u127711 {
  572. border-width:0px;
  573. position:absolute;
  574. left:39px;
  575. top:241px;
  576. width:33px;
  577. height:22px;
  578. display:flex;
  579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  580. font-weight:400;
  581. font-style:normal;
  582. font-size:16px;
  583. color:#FFFFFF;
  584. }
  585. #u127711 .text {
  586. position:absolute;
  587. align-self:flex-start;
  588. padding:0px 0px 0px 0px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u127711_text {
  593. border-width:0px;
  594. white-space:nowrap;
  595. text-transform:none;
  596. }
  597. #u127712_img {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:14px;
  603. height:14px;
  604. }
  605. #u127712 {
  606. border-width:0px;
  607. position:absolute;
  608. left:20px;
  609. top:245px;
  610. width:14px;
  611. height:14px;
  612. display:flex;
  613. }
  614. #u127712 .text {
  615. position:absolute;
  616. align-self:center;
  617. padding:2px 2px 2px 2px;
  618. box-sizing:border-box;
  619. width:100%;
  620. }
  621. #u127712_text {
  622. border-width:0px;
  623. word-wrap:break-word;
  624. text-transform:none;
  625. visibility:hidden;
  626. }
  627. #u127713_div {
  628. border-width:0px;
  629. position:absolute;
  630. left:0px;
  631. top:0px;
  632. width:49px;
  633. height:22px;
  634. background:inherit;
  635. background-color:rgba(255, 255, 255, 0);
  636. border:none;
  637. border-radius:0px;
  638. -moz-box-shadow:none;
  639. -webkit-box-shadow:none;
  640. box-shadow:none;
  641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  642. font-weight:400;
  643. font-style:normal;
  644. font-size:16px;
  645. color:#FFFFFF;
  646. }
  647. #u127713 {
  648. border-width:0px;
  649. position:absolute;
  650. left:39px;
  651. top:103px;
  652. width:49px;
  653. height:22px;
  654. display:flex;
  655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  656. font-weight:400;
  657. font-style:normal;
  658. font-size:16px;
  659. color:#FFFFFF;
  660. }
  661. #u127713 .text {
  662. position:absolute;
  663. align-self:flex-start;
  664. padding:0px 0px 0px 0px;
  665. box-sizing:border-box;
  666. width:100%;
  667. }
  668. #u127713_text {
  669. border-width:0px;
  670. white-space:nowrap;
  671. text-transform:none;
  672. }
  673. #u127714_div {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:65px;
  679. height:22px;
  680. background:inherit;
  681. background-color:rgba(255, 255, 255, 0);
  682. border:none;
  683. border-radius:0px;
  684. -moz-box-shadow:none;
  685. -webkit-box-shadow:none;
  686. box-shadow:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:16px;
  691. color:#FFFFFF;
  692. }
  693. #u127714 {
  694. border-width:0px;
  695. position:absolute;
  696. left:39px;
  697. top:135px;
  698. width:65px;
  699. height:22px;
  700. display:flex;
  701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  702. font-weight:400;
  703. font-style:normal;
  704. font-size:16px;
  705. color:#FFFFFF;
  706. }
  707. #u127714 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u127714_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u127715_div {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:65px;
  725. height:22px;
  726. background:inherit;
  727. background-color:rgba(255, 255, 255, 0);
  728. border:none;
  729. border-radius:0px;
  730. -moz-box-shadow:none;
  731. -webkit-box-shadow:none;
  732. box-shadow:none;
  733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  734. font-weight:400;
  735. font-style:normal;
  736. font-size:16px;
  737. color:#FFFFFF;
  738. }
  739. #u127715 {
  740. border-width:0px;
  741. position:absolute;
  742. left:39px;
  743. top:167px;
  744. width:65px;
  745. height:22px;
  746. display:flex;
  747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  748. font-weight:400;
  749. font-style:normal;
  750. font-size:16px;
  751. color:#FFFFFF;
  752. }
  753. #u127715 .text {
  754. position:absolute;
  755. align-self:flex-start;
  756. padding:0px 0px 0px 0px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u127715_text {
  761. border-width:0px;
  762. white-space:nowrap;
  763. text-transform:none;
  764. }
  765. #u127716_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:17px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u127716 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:199px;
  790. width:17px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u127716 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u127716_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u127717_div {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:33px;
  817. height:22px;
  818. background:inherit;
  819. background-color:rgba(255, 255, 255, 0);
  820. border:none;
  821. border-radius:0px;
  822. -moz-box-shadow:none;
  823. -webkit-box-shadow:none;
  824. box-shadow:none;
  825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  826. font-weight:400;
  827. font-style:normal;
  828. font-size:16px;
  829. color:#FFFFFF;
  830. }
  831. #u127717 {
  832. border-width:0px;
  833. position:absolute;
  834. left:39px;
  835. top:273px;
  836. width:33px;
  837. height:22px;
  838. display:flex;
  839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  840. font-weight:400;
  841. font-style:normal;
  842. font-size:16px;
  843. color:#FFFFFF;
  844. }
  845. #u127717 .text {
  846. position:absolute;
  847. align-self:flex-start;
  848. padding:0px 0px 0px 0px;
  849. box-sizing:border-box;
  850. width:100%;
  851. }
  852. #u127717_text {
  853. border-width:0px;
  854. white-space:nowrap;
  855. text-transform:none;
  856. }
  857. #u127718_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:33px;
  863. height:22px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border:none;
  867. border-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:16px;
  875. color:#FFFFFF;
  876. }
  877. #u127718 {
  878. border-width:0px;
  879. position:absolute;
  880. left:39px;
  881. top:482px;
  882. width:33px;
  883. height:22px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. font-size:16px;
  889. color:#FFFFFF;
  890. }
  891. #u127718 .text {
  892. position:absolute;
  893. align-self:flex-start;
  894. padding:0px 0px 0px 0px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u127718_text {
  899. border-width:0px;
  900. white-space:nowrap;
  901. text-transform:none;
  902. }
  903. #u127719_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:14px;
  909. height:14px;
  910. }
  911. #u127719 {
  912. border-width:0px;
  913. position:absolute;
  914. left:20px;
  915. top:486px;
  916. width:14px;
  917. height:14px;
  918. display:flex;
  919. }
  920. #u127719 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u127719_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u127720_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:65px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u127720 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:514px;
  958. width:65px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u127720 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u127720_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u127721_div {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:33px;
  985. height:22px;
  986. background:inherit;
  987. background-color:rgba(255, 255, 255, 0);
  988. border:none;
  989. border-radius:0px;
  990. -moz-box-shadow:none;
  991. -webkit-box-shadow:none;
  992. box-shadow:none;
  993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  994. font-weight:400;
  995. font-style:normal;
  996. font-size:16px;
  997. color:#FFFFFF;
  998. }
  999. #u127721 {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:39px;
  1003. top:546px;
  1004. width:33px;
  1005. height:22px;
  1006. display:flex;
  1007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1008. font-weight:400;
  1009. font-style:normal;
  1010. font-size:16px;
  1011. color:#FFFFFF;
  1012. }
  1013. #u127721 .text {
  1014. position:absolute;
  1015. align-self:flex-start;
  1016. padding:0px 0px 0px 0px;
  1017. box-sizing:border-box;
  1018. width:100%;
  1019. }
  1020. #u127721_text {
  1021. border-width:0px;
  1022. white-space:nowrap;
  1023. text-transform:none;
  1024. }
  1025. #u127722_img {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:14px;
  1031. height:14px;
  1032. }
  1033. #u127722 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:20px;
  1037. top:107px;
  1038. width:14px;
  1039. height:14px;
  1040. display:flex;
  1041. }
  1042. #u127722 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:2px 2px 2px 2px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u127722_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. visibility:hidden;
  1054. }
  1055. #u127723_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:33px;
  1061. height:22px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1070. font-weight:400;
  1071. font-style:normal;
  1072. font-size:16px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u127723 {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:39px;
  1079. top:305px;
  1080. width:33px;
  1081. height:22px;
  1082. display:flex;
  1083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1084. font-weight:400;
  1085. font-style:normal;
  1086. font-size:16px;
  1087. color:#FFFFFF;
  1088. }
  1089. #u127723 .text {
  1090. position:absolute;
  1091. align-self:flex-start;
  1092. padding:0px 0px 0px 0px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u127723_text {
  1097. border-width:0px;
  1098. white-space:nowrap;
  1099. text-transform:none;
  1100. }
  1101. #u127724_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u127724 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:587px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u127724 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u127724_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u127725_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u127725 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:591px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u127725 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u127725_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u127726_div {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:65px;
  1183. height:22px;
  1184. background:inherit;
  1185. background-color:rgba(255, 255, 255, 0);
  1186. border:none;
  1187. border-radius:0px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1192. font-weight:400;
  1193. font-style:normal;
  1194. font-size:16px;
  1195. color:#FFFFFF;
  1196. }
  1197. #u127726 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:39px;
  1201. top:619px;
  1202. width:65px;
  1203. height:22px;
  1204. display:flex;
  1205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1206. font-weight:400;
  1207. font-style:normal;
  1208. font-size:16px;
  1209. color:#FFFFFF;
  1210. }
  1211. #u127726 .text {
  1212. position:absolute;
  1213. align-self:flex-start;
  1214. padding:0px 0px 0px 0px;
  1215. box-sizing:border-box;
  1216. width:100%;
  1217. }
  1218. #u127726_text {
  1219. border-width:0px;
  1220. white-space:nowrap;
  1221. text-transform:none;
  1222. }
  1223. #u127727_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:65px;
  1229. height:22px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1238. font-weight:400;
  1239. font-style:normal;
  1240. font-size:16px;
  1241. color:#FFFFFF;
  1242. }
  1243. #u127727 {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:39px;
  1247. top:651px;
  1248. width:65px;
  1249. height:22px;
  1250. display:flex;
  1251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1252. font-weight:400;
  1253. font-style:normal;
  1254. font-size:16px;
  1255. color:#FFFFFF;
  1256. }
  1257. #u127727 .text {
  1258. position:absolute;
  1259. align-self:flex-start;
  1260. padding:0px 0px 0px 0px;
  1261. box-sizing:border-box;
  1262. width:100%;
  1263. }
  1264. #u127727_text {
  1265. border-width:0px;
  1266. white-space:nowrap;
  1267. text-transform:none;
  1268. }
  1269. #u127728_div {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:65px;
  1275. height:22px;
  1276. background:inherit;
  1277. background-color:rgba(255, 255, 255, 0);
  1278. border:none;
  1279. border-radius:0px;
  1280. -moz-box-shadow:none;
  1281. -webkit-box-shadow:none;
  1282. box-shadow:none;
  1283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1284. font-weight:400;
  1285. font-style:normal;
  1286. font-size:16px;
  1287. color:#FFFFFF;
  1288. }
  1289. #u127728 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:39px;
  1293. top:683px;
  1294. width:65px;
  1295. height:22px;
  1296. display:flex;
  1297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1298. font-weight:400;
  1299. font-style:normal;
  1300. font-size:16px;
  1301. color:#FFFFFF;
  1302. }
  1303. #u127728 .text {
  1304. position:absolute;
  1305. align-self:flex-start;
  1306. padding:0px 0px 0px 0px;
  1307. box-sizing:border-box;
  1308. width:100%;
  1309. }
  1310. #u127728_text {
  1311. border-width:0px;
  1312. white-space:nowrap;
  1313. text-transform:none;
  1314. }
  1315. #u127729_div {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:65px;
  1321. height:22px;
  1322. background:inherit;
  1323. background-color:rgba(255, 255, 255, 0);
  1324. border:none;
  1325. border-radius:0px;
  1326. -moz-box-shadow:none;
  1327. -webkit-box-shadow:none;
  1328. box-shadow:none;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:16px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u127729 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:39px;
  1339. top:724px;
  1340. width:65px;
  1341. height:22px;
  1342. display:flex;
  1343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. font-size:16px;
  1347. color:#FFFFFF;
  1348. }
  1349. #u127729 .text {
  1350. position:absolute;
  1351. align-self:flex-start;
  1352. padding:0px 0px 0px 0px;
  1353. box-sizing:border-box;
  1354. width:100%;
  1355. }
  1356. #u127729_text {
  1357. border-width:0px;
  1358. white-space:nowrap;
  1359. text-transform:none;
  1360. }
  1361. #u127730_img {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:14px;
  1367. height:14px;
  1368. }
  1369. #u127730 {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:20px;
  1373. top:728px;
  1374. width:14px;
  1375. height:14px;
  1376. display:flex;
  1377. }
  1378. #u127730 .text {
  1379. position:absolute;
  1380. align-self:center;
  1381. padding:2px 2px 2px 2px;
  1382. box-sizing:border-box;
  1383. width:100%;
  1384. }
  1385. #u127730_text {
  1386. border-width:0px;
  1387. word-wrap:break-word;
  1388. text-transform:none;
  1389. visibility:hidden;
  1390. }
  1391. #u127731_div {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:65px;
  1397. height:22px;
  1398. background:inherit;
  1399. background-color:rgba(255, 255, 255, 0);
  1400. border:none;
  1401. border-radius:0px;
  1402. -moz-box-shadow:none;
  1403. -webkit-box-shadow:none;
  1404. box-shadow:none;
  1405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1406. font-weight:400;
  1407. font-style:normal;
  1408. font-size:16px;
  1409. color:#FFFFFF;
  1410. }
  1411. #u127731 {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:39px;
  1415. top:756px;
  1416. width:65px;
  1417. height:22px;
  1418. display:flex;
  1419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1420. font-weight:400;
  1421. font-style:normal;
  1422. font-size:16px;
  1423. color:#FFFFFF;
  1424. }
  1425. #u127731 .text {
  1426. position:absolute;
  1427. align-self:flex-start;
  1428. padding:0px 0px 0px 0px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u127731_text {
  1433. border-width:0px;
  1434. white-space:nowrap;
  1435. text-transform:none;
  1436. }
  1437. #u127732_div {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:65px;
  1443. height:22px;
  1444. background:inherit;
  1445. background-color:rgba(255, 255, 255, 0);
  1446. border:none;
  1447. border-radius:0px;
  1448. -moz-box-shadow:none;
  1449. -webkit-box-shadow:none;
  1450. box-shadow:none;
  1451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1452. font-weight:400;
  1453. font-style:normal;
  1454. font-size:16px;
  1455. color:#FFFFFF;
  1456. }
  1457. #u127732 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:39px;
  1461. top:788px;
  1462. width:65px;
  1463. height:22px;
  1464. display:flex;
  1465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1466. font-weight:400;
  1467. font-style:normal;
  1468. font-size:16px;
  1469. color:#FFFFFF;
  1470. }
  1471. #u127732 .text {
  1472. position:absolute;
  1473. align-self:flex-start;
  1474. padding:0px 0px 0px 0px;
  1475. box-sizing:border-box;
  1476. width:100%;
  1477. }
  1478. #u127732_text {
  1479. border-width:0px;
  1480. white-space:nowrap;
  1481. text-transform:none;
  1482. }
  1483. #u127733_div {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:65px;
  1489. height:22px;
  1490. background:inherit;
  1491. background-color:rgba(255, 255, 255, 0);
  1492. border:none;
  1493. border-radius:0px;
  1494. -moz-box-shadow:none;
  1495. -webkit-box-shadow:none;
  1496. box-shadow:none;
  1497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1498. font-weight:400;
  1499. font-style:normal;
  1500. font-size:16px;
  1501. color:#FFFFFF;
  1502. }
  1503. #u127733 {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:39px;
  1507. top:820px;
  1508. width:65px;
  1509. height:22px;
  1510. display:flex;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:16px;
  1515. color:#FFFFFF;
  1516. }
  1517. #u127733 .text {
  1518. position:absolute;
  1519. align-self:flex-start;
  1520. padding:0px 0px 0px 0px;
  1521. box-sizing:border-box;
  1522. width:100%;
  1523. }
  1524. #u127733_text {
  1525. border-width:0px;
  1526. white-space:nowrap;
  1527. text-transform:none;
  1528. }
  1529. #u127734_div {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:65px;
  1535. height:22px;
  1536. background:inherit;
  1537. background-color:rgba(255, 255, 255, 0);
  1538. border:none;
  1539. border-radius:0px;
  1540. -moz-box-shadow:none;
  1541. -webkit-box-shadow:none;
  1542. box-shadow:none;
  1543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1544. font-weight:400;
  1545. font-style:normal;
  1546. font-size:16px;
  1547. color:#FFFFFF;
  1548. }
  1549. #u127734 {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:39px;
  1553. top:849px;
  1554. width:65px;
  1555. height:22px;
  1556. display:flex;
  1557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1558. font-weight:400;
  1559. font-style:normal;
  1560. font-size:16px;
  1561. color:#FFFFFF;
  1562. }
  1563. #u127734 .text {
  1564. position:absolute;
  1565. align-self:flex-start;
  1566. padding:0px 0px 0px 0px;
  1567. box-sizing:border-box;
  1568. width:100%;
  1569. }
  1570. #u127734_text {
  1571. border-width:0px;
  1572. white-space:nowrap;
  1573. text-transform:none;
  1574. }
  1575. #u127735_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:65px;
  1581. height:22px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:16px;
  1593. color:#FFFFFF;
  1594. }
  1595. #u127735 {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:39px;
  1599. top:881px;
  1600. width:65px;
  1601. height:22px;
  1602. display:flex;
  1603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:16px;
  1607. color:#FFFFFF;
  1608. }
  1609. #u127735 .text {
  1610. position:absolute;
  1611. align-self:flex-start;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u127735_text {
  1617. border-width:0px;
  1618. white-space:nowrap;
  1619. text-transform:none;
  1620. }
  1621. #u127736_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:33px;
  1627. height:22px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border:none;
  1631. border-radius:0px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:16px;
  1639. color:#FFFFFF;
  1640. }
  1641. #u127736 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:39px;
  1645. top:376px;
  1646. width:33px;
  1647. height:22px;
  1648. display:flex;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:16px;
  1653. color:#FFFFFF;
  1654. }
  1655. #u127736 .text {
  1656. position:absolute;
  1657. align-self:flex-start;
  1658. padding:0px 0px 0px 0px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u127736_text {
  1663. border-width:0px;
  1664. white-space:nowrap;
  1665. text-transform:none;
  1666. }
  1667. #u127737_img {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:14px;
  1673. height:14px;
  1674. }
  1675. #u127737 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:20px;
  1679. top:380px;
  1680. width:14px;
  1681. height:14px;
  1682. display:flex;
  1683. }
  1684. #u127737 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u127737_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. visibility:hidden;
  1696. }
  1697. #u127738_div {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:65px;
  1703. height:22px;
  1704. background:inherit;
  1705. background-color:rgba(255, 255, 255, 0);
  1706. border:none;
  1707. border-radius:0px;
  1708. -moz-box-shadow:none;
  1709. -webkit-box-shadow:none;
  1710. box-shadow:none;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:16px;
  1715. color:#FFFFFF;
  1716. }
  1717. #u127738 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:39px;
  1721. top:408px;
  1722. width:65px;
  1723. height:22px;
  1724. display:flex;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:16px;
  1729. color:#FFFFFF;
  1730. }
  1731. #u127738 .text {
  1732. position:absolute;
  1733. align-self:flex-start;
  1734. padding:0px 0px 0px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u127738_text {
  1739. border-width:0px;
  1740. white-space:nowrap;
  1741. text-transform:none;
  1742. }
  1743. #u127739_div {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:65px;
  1749. height:22px;
  1750. background:inherit;
  1751. background-color:rgba(255, 255, 255, 0);
  1752. border:none;
  1753. border-radius:0px;
  1754. -moz-box-shadow:none;
  1755. -webkit-box-shadow:none;
  1756. box-shadow:none;
  1757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:16px;
  1761. color:#1890FF;
  1762. }
  1763. #u127739 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:39px;
  1767. top:440px;
  1768. width:65px;
  1769. height:22px;
  1770. display:flex;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:16px;
  1775. color:#1890FF;
  1776. }
  1777. #u127739 .text {
  1778. position:absolute;
  1779. align-self:flex-start;
  1780. padding:0px 0px 0px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u127739_text {
  1785. border-width:0px;
  1786. white-space:nowrap;
  1787. text-transform:none;
  1788. }
  1789. #u127740_div {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:33px;
  1795. height:22px;
  1796. background:inherit;
  1797. background-color:rgba(255, 255, 255, 0);
  1798. border:none;
  1799. border-radius:0px;
  1800. -moz-box-shadow:none;
  1801. -webkit-box-shadow:none;
  1802. box-shadow:none;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:16px;
  1807. color:#FFFFFF;
  1808. }
  1809. #u127740 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:39px;
  1813. top:337px;
  1814. width:33px;
  1815. height:22px;
  1816. display:flex;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:16px;
  1821. color:#FFFFFF;
  1822. }
  1823. #u127740 .text {
  1824. position:absolute;
  1825. align-self:flex-start;
  1826. padding:0px 0px 0px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u127740_text {
  1831. border-width:0px;
  1832. white-space:nowrap;
  1833. text-transform:none;
  1834. }
  1835. #u127741_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:200px;
  1841. height:1180px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 1);
  1844. border:none;
  1845. border-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. }
  1850. #u127741 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:201px;
  1854. top:50px;
  1855. width:200px;
  1856. height:1180px;
  1857. display:flex;
  1858. }
  1859. #u127741 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u127741_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u127742_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:200px;
  1878. height:60px;
  1879. background:inherit;
  1880. background-color:rgba(224, 231, 247, 1);
  1881. border:none;
  1882. border-radius:0px;
  1883. -moz-box-shadow:none;
  1884. -webkit-box-shadow:none;
  1885. box-shadow:none;
  1886. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1887. font-weight:500;
  1888. font-style:normal;
  1889. font-size:18px;
  1890. }
  1891. #u127742 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:201px;
  1895. top:50px;
  1896. width:200px;
  1897. height:60px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1900. font-weight:500;
  1901. font-style:normal;
  1902. font-size:18px;
  1903. }
  1904. #u127742 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:0px 0px 0px 20px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u127742_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u127743_div {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:65px;
  1922. height:22px;
  1923. background:inherit;
  1924. background-color:rgba(255, 255, 255, 0);
  1925. border:none;
  1926. border-radius:0px;
  1927. -moz-box-shadow:none;
  1928. -webkit-box-shadow:none;
  1929. box-shadow:none;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:16px;
  1934. }
  1935. #u127743 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:228px;
  1939. top:131px;
  1940. width:65px;
  1941. height:22px;
  1942. display:flex;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:16px;
  1947. }
  1948. #u127743 .text {
  1949. position:absolute;
  1950. align-self:flex-start;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u127743_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u127744_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:201px;
  1966. height:2px;
  1967. }
  1968. #u127744 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:198px;
  1972. top:173px;
  1973. width:200px;
  1974. height:1px;
  1975. display:flex;
  1976. }
  1977. #u127744 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 2px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u127744_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. visibility:hidden;
  1989. }
  1990. #u127745_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:97px;
  1996. height:22px;
  1997. background:inherit;
  1998. background-color:rgba(255, 255, 255, 0);
  1999. border:none;
  2000. border-radius:0px;
  2001. -moz-box-shadow:none;
  2002. -webkit-box-shadow:none;
  2003. box-shadow:none;
  2004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:16px;
  2008. }
  2009. #u127745 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:228px;
  2013. top:229px;
  2014. width:97px;
  2015. height:22px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:16px;
  2021. }
  2022. #u127745 .text {
  2023. position:absolute;
  2024. align-self:flex-start;
  2025. padding:0px 0px 0px 0px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u127745_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. }
  2034. #u127746_div {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:49px;
  2040. height:17px;
  2041. background:inherit;
  2042. background-color:rgba(255, 255, 255, 0);
  2043. border:none;
  2044. border-radius:0px;
  2045. -moz-box-shadow:none;
  2046. -webkit-box-shadow:none;
  2047. box-shadow:none;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:12px;
  2052. color:#AAAAAA;
  2053. }
  2054. #u127746 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:228px;
  2058. top:193px;
  2059. width:49px;
  2060. height:17px;
  2061. display:flex;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:12px;
  2066. color:#AAAAAA;
  2067. }
  2068. #u127746 .text {
  2069. position:absolute;
  2070. align-self:flex-start;
  2071. padding:0px 0px 0px 0px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u127746_text {
  2076. border-width:0px;
  2077. white-space:nowrap;
  2078. text-transform:none;
  2079. }
  2080. #u127747_div {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:0px;
  2085. width:97px;
  2086. height:22px;
  2087. background:inherit;
  2088. background-color:rgba(255, 255, 255, 0);
  2089. border:none;
  2090. border-radius:0px;
  2091. -moz-box-shadow:none;
  2092. -webkit-box-shadow:none;
  2093. box-shadow:none;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:16px;
  2098. color:#1890FF;
  2099. }
  2100. #u127747 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:228px;
  2104. top:271px;
  2105. width:97px;
  2106. height:22px;
  2107. display:flex;
  2108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:16px;
  2112. color:#1890FF;
  2113. }
  2114. #u127747 .text {
  2115. position:absolute;
  2116. align-self:flex-start;
  2117. padding:0px 0px 0px 0px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u127747_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. }
  2126. #u127748_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:201px;
  2132. height:2px;
  2133. }
  2134. #u127748 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:198px;
  2138. top:313px;
  2139. width:200px;
  2140. height:1px;
  2141. display:flex;
  2142. }
  2143. #u127748 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u127748_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u127749_div {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:97px;
  2162. height:22px;
  2163. background:inherit;
  2164. background-color:rgba(255, 255, 255, 0);
  2165. border:none;
  2166. border-radius:0px;
  2167. -moz-box-shadow:none;
  2168. -webkit-box-shadow:none;
  2169. box-shadow:none;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. font-size:16px;
  2174. }
  2175. #u127749 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:228px;
  2179. top:369px;
  2180. width:97px;
  2181. height:22px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:16px;
  2187. }
  2188. #u127749 .text {
  2189. position:absolute;
  2190. align-self:flex-start;
  2191. padding:0px 0px 0px 0px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u127749_text {
  2196. border-width:0px;
  2197. word-wrap:break-word;
  2198. text-transform:none;
  2199. }
  2200. #u127750_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:49px;
  2206. height:17px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 0);
  2209. border:none;
  2210. border-radius:0px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#AAAAAA;
  2219. }
  2220. #u127750 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:228px;
  2224. top:333px;
  2225. width:49px;
  2226. height:17px;
  2227. display:flex;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:12px;
  2232. color:#AAAAAA;
  2233. }
  2234. #u127750 .text {
  2235. position:absolute;
  2236. align-self:flex-start;
  2237. padding:0px 0px 0px 0px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u127750_text {
  2242. border-width:0px;
  2243. white-space:nowrap;
  2244. text-transform:none;
  2245. }
  2246. #u127751_div {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:97px;
  2252. height:22px;
  2253. background:inherit;
  2254. background-color:rgba(255, 255, 255, 0);
  2255. border:none;
  2256. border-radius:0px;
  2257. -moz-box-shadow:none;
  2258. -webkit-box-shadow:none;
  2259. box-shadow:none;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:16px;
  2264. }
  2265. #u127751 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:228px;
  2269. top:411px;
  2270. width:97px;
  2271. height:22px;
  2272. display:flex;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:16px;
  2277. }
  2278. #u127751 .text {
  2279. position:absolute;
  2280. align-self:flex-start;
  2281. padding:0px 0px 0px 0px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u127751_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. }
  2290. #u127752_div {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:1178px;
  2296. height:1158px;
  2297. background:inherit;
  2298. background-color:rgba(255, 255, 255, 1);
  2299. border:none;
  2300. border-radius:0px;
  2301. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2302. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2303. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2304. color:#1890FF;
  2305. }
  2306. #u127752 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:411px;
  2310. top:50px;
  2311. width:1178px;
  2312. height:1158px;
  2313. display:flex;
  2314. color:#1890FF;
  2315. }
  2316. #u127752 .text {
  2317. position:absolute;
  2318. align-self:center;
  2319. padding:2px 2px 2px 2px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u127752_text {
  2324. border-width:0px;
  2325. word-wrap:break-word;
  2326. text-transform:none;
  2327. visibility:hidden;
  2328. }
  2329. #u127753_div {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:73px;
  2335. height:50px;
  2336. background:inherit;
  2337. background-color:rgba(255, 255, 255, 0);
  2338. border:none;
  2339. border-left:0px;
  2340. border-top:0px;
  2341. border-right:0px;
  2342. border-radius:0px;
  2343. border-bottom-right-radius:0px;
  2344. border-bottom-left-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2349. font-weight:500;
  2350. font-style:normal;
  2351. font-size:18px;
  2352. }
  2353. #u127753 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:430px;
  2357. top:50px;
  2358. width:73px;
  2359. height:50px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2362. font-weight:500;
  2363. font-style:normal;
  2364. font-size:18px;
  2365. }
  2366. #u127753 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:0px 0px 0px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u127753_text {
  2374. border-width:0px;
  2375. white-space:nowrap;
  2376. text-transform:none;
  2377. }
  2378. #u127754_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:67px;
  2384. height:30px;
  2385. background:inherit;
  2386. background-color:rgba(24, 144, 255, 1);
  2387. border:none;
  2388. border-radius:4px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. color:#FFFFFF;
  2397. }
  2398. #u127754 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:432px;
  2402. top:154px;
  2403. width:67px;
  2404. height:30px;
  2405. display:flex;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:14px;
  2410. color:#FFFFFF;
  2411. }
  2412. #u127754 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:5px 15px 5px 15px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u127754_text {
  2420. border-width:0px;
  2421. white-space:nowrap;
  2422. text-transform:none;
  2423. }
  2424. #u127755 {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:430px;
  2428. top:202px;
  2429. width:1117px;
  2430. height:364px;
  2431. }
  2432. #u127756_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:54px;
  2438. height:39px;
  2439. }
  2440. #u127756 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:54px;
  2446. height:39px;
  2447. display:flex;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. color:#FFFFFF;
  2453. }
  2454. #u127756 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u127756_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. }
  2466. #u127757_img {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:179px;
  2472. height:39px;
  2473. }
  2474. #u127757 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:54px;
  2478. top:0px;
  2479. width:179px;
  2480. height:39px;
  2481. display:flex;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:12px;
  2486. color:#FFFFFF;
  2487. }
  2488. #u127757 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 0px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u127757_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. }
  2500. #u127758_img {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:179px;
  2506. height:39px;
  2507. }
  2508. #u127758 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:233px;
  2512. top:0px;
  2513. width:179px;
  2514. height:39px;
  2515. display:flex;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:12px;
  2520. color:#FFFFFF;
  2521. }
  2522. #u127758 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u127758_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. }
  2534. #u127759_img {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:179px;
  2540. height:39px;
  2541. }
  2542. #u127759 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:412px;
  2546. top:0px;
  2547. width:179px;
  2548. height:39px;
  2549. display:flex;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:12px;
  2554. color:#FFFFFF;
  2555. }
  2556. #u127759 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u127759_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. }
  2568. #u127760_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:179px;
  2574. height:39px;
  2575. }
  2576. #u127760 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:591px;
  2580. top:0px;
  2581. width:179px;
  2582. height:39px;
  2583. display:flex;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. color:#FFFFFF;
  2589. }
  2590. #u127760 .text {
  2591. position:absolute;
  2592. align-self:center;
  2593. padding:2px 2px 2px 0px;
  2594. box-sizing:border-box;
  2595. width:100%;
  2596. }
  2597. #u127760_text {
  2598. border-width:0px;
  2599. word-wrap:break-word;
  2600. text-transform:none;
  2601. }
  2602. #u127761_img {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:160px;
  2608. height:39px;
  2609. }
  2610. #u127761 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:770px;
  2614. top:0px;
  2615. width:160px;
  2616. height:39px;
  2617. display:flex;
  2618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2619. font-weight:400;
  2620. font-style:normal;
  2621. font-size:12px;
  2622. color:#FFFFFF;
  2623. }
  2624. #u127761 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 0px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u127761_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. }
  2636. #u127762_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:187px;
  2642. height:39px;
  2643. }
  2644. #u127762 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:930px;
  2648. top:0px;
  2649. width:187px;
  2650. height:39px;
  2651. display:flex;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:12px;
  2656. color:#FFFFFF;
  2657. }
  2658. #u127762 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 0px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u127762_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. }
  2670. #u127763_img {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:54px;
  2676. height:36px;
  2677. }
  2678. #u127763 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:39px;
  2683. width:54px;
  2684. height:36px;
  2685. display:flex;
  2686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:12px;
  2690. }
  2691. #u127763 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 2px 2px 0px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u127763_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. visibility:hidden;
  2703. }
  2704. #u127764_img {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:179px;
  2710. height:36px;
  2711. }
  2712. #u127764 {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:54px;
  2716. top:39px;
  2717. width:179px;
  2718. height:36px;
  2719. display:flex;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:12px;
  2724. }
  2725. #u127764 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 2px 2px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u127764_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u127765_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:179px;
  2744. height:36px;
  2745. }
  2746. #u127765 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:233px;
  2750. top:39px;
  2751. width:179px;
  2752. height:36px;
  2753. display:flex;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:12px;
  2758. }
  2759. #u127765 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 2px 2px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u127765_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. visibility:hidden;
  2771. }
  2772. #u127766_img {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:179px;
  2778. height:36px;
  2779. }
  2780. #u127766 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:412px;
  2784. top:39px;
  2785. width:179px;
  2786. height:36px;
  2787. display:flex;
  2788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:12px;
  2792. }
  2793. #u127766 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 0px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u127766_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. }
  2805. #u127767_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:179px;
  2811. height:36px;
  2812. }
  2813. #u127767 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:591px;
  2817. top:39px;
  2818. width:179px;
  2819. height:36px;
  2820. display:flex;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. }
  2826. #u127767 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 0px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u127767_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. visibility:hidden;
  2838. }
  2839. #u127768_img {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:160px;
  2845. height:36px;
  2846. }
  2847. #u127768 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:770px;
  2851. top:39px;
  2852. width:160px;
  2853. height:36px;
  2854. display:flex;
  2855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:12px;
  2859. }
  2860. #u127768 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u127768_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. visibility:hidden;
  2872. }
  2873. #u127769_img {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:187px;
  2879. height:36px;
  2880. }
  2881. #u127769 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:930px;
  2885. top:39px;
  2886. width:187px;
  2887. height:36px;
  2888. display:flex;
  2889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2890. font-weight:400;
  2891. font-style:normal;
  2892. font-size:12px;
  2893. color:#1890FF;
  2894. }
  2895. #u127769 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 0px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u127769_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. }
  2907. #u127770_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:54px;
  2913. height:38px;
  2914. }
  2915. #u127770 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:75px;
  2920. width:54px;
  2921. height:38px;
  2922. display:flex;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. }
  2928. #u127770 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 0px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u127770_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u127771_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:179px;
  2947. height:38px;
  2948. }
  2949. #u127771 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:54px;
  2953. top:75px;
  2954. width:179px;
  2955. height:38px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. }
  2962. #u127771 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 2px 2px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u127771_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u127772_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:179px;
  2981. height:38px;
  2982. }
  2983. #u127772 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:233px;
  2987. top:75px;
  2988. width:179px;
  2989. height:38px;
  2990. display:flex;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. }
  2996. #u127772 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 2px 2px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u127772_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u127773_img {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:179px;
  3015. height:38px;
  3016. }
  3017. #u127773 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:412px;
  3021. top:75px;
  3022. width:179px;
  3023. height:38px;
  3024. display:flex;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:12px;
  3029. }
  3030. #u127773 .text {
  3031. position:absolute;
  3032. align-self:center;
  3033. padding:2px 2px 2px 0px;
  3034. box-sizing:border-box;
  3035. width:100%;
  3036. }
  3037. #u127773_text {
  3038. border-width:0px;
  3039. word-wrap:break-word;
  3040. text-transform:none;
  3041. }
  3042. #u127774_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:179px;
  3048. height:38px;
  3049. }
  3050. #u127774 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:591px;
  3054. top:75px;
  3055. width:179px;
  3056. height:38px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. }
  3063. #u127774 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:2px 2px 2px 0px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u127774_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u127775_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:160px;
  3082. height:38px;
  3083. }
  3084. #u127775 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:770px;
  3088. top:75px;
  3089. width:160px;
  3090. height:38px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. }
  3097. #u127775 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 2px 2px 0px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u127775_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. visibility:hidden;
  3109. }
  3110. #u127776_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:187px;
  3116. height:38px;
  3117. }
  3118. #u127776 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:930px;
  3122. top:75px;
  3123. width:187px;
  3124. height:38px;
  3125. display:flex;
  3126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:12px;
  3130. color:#1890FF;
  3131. }
  3132. #u127776 .text {
  3133. position:absolute;
  3134. align-self:center;
  3135. padding:2px 2px 2px 0px;
  3136. box-sizing:border-box;
  3137. width:100%;
  3138. }
  3139. #u127776_text {
  3140. border-width:0px;
  3141. word-wrap:break-word;
  3142. text-transform:none;
  3143. }
  3144. #u127777_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:54px;
  3150. height:38px;
  3151. }
  3152. #u127777 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:113px;
  3157. width:54px;
  3158. height:38px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. }
  3165. #u127777 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 0px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u127777_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. visibility:hidden;
  3177. }
  3178. #u127778_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:179px;
  3184. height:38px;
  3185. }
  3186. #u127778 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:54px;
  3190. top:113px;
  3191. width:179px;
  3192. height:38px;
  3193. display:flex;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. }
  3199. #u127778 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u127778_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u127779_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:179px;
  3218. height:38px;
  3219. }
  3220. #u127779 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:233px;
  3224. top:113px;
  3225. width:179px;
  3226. height:38px;
  3227. display:flex;
  3228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:12px;
  3232. }
  3233. #u127779 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u127779_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u127780_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:179px;
  3252. height:38px;
  3253. }
  3254. #u127780 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:412px;
  3258. top:113px;
  3259. width:179px;
  3260. height:38px;
  3261. display:flex;
  3262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. font-size:12px;
  3266. }
  3267. #u127780 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u127780_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u127781_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:179px;
  3286. height:38px;
  3287. }
  3288. #u127781 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:591px;
  3292. top:113px;
  3293. width:179px;
  3294. height:38px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. }
  3301. #u127781 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u127781_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u127782_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:160px;
  3320. height:38px;
  3321. }
  3322. #u127782 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:770px;
  3326. top:113px;
  3327. width:160px;
  3328. height:38px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:12px;
  3334. }
  3335. #u127782 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u127782_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u127783_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:187px;
  3354. height:38px;
  3355. }
  3356. #u127783 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:930px;
  3360. top:113px;
  3361. width:187px;
  3362. height:38px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. color:#1890FF;
  3369. }
  3370. #u127783 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u127783_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u127784_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:54px;
  3389. height:38px;
  3390. }
  3391. #u127784 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:151px;
  3396. width:54px;
  3397. height:38px;
  3398. display:flex;
  3399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:12px;
  3403. }
  3404. #u127784 .text {
  3405. position:absolute;
  3406. align-self:center;
  3407. padding:2px 2px 2px 0px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u127784_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. visibility:hidden;
  3416. }
  3417. #u127785_img {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:179px;
  3423. height:38px;
  3424. }
  3425. #u127785 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:54px;
  3429. top:151px;
  3430. width:179px;
  3431. height:38px;
  3432. display:flex;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:12px;
  3437. }
  3438. #u127785 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 2px 2px 0px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u127785_text {
  3446. border-width:0px;
  3447. word-wrap:break-word;
  3448. text-transform:none;
  3449. visibility:hidden;
  3450. }
  3451. #u127786_img {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:179px;
  3457. height:38px;
  3458. }
  3459. #u127786 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:233px;
  3463. top:151px;
  3464. width:179px;
  3465. height:38px;
  3466. display:flex;
  3467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. }
  3472. #u127786 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u127786_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u127787_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:179px;
  3491. height:38px;
  3492. }
  3493. #u127787 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:412px;
  3497. top:151px;
  3498. width:179px;
  3499. height:38px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:12px;
  3505. }
  3506. #u127787 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u127787_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u127788_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:179px;
  3525. height:38px;
  3526. }
  3527. #u127788 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:591px;
  3531. top:151px;
  3532. width:179px;
  3533. height:38px;
  3534. display:flex;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. }
  3540. #u127788 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u127788_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. visibility:hidden;
  3552. }
  3553. #u127789_img {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:160px;
  3559. height:38px;
  3560. }
  3561. #u127789 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:770px;
  3565. top:151px;
  3566. width:160px;
  3567. height:38px;
  3568. display:flex;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:12px;
  3573. }
  3574. #u127789 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 0px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u127789_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u127790_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:187px;
  3593. height:38px;
  3594. }
  3595. #u127790 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:930px;
  3599. top:151px;
  3600. width:187px;
  3601. height:38px;
  3602. display:flex;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:12px;
  3607. color:#1890FF;
  3608. }
  3609. #u127790 .text {
  3610. position:absolute;
  3611. align-self:center;
  3612. padding:2px 2px 2px 0px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u127790_text {
  3617. border-width:0px;
  3618. word-wrap:break-word;
  3619. text-transform:none;
  3620. visibility:hidden;
  3621. }
  3622. #u127791_img {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:54px;
  3628. height:35px;
  3629. }
  3630. #u127791 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:189px;
  3635. width:54px;
  3636. height:35px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:12px;
  3642. color:#606266;
  3643. }
  3644. #u127791 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 0px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u127791_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u127792_img {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:179px;
  3663. height:35px;
  3664. }
  3665. #u127792 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:54px;
  3669. top:189px;
  3670. width:179px;
  3671. height:35px;
  3672. display:flex;
  3673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:12px;
  3677. color:#606266;
  3678. }
  3679. #u127792 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 0px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u127792_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. visibility:hidden;
  3691. }
  3692. #u127793_img {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:179px;
  3698. height:35px;
  3699. }
  3700. #u127793 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:233px;
  3704. top:189px;
  3705. width:179px;
  3706. height:35px;
  3707. display:flex;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. color:#606266;
  3713. }
  3714. #u127793 .text {
  3715. position:absolute;
  3716. align-self:center;
  3717. padding:2px 2px 2px 0px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u127793_text {
  3722. border-width:0px;
  3723. word-wrap:break-word;
  3724. text-transform:none;
  3725. visibility:hidden;
  3726. }
  3727. #u127794_img {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:179px;
  3733. height:35px;
  3734. }
  3735. #u127794 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:412px;
  3739. top:189px;
  3740. width:179px;
  3741. height:35px;
  3742. display:flex;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:12px;
  3747. color:#606266;
  3748. }
  3749. #u127794 .text {
  3750. position:absolute;
  3751. align-self:center;
  3752. padding:2px 2px 2px 0px;
  3753. box-sizing:border-box;
  3754. width:100%;
  3755. }
  3756. #u127794_text {
  3757. border-width:0px;
  3758. word-wrap:break-word;
  3759. text-transform:none;
  3760. visibility:hidden;
  3761. }
  3762. #u127795_img {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:179px;
  3768. height:35px;
  3769. }
  3770. #u127795 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:591px;
  3774. top:189px;
  3775. width:179px;
  3776. height:35px;
  3777. display:flex;
  3778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3779. font-weight:400;
  3780. font-style:normal;
  3781. font-size:12px;
  3782. color:#606266;
  3783. }
  3784. #u127795 .text {
  3785. position:absolute;
  3786. align-self:center;
  3787. padding:2px 2px 2px 0px;
  3788. box-sizing:border-box;
  3789. width:100%;
  3790. }
  3791. #u127795_text {
  3792. border-width:0px;
  3793. word-wrap:break-word;
  3794. text-transform:none;
  3795. visibility:hidden;
  3796. }
  3797. #u127796_img {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:160px;
  3803. height:35px;
  3804. }
  3805. #u127796 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:770px;
  3809. top:189px;
  3810. width:160px;
  3811. height:35px;
  3812. display:flex;
  3813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:12px;
  3817. color:#606266;
  3818. }
  3819. #u127796 .text {
  3820. position:absolute;
  3821. align-self:center;
  3822. padding:2px 2px 2px 0px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u127796_text {
  3827. border-width:0px;
  3828. word-wrap:break-word;
  3829. text-transform:none;
  3830. visibility:hidden;
  3831. }
  3832. #u127797_img {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:0px;
  3836. top:0px;
  3837. width:187px;
  3838. height:35px;
  3839. }
  3840. #u127797 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:930px;
  3844. top:189px;
  3845. width:187px;
  3846. height:35px;
  3847. display:flex;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:12px;
  3852. color:#02A7F0;
  3853. }
  3854. #u127797 .text {
  3855. position:absolute;
  3856. align-self:center;
  3857. padding:2px 2px 2px 0px;
  3858. box-sizing:border-box;
  3859. width:100%;
  3860. }
  3861. #u127797_text {
  3862. border-width:0px;
  3863. word-wrap:break-word;
  3864. text-transform:none;
  3865. visibility:hidden;
  3866. }
  3867. #u127798_img {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:54px;
  3873. height:35px;
  3874. }
  3875. #u127798 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:224px;
  3880. width:54px;
  3881. height:35px;
  3882. display:flex;
  3883. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:12px;
  3887. color:#606266;
  3888. }
  3889. #u127798 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:2px 2px 2px 0px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u127798_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. visibility:hidden;
  3901. }
  3902. #u127799_img {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:179px;
  3908. height:35px;
  3909. }
  3910. #u127799 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:54px;
  3914. top:224px;
  3915. width:179px;
  3916. height:35px;
  3917. display:flex;
  3918. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:12px;
  3922. color:#606266;
  3923. }
  3924. #u127799 .text {
  3925. position:absolute;
  3926. align-self:center;
  3927. padding:2px 2px 2px 0px;
  3928. box-sizing:border-box;
  3929. width:100%;
  3930. }
  3931. #u127799_text {
  3932. border-width:0px;
  3933. word-wrap:break-word;
  3934. text-transform:none;
  3935. visibility:hidden;
  3936. }
  3937. #u127800_img {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:0px;
  3941. top:0px;
  3942. width:179px;
  3943. height:35px;
  3944. }
  3945. #u127800 {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:233px;
  3949. top:224px;
  3950. width:179px;
  3951. height:35px;
  3952. display:flex;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:12px;
  3957. color:#606266;
  3958. }
  3959. #u127800 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 0px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u127800_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u127801_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:179px;
  3978. height:35px;
  3979. }
  3980. #u127801 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:412px;
  3984. top:224px;
  3985. width:179px;
  3986. height:35px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:12px;
  3992. color:#606266;
  3993. }
  3994. #u127801 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u127801_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. visibility:hidden;
  4006. }
  4007. #u127802_img {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:179px;
  4013. height:35px;
  4014. }
  4015. #u127802 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:591px;
  4019. top:224px;
  4020. width:179px;
  4021. height:35px;
  4022. display:flex;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. color:#606266;
  4028. }
  4029. #u127802 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 0px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u127802_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u127803_img {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:160px;
  4048. height:35px;
  4049. }
  4050. #u127803 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:770px;
  4054. top:224px;
  4055. width:160px;
  4056. height:35px;
  4057. display:flex;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:12px;
  4062. color:#606266;
  4063. }
  4064. #u127803 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 0px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u127803_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. visibility:hidden;
  4076. }
  4077. #u127804_img {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:187px;
  4083. height:35px;
  4084. }
  4085. #u127804 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:930px;
  4089. top:224px;
  4090. width:187px;
  4091. height:35px;
  4092. display:flex;
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:12px;
  4097. color:#02A7F0;
  4098. }
  4099. #u127804 .text {
  4100. position:absolute;
  4101. align-self:center;
  4102. padding:2px 2px 2px 0px;
  4103. box-sizing:border-box;
  4104. width:100%;
  4105. }
  4106. #u127804_text {
  4107. border-width:0px;
  4108. word-wrap:break-word;
  4109. text-transform:none;
  4110. visibility:hidden;
  4111. }
  4112. #u127805_img {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:54px;
  4118. height:35px;
  4119. }
  4120. #u127805 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:259px;
  4125. width:54px;
  4126. height:35px;
  4127. display:flex;
  4128. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:12px;
  4132. color:#606266;
  4133. }
  4134. #u127805 .text {
  4135. position:absolute;
  4136. align-self:center;
  4137. padding:2px 2px 2px 0px;
  4138. box-sizing:border-box;
  4139. width:100%;
  4140. }
  4141. #u127805_text {
  4142. border-width:0px;
  4143. word-wrap:break-word;
  4144. text-transform:none;
  4145. visibility:hidden;
  4146. }
  4147. #u127806_img {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:179px;
  4153. height:35px;
  4154. }
  4155. #u127806 {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:54px;
  4159. top:259px;
  4160. width:179px;
  4161. height:35px;
  4162. display:flex;
  4163. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4164. font-weight:400;
  4165. font-style:normal;
  4166. font-size:12px;
  4167. color:#606266;
  4168. }
  4169. #u127806 .text {
  4170. position:absolute;
  4171. align-self:center;
  4172. padding:2px 2px 2px 0px;
  4173. box-sizing:border-box;
  4174. width:100%;
  4175. }
  4176. #u127806_text {
  4177. border-width:0px;
  4178. word-wrap:break-word;
  4179. text-transform:none;
  4180. visibility:hidden;
  4181. }
  4182. #u127807_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:179px;
  4188. height:35px;
  4189. }
  4190. #u127807 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:233px;
  4194. top:259px;
  4195. width:179px;
  4196. height:35px;
  4197. display:flex;
  4198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:12px;
  4202. color:#606266;
  4203. }
  4204. #u127807 .text {
  4205. position:absolute;
  4206. align-self:center;
  4207. padding:2px 2px 2px 0px;
  4208. box-sizing:border-box;
  4209. width:100%;
  4210. }
  4211. #u127807_text {
  4212. border-width:0px;
  4213. word-wrap:break-word;
  4214. text-transform:none;
  4215. visibility:hidden;
  4216. }
  4217. #u127808_img {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:179px;
  4223. height:35px;
  4224. }
  4225. #u127808 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:412px;
  4229. top:259px;
  4230. width:179px;
  4231. height:35px;
  4232. display:flex;
  4233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:12px;
  4237. color:#606266;
  4238. }
  4239. #u127808 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 0px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u127808_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u127809_img {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:179px;
  4258. height:35px;
  4259. }
  4260. #u127809 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:591px;
  4264. top:259px;
  4265. width:179px;
  4266. height:35px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:12px;
  4272. color:#606266;
  4273. }
  4274. #u127809 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u127809_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. visibility:hidden;
  4286. }
  4287. #u127810_img {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:160px;
  4293. height:35px;
  4294. }
  4295. #u127810 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:770px;
  4299. top:259px;
  4300. width:160px;
  4301. height:35px;
  4302. display:flex;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. color:#606266;
  4308. }
  4309. #u127810 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u127810_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u127811_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:187px;
  4328. height:35px;
  4329. }
  4330. #u127811 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:930px;
  4334. top:259px;
  4335. width:187px;
  4336. height:35px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. color:#02A7F0;
  4343. }
  4344. #u127811 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u127811_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u127812_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:54px;
  4363. height:35px;
  4364. }
  4365. #u127812 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:294px;
  4370. width:54px;
  4371. height:35px;
  4372. display:flex;
  4373. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:12px;
  4377. color:#606266;
  4378. }
  4379. #u127812 .text {
  4380. position:absolute;
  4381. align-self:center;
  4382. padding:2px 2px 2px 0px;
  4383. box-sizing:border-box;
  4384. width:100%;
  4385. }
  4386. #u127812_text {
  4387. border-width:0px;
  4388. word-wrap:break-word;
  4389. text-transform:none;
  4390. visibility:hidden;
  4391. }
  4392. #u127813_img {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:179px;
  4398. height:35px;
  4399. }
  4400. #u127813 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:54px;
  4404. top:294px;
  4405. width:179px;
  4406. height:35px;
  4407. display:flex;
  4408. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4409. font-weight:400;
  4410. font-style:normal;
  4411. font-size:12px;
  4412. color:#606266;
  4413. }
  4414. #u127813 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 0px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u127813_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u127814_img {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:179px;
  4433. height:35px;
  4434. }
  4435. #u127814 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:233px;
  4439. top:294px;
  4440. width:179px;
  4441. height:35px;
  4442. display:flex;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:12px;
  4447. color:#606266;
  4448. }
  4449. #u127814 .text {
  4450. position:absolute;
  4451. align-self:center;
  4452. padding:2px 2px 2px 0px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u127814_text {
  4457. border-width:0px;
  4458. word-wrap:break-word;
  4459. text-transform:none;
  4460. visibility:hidden;
  4461. }
  4462. #u127815_img {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:179px;
  4468. height:35px;
  4469. }
  4470. #u127815 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:412px;
  4474. top:294px;
  4475. width:179px;
  4476. height:35px;
  4477. display:flex;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:12px;
  4482. color:#606266;
  4483. }
  4484. #u127815 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 0px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u127815_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u127816_img {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:179px;
  4503. height:35px;
  4504. }
  4505. #u127816 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:591px;
  4509. top:294px;
  4510. width:179px;
  4511. height:35px;
  4512. display:flex;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:12px;
  4517. color:#606266;
  4518. }
  4519. #u127816 .text {
  4520. position:absolute;
  4521. align-self:center;
  4522. padding:2px 2px 2px 0px;
  4523. box-sizing:border-box;
  4524. width:100%;
  4525. }
  4526. #u127816_text {
  4527. border-width:0px;
  4528. word-wrap:break-word;
  4529. text-transform:none;
  4530. visibility:hidden;
  4531. }
  4532. #u127817_img {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:160px;
  4538. height:35px;
  4539. }
  4540. #u127817 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:770px;
  4544. top:294px;
  4545. width:160px;
  4546. height:35px;
  4547. display:flex;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:12px;
  4552. color:#606266;
  4553. }
  4554. #u127817 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:2px 2px 2px 0px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u127817_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. visibility:hidden;
  4566. }
  4567. #u127818_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:187px;
  4573. height:35px;
  4574. }
  4575. #u127818 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:930px;
  4579. top:294px;
  4580. width:187px;
  4581. height:35px;
  4582. display:flex;
  4583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:12px;
  4587. color:#02A7F0;
  4588. }
  4589. #u127818 .text {
  4590. position:absolute;
  4591. align-self:center;
  4592. padding:2px 2px 2px 0px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u127818_text {
  4597. border-width:0px;
  4598. word-wrap:break-word;
  4599. text-transform:none;
  4600. visibility:hidden;
  4601. }
  4602. #u127819_img {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:54px;
  4608. height:35px;
  4609. }
  4610. #u127819 {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:329px;
  4615. width:54px;
  4616. height:35px;
  4617. display:flex;
  4618. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4619. font-weight:400;
  4620. font-style:normal;
  4621. font-size:12px;
  4622. color:#606266;
  4623. }
  4624. #u127819 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:2px 2px 2px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u127819_text {
  4632. border-width:0px;
  4633. word-wrap:break-word;
  4634. text-transform:none;
  4635. visibility:hidden;
  4636. }
  4637. #u127820_img {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:0px;
  4642. width:179px;
  4643. height:35px;
  4644. }
  4645. #u127820 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:54px;
  4649. top:329px;
  4650. width:179px;
  4651. height:35px;
  4652. display:flex;
  4653. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:12px;
  4657. color:#606266;
  4658. }
  4659. #u127820 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:2px 2px 2px 0px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u127820_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. visibility:hidden;
  4671. }
  4672. #u127821_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:179px;
  4678. height:35px;
  4679. }
  4680. #u127821 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:233px;
  4684. top:329px;
  4685. width:179px;
  4686. height:35px;
  4687. display:flex;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:12px;
  4692. color:#606266;
  4693. }
  4694. #u127821 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 0px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u127821_text {
  4702. border-width:0px;
  4703. word-wrap:break-word;
  4704. text-transform:none;
  4705. visibility:hidden;
  4706. }
  4707. #u127822_img {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:0px;
  4711. top:0px;
  4712. width:179px;
  4713. height:35px;
  4714. }
  4715. #u127822 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:412px;
  4719. top:329px;
  4720. width:179px;
  4721. height:35px;
  4722. display:flex;
  4723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4724. font-weight:400;
  4725. font-style:normal;
  4726. font-size:12px;
  4727. color:#606266;
  4728. }
  4729. #u127822 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:2px 2px 2px 0px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u127822_text {
  4737. border-width:0px;
  4738. word-wrap:break-word;
  4739. text-transform:none;
  4740. visibility:hidden;
  4741. }
  4742. #u127823_img {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:179px;
  4748. height:35px;
  4749. }
  4750. #u127823 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:591px;
  4754. top:329px;
  4755. width:179px;
  4756. height:35px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:12px;
  4762. color:#606266;
  4763. }
  4764. #u127823 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 0px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u127823_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u127824_img {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:160px;
  4783. height:35px;
  4784. }
  4785. #u127824 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:770px;
  4789. top:329px;
  4790. width:160px;
  4791. height:35px;
  4792. display:flex;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:12px;
  4797. color:#606266;
  4798. }
  4799. #u127824 .text {
  4800. position:absolute;
  4801. align-self:center;
  4802. padding:2px 2px 2px 0px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u127824_text {
  4807. border-width:0px;
  4808. word-wrap:break-word;
  4809. text-transform:none;
  4810. visibility:hidden;
  4811. }
  4812. #u127825_img {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:187px;
  4818. height:35px;
  4819. }
  4820. #u127825 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:930px;
  4824. top:329px;
  4825. width:187px;
  4826. height:35px;
  4827. display:flex;
  4828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:12px;
  4832. color:#02A7F0;
  4833. }
  4834. #u127825 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 0px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u127825_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u127826 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:0px;
  4853. height:0px;
  4854. }
  4855. #u127827_div {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:140px;
  4861. height:30px;
  4862. background:inherit;
  4863. background-color:rgba(255, 255, 255, 1);
  4864. box-sizing:border-box;
  4865. border-width:1px;
  4866. border-style:solid;
  4867. border-color:rgba(201, 201, 201, 1);
  4868. border-radius:4px;
  4869. -moz-box-shadow:none;
  4870. -webkit-box-shadow:none;
  4871. box-shadow:none;
  4872. font-family:'Microsoft YaHei', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:14px;
  4876. color:#CCCCCC;
  4877. text-align:left;
  4878. }
  4879. #u127827 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:432px;
  4883. top:105px;
  4884. width:140px;
  4885. height:30px;
  4886. display:flex;
  4887. font-family:'Microsoft YaHei', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:14px;
  4891. color:#CCCCCC;
  4892. text-align:left;
  4893. }
  4894. #u127827 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 8px 2px 8px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u127827_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u127828_input {
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:127px;
  4912. height:25px;
  4913. padding:2px 2px 2px 2px;
  4914. font-family:'Microsoft YaHei', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:10px;
  4918. letter-spacing:normal;
  4919. color:#000000;
  4920. vertical-align:none;
  4921. text-align:left;
  4922. text-transform:none;
  4923. background-color:transparent;
  4924. border-color:transparent;
  4925. }
  4926. #u127828_input.disabled {
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:127px;
  4931. height:25px;
  4932. padding:2px 2px 2px 2px;
  4933. font-family:'Microsoft YaHei', sans-serif;
  4934. font-weight:400;
  4935. font-style:normal;
  4936. font-size:10px;
  4937. letter-spacing:normal;
  4938. color:#000000;
  4939. vertical-align:none;
  4940. text-align:left;
  4941. text-transform:none;
  4942. background-color:transparent;
  4943. border-color:transparent;
  4944. }
  4945. #u127828_div {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:127px;
  4951. height:25px;
  4952. background:inherit;
  4953. background-color:rgba(255, 255, 255, 1);
  4954. border:none;
  4955. border-radius:0px;
  4956. -moz-box-shadow:none;
  4957. -webkit-box-shadow:none;
  4958. box-shadow:none;
  4959. font-family:'Microsoft YaHei', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:10px;
  4963. }
  4964. #u127828 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:440px;
  4968. top:106px;
  4969. width:127px;
  4970. height:25px;
  4971. display:flex;
  4972. font-family:'Microsoft YaHei', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:10px;
  4976. }
  4977. #u127828 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 2px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u127828_div.disabled {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:127px;
  4990. height:25px;
  4991. background:inherit;
  4992. background-color:rgba(240, 240, 240, 1);
  4993. border:none;
  4994. border-radius:0px;
  4995. -moz-box-shadow:none;
  4996. -webkit-box-shadow:none;
  4997. box-shadow:none;
  4998. font-family:'Microsoft YaHei', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:10px;
  5002. }
  5003. #u127828.disabled {
  5004. }
  5005. #u127829 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:0px;
  5011. height:0px;
  5012. }
  5013. #u127830_div {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:140px;
  5019. height:30px;
  5020. background:inherit;
  5021. background-color:rgba(255, 255, 255, 1);
  5022. box-sizing:border-box;
  5023. border-width:1px;
  5024. border-style:solid;
  5025. border-color:rgba(215, 215, 215, 1);
  5026. border-radius:4px;
  5027. -moz-box-shadow:none;
  5028. -webkit-box-shadow:none;
  5029. box-shadow:none;
  5030. font-size:11px;
  5031. }
  5032. #u127830 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:582px;
  5036. top:104px;
  5037. width:140px;
  5038. height:30px;
  5039. display:flex;
  5040. font-size:11px;
  5041. }
  5042. #u127830 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 2px 2px 2px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u127830_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u127831_input {
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:126px;
  5060. height:23px;
  5061. padding:2px 2px 2px 2px;
  5062. font-family:'ArialMT', 'Arial', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:11px;
  5066. letter-spacing:normal;
  5067. color:#AAAAAA;
  5068. vertical-align:none;
  5069. text-align:left;
  5070. text-transform:none;
  5071. background-color:transparent;
  5072. border-color:transparent;
  5073. }
  5074. #u127831_input.disabled {
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:126px;
  5079. height:23px;
  5080. padding:2px 2px 2px 2px;
  5081. font-family:'ArialMT', 'Arial', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:11px;
  5085. letter-spacing:normal;
  5086. color:#AAAAAA;
  5087. vertical-align:none;
  5088. text-align:left;
  5089. text-transform:none;
  5090. background-color:transparent;
  5091. border-color:transparent;
  5092. }
  5093. #u127831_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:126px;
  5099. height:23px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 1);
  5102. border:none;
  5103. border-radius:0px;
  5104. -moz-box-shadow:none;
  5105. -webkit-box-shadow:none;
  5106. box-shadow:none;
  5107. font-size:11px;
  5108. color:#AAAAAA;
  5109. }
  5110. #u127831 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:589px;
  5114. top:106px;
  5115. width:126px;
  5116. height:23px;
  5117. display:flex;
  5118. font-size:11px;
  5119. color:#AAAAAA;
  5120. }
  5121. #u127831 .text {
  5122. position:absolute;
  5123. align-self:flex-start;
  5124. padding:2px 2px 2px 2px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u127831_div.disabled {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:126px;
  5134. height:23px;
  5135. background:inherit;
  5136. background-color:rgba(240, 240, 240, 1);
  5137. border:none;
  5138. border-radius:0px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-size:11px;
  5143. color:#AAAAAA;
  5144. }
  5145. #u127831.disabled {
  5146. }
  5147. .u127831_input_option {
  5148. font-size:11px;
  5149. }
  5150. #u127832_div {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:59px;
  5156. height:30px;
  5157. background:inherit;
  5158. background-color:rgba(24, 144, 255, 1);
  5159. box-sizing:border-box;
  5160. border-width:1px;
  5161. border-style:solid;
  5162. border-color:rgba(0, 153, 255, 1);
  5163. border-radius:4px;
  5164. -moz-box-shadow:none;
  5165. -webkit-box-shadow:none;
  5166. box-shadow:none;
  5167. font-family:'Microsoft YaHei', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:14px;
  5171. color:#FFFFFF;
  5172. }
  5173. #u127832 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:732px;
  5177. top:103px;
  5178. width:59px;
  5179. height:30px;
  5180. display:flex;
  5181. font-family:'Microsoft YaHei', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:14px;
  5185. color:#FFFFFF;
  5186. }
  5187. #u127832 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:5px 15px 5px 15px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u127832_text {
  5195. border-width:0px;
  5196. white-space:nowrap;
  5197. text-transform:none;
  5198. }
  5199. #u127833_div {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:55px;
  5205. height:30px;
  5206. background:inherit;
  5207. background-color:rgba(255, 255, 255, 1);
  5208. box-sizing:border-box;
  5209. border-width:1px;
  5210. border-style:solid;
  5211. border-color:rgba(170, 170, 170, 1);
  5212. border-radius:4px;
  5213. -moz-box-shadow:none;
  5214. -webkit-box-shadow:none;
  5215. box-shadow:none;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:12px;
  5220. color:#555555;
  5221. }
  5222. #u127833 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:801px;
  5226. top:103px;
  5227. width:55px;
  5228. height:30px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:12px;
  5234. color:#555555;
  5235. }
  5236. #u127833 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:5px 15px 5px 15px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u127833_text {
  5244. border-width:0px;
  5245. white-space:nowrap;
  5246. text-transform:none;
  5247. }