styles.css 88 KB

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