styles.css 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2281px;
  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. #u28025_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u28025 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u28025 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u28025_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u28026_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u28026 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u28026 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u28026_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u28027 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u28028_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u28028 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u28028 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u28028_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u28029_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u28029 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u28029 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u28029_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u28030_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u28030 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u28030 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u28030_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u28031_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u28031 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u28031 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u28031_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u28032 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u28033_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u28033 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u28033 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u28033_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u28034_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u28034 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u28034 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u28034_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u28035 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u28036_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u28036 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u28036 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u28036_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u28037_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u28037 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u28037 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u28037_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u28038 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u28039_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u28039 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u28039 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u28039_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u28040_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u28040 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u28040 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u28040_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u28041 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u28042_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u28042 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u28042 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u28042_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u28043_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u28043 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u28043 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u28043_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u28044 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u28045_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u28045 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u28045 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u28045_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u28046_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u28046 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u28046 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u28046_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u28047 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u28048_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u28048 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u28048 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u28048_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u28049_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u28049 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u28049 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u28049_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u28050 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u28051_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u28051 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:445px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u28051 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u28051_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u28052_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u28052 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u28052 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u28052_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u28053 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u28054_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u28054 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:487px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u28054 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u28054_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u28055_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u28055 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u28055 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u28055_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u28056 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u28057_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u28057 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u28057 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u28057_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u28058_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u28058 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u28058 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u28058_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u28059 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u28060_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u28060_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u28060_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u28060 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:11px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u28060 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u28060_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u28060.disabled {
  1108. }
  1109. .u28060_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u28061_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u28061 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u28061 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u28061_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u28062_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u28062 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:13px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u28062 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u28062_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u28063_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u28063 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u28063 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u28063_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u28064 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u28065_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u28065 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:361px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u28065 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u28065_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u28066_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u28066 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u28066 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u28066_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u28067 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u28068_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u28068 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u28068 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u28068_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u28069_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u28069 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u28069 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u28069_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u28070 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u28071_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u28071 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u28071 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u28071_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u28072_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u28072 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u28072 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u28072_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u28073 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u28074_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. #u28074 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:529px;
  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. #u28074 .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. #u28074_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u28075_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u28075 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u28075 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u28075_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u28076 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u28077_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. #u28077 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  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. #u28077 .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. #u28077_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u28078_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u28078 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u28078 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u28078_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u28079 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u28080_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u28080 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:403px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u28080 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u28080_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u28081_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u28081 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u28081 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u28081_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u28082_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:1198px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1736. }
  1737. #u28082 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1260px;
  1743. height:1198px;
  1744. display:flex;
  1745. }
  1746. #u28082 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u28082_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u28083 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:0px;
  1765. height:0px;
  1766. }
  1767. #u28084 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:350px;
  1771. top:165px;
  1772. width:1220px;
  1773. height:274px;
  1774. }
  1775. #u28085_img {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:80px;
  1781. height:34px;
  1782. }
  1783. #u28085 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:80px;
  1789. height:34px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:14px;
  1795. color:#FFFFFF;
  1796. text-align:left;
  1797. line-height:30px;
  1798. }
  1799. #u28085 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 10px 2px 10px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u28085_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u28086_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:120px;
  1817. height:34px;
  1818. }
  1819. #u28086 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:80px;
  1823. top:0px;
  1824. width:120px;
  1825. height:34px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:14px;
  1831. color:#FFFFFF;
  1832. text-align:left;
  1833. line-height:30px;
  1834. }
  1835. #u28086 .text {
  1836. position:absolute;
  1837. align-self:center;
  1838. padding:2px 10px 2px 10px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u28086_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. }
  1847. #u28087_img {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:660px;
  1853. height:34px;
  1854. }
  1855. #u28087 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:200px;
  1859. top:0px;
  1860. width:660px;
  1861. height:34px;
  1862. display:flex;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:14px;
  1867. color:#FFFFFF;
  1868. text-align:left;
  1869. line-height:30px;
  1870. }
  1871. #u28087 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 10px 2px 10px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u28087_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u28088_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:180px;
  1889. height:34px;
  1890. }
  1891. #u28088 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:860px;
  1895. top:0px;
  1896. width:180px;
  1897. height:34px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:14px;
  1903. color:#FFFFFF;
  1904. text-align:left;
  1905. line-height:30px;
  1906. }
  1907. #u28088 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 10px 2px 10px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u28088_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. }
  1919. #u28089_img {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:180px;
  1925. height:34px;
  1926. }
  1927. #u28089 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:1040px;
  1931. top:0px;
  1932. width:180px;
  1933. height:34px;
  1934. display:flex;
  1935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:14px;
  1939. color:#FFFFFF;
  1940. text-align:left;
  1941. line-height:30px;
  1942. }
  1943. #u28089 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 10px 2px 10px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u28089_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u28090_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:80px;
  1961. height:40px;
  1962. }
  1963. #u28090 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:34px;
  1968. width:80px;
  1969. height:40px;
  1970. display:flex;
  1971. font-size:14px;
  1972. text-align:left;
  1973. line-height:30px;
  1974. }
  1975. #u28090 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 10px 2px 10px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u28090_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. }
  1987. #u28091_img {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:120px;
  1993. height:40px;
  1994. }
  1995. #u28091 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:80px;
  1999. top:34px;
  2000. width:120px;
  2001. height:40px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:14px;
  2007. text-align:left;
  2008. line-height:30px;
  2009. }
  2010. #u28091 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 10px 2px 10px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u28091_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. }
  2022. #u28092_img {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:660px;
  2028. height:40px;
  2029. }
  2030. #u28092 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:200px;
  2034. top:34px;
  2035. width:660px;
  2036. height:40px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:14px;
  2042. text-align:left;
  2043. line-height:30px;
  2044. }
  2045. #u28092 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 10px 2px 10px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u28092_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u28093_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:180px;
  2063. height:40px;
  2064. }
  2065. #u28093 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:860px;
  2069. top:34px;
  2070. width:180px;
  2071. height:40px;
  2072. display:flex;
  2073. font-size:14px;
  2074. text-align:left;
  2075. line-height:30px;
  2076. }
  2077. #u28093 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 10px 2px 10px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u28093_text {
  2085. border-width:0px;
  2086. word-wrap:break-word;
  2087. text-transform:none;
  2088. visibility:hidden;
  2089. }
  2090. #u28094_img {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:180px;
  2096. height:40px;
  2097. }
  2098. #u28094 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:1040px;
  2102. top:34px;
  2103. width:180px;
  2104. height:40px;
  2105. display:flex;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. color:#1890FF;
  2111. text-align:left;
  2112. line-height:30px;
  2113. }
  2114. #u28094 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 10px 2px 10px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u28094_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. }
  2126. #u28095_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:80px;
  2132. height:40px;
  2133. }
  2134. #u28095 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:74px;
  2139. width:80px;
  2140. height:40px;
  2141. display:flex;
  2142. font-size:14px;
  2143. text-align:left;
  2144. line-height:30px;
  2145. }
  2146. #u28095 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 10px 2px 10px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u28095_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. }
  2158. #u28096_img {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:120px;
  2164. height:40px;
  2165. }
  2166. #u28096 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:80px;
  2170. top:74px;
  2171. width:120px;
  2172. height:40px;
  2173. display:flex;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:14px;
  2178. text-align:left;
  2179. line-height:30px;
  2180. }
  2181. #u28096 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 10px 2px 10px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u28096_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. }
  2193. #u28097_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:660px;
  2199. height:40px;
  2200. }
  2201. #u28097 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:200px;
  2205. top:74px;
  2206. width:660px;
  2207. height:40px;
  2208. display:flex;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:14px;
  2213. text-align:left;
  2214. line-height:30px;
  2215. }
  2216. #u28097 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 10px 2px 10px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u28097_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. }
  2228. #u28098_img {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:180px;
  2234. height:40px;
  2235. }
  2236. #u28098 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:860px;
  2240. top:74px;
  2241. width:180px;
  2242. height:40px;
  2243. display:flex;
  2244. font-size:14px;
  2245. text-align:left;
  2246. line-height:30px;
  2247. }
  2248. #u28098 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 10px 2px 10px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u28098_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u28099_img {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:180px;
  2267. height:40px;
  2268. }
  2269. #u28099 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:1040px;
  2273. top:74px;
  2274. width:180px;
  2275. height:40px;
  2276. display:flex;
  2277. font-size:14px;
  2278. color:#1890FF;
  2279. text-align:left;
  2280. line-height:30px;
  2281. }
  2282. #u28099 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 10px 2px 10px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u28099_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u28100_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:80px;
  2301. height:40px;
  2302. }
  2303. #u28100 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:114px;
  2308. width:80px;
  2309. height:40px;
  2310. display:flex;
  2311. font-size:14px;
  2312. text-align:left;
  2313. line-height:30px;
  2314. }
  2315. #u28100 .text {
  2316. position:absolute;
  2317. align-self:center;
  2318. padding:2px 10px 2px 10px;
  2319. box-sizing:border-box;
  2320. width:100%;
  2321. }
  2322. #u28100_text {
  2323. border-width:0px;
  2324. word-wrap:break-word;
  2325. text-transform:none;
  2326. }
  2327. #u28101_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:120px;
  2333. height:40px;
  2334. }
  2335. #u28101 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:80px;
  2339. top:114px;
  2340. width:120px;
  2341. height:40px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:14px;
  2347. text-align:left;
  2348. line-height:30px;
  2349. }
  2350. #u28101 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 10px 2px 10px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u28101_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. }
  2362. #u28102_img {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:660px;
  2368. height:40px;
  2369. }
  2370. #u28102 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:200px;
  2374. top:114px;
  2375. width:660px;
  2376. height:40px;
  2377. display:flex;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:14px;
  2382. text-align:left;
  2383. line-height:30px;
  2384. }
  2385. #u28102 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 10px 2px 10px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u28102_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. }
  2397. #u28103_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:180px;
  2403. height:40px;
  2404. }
  2405. #u28103 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:860px;
  2409. top:114px;
  2410. width:180px;
  2411. height:40px;
  2412. display:flex;
  2413. font-size:14px;
  2414. text-align:left;
  2415. line-height:30px;
  2416. }
  2417. #u28103 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:2px 10px 2px 10px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u28103_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. visibility:hidden;
  2429. }
  2430. #u28104_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:180px;
  2436. height:40px;
  2437. }
  2438. #u28104 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:1040px;
  2442. top:114px;
  2443. width:180px;
  2444. height:40px;
  2445. display:flex;
  2446. font-size:14px;
  2447. color:#1890FF;
  2448. text-align:left;
  2449. line-height:30px;
  2450. }
  2451. #u28104 .text {
  2452. position:absolute;
  2453. align-self:center;
  2454. padding:2px 10px 2px 10px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u28104_text {
  2459. border-width:0px;
  2460. word-wrap:break-word;
  2461. text-transform:none;
  2462. visibility:hidden;
  2463. }
  2464. #u28105_img {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:80px;
  2470. height:40px;
  2471. }
  2472. #u28105 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:154px;
  2477. width:80px;
  2478. height:40px;
  2479. display:flex;
  2480. font-size:14px;
  2481. text-align:left;
  2482. line-height:30px;
  2483. }
  2484. #u28105 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 10px 2px 10px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u28105_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. }
  2496. #u28106_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:120px;
  2502. height:40px;
  2503. }
  2504. #u28106 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:80px;
  2508. top:154px;
  2509. width:120px;
  2510. height:40px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:14px;
  2516. text-align:left;
  2517. line-height:30px;
  2518. }
  2519. #u28106 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:2px 10px 2px 10px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u28106_text {
  2527. border-width:0px;
  2528. word-wrap:break-word;
  2529. text-transform:none;
  2530. }
  2531. #u28107_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:660px;
  2537. height:40px;
  2538. }
  2539. #u28107 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:200px;
  2543. top:154px;
  2544. width:660px;
  2545. height:40px;
  2546. display:flex;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. text-align:left;
  2552. line-height:30px;
  2553. }
  2554. #u28107 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 10px 2px 10px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u28107_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. }
  2566. #u28108_img {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:180px;
  2572. height:40px;
  2573. }
  2574. #u28108 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:860px;
  2578. top:154px;
  2579. width:180px;
  2580. height:40px;
  2581. display:flex;
  2582. font-size:14px;
  2583. text-align:left;
  2584. line-height:30px;
  2585. }
  2586. #u28108 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 10px 2px 10px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u28108_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. visibility:hidden;
  2598. }
  2599. #u28109_img {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:180px;
  2605. height:40px;
  2606. }
  2607. #u28109 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:1040px;
  2611. top:154px;
  2612. width:180px;
  2613. height:40px;
  2614. display:flex;
  2615. font-size:14px;
  2616. color:#1890FF;
  2617. text-align:left;
  2618. line-height:30px;
  2619. }
  2620. #u28109 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 10px 2px 10px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u28109_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. visibility:hidden;
  2632. }
  2633. #u28110_img {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:80px;
  2639. height:40px;
  2640. }
  2641. #u28110 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:194px;
  2646. width:80px;
  2647. height:40px;
  2648. display:flex;
  2649. font-size:14px;
  2650. text-align:left;
  2651. line-height:30px;
  2652. }
  2653. #u28110 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 10px 2px 10px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u28110_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. }
  2665. #u28111_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:120px;
  2671. height:40px;
  2672. }
  2673. #u28111 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:80px;
  2677. top:194px;
  2678. width:120px;
  2679. height:40px;
  2680. display:flex;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:14px;
  2685. text-align:left;
  2686. line-height:30px;
  2687. }
  2688. #u28111 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 10px 2px 10px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u28111_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. }
  2700. #u28112_img {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:660px;
  2706. height:40px;
  2707. }
  2708. #u28112 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:200px;
  2712. top:194px;
  2713. width:660px;
  2714. height:40px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:14px;
  2720. text-align:left;
  2721. line-height:30px;
  2722. }
  2723. #u28112 .text {
  2724. position:absolute;
  2725. align-self:center;
  2726. padding:2px 10px 2px 10px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u28112_text {
  2731. border-width:0px;
  2732. word-wrap:break-word;
  2733. text-transform:none;
  2734. }
  2735. #u28113_img {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:180px;
  2741. height:40px;
  2742. }
  2743. #u28113 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:860px;
  2747. top:194px;
  2748. width:180px;
  2749. height:40px;
  2750. display:flex;
  2751. font-size:14px;
  2752. text-align:left;
  2753. line-height:30px;
  2754. }
  2755. #u28113 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:2px 10px 2px 10px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u28113_text {
  2763. border-width:0px;
  2764. word-wrap:break-word;
  2765. text-transform:none;
  2766. visibility:hidden;
  2767. }
  2768. #u28114_img {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:180px;
  2774. height:40px;
  2775. }
  2776. #u28114 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:1040px;
  2780. top:194px;
  2781. width:180px;
  2782. height:40px;
  2783. display:flex;
  2784. font-size:14px;
  2785. color:#1890FF;
  2786. text-align:left;
  2787. line-height:30px;
  2788. }
  2789. #u28114 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 10px 2px 10px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u28114_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u28115_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:80px;
  2808. height:40px;
  2809. }
  2810. #u28115 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:234px;
  2815. width:80px;
  2816. height:40px;
  2817. display:flex;
  2818. font-size:14px;
  2819. text-align:left;
  2820. line-height:30px;
  2821. }
  2822. #u28115 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 10px 2px 10px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u28115_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. }
  2834. #u28116_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:120px;
  2840. height:40px;
  2841. }
  2842. #u28116 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:80px;
  2846. top:234px;
  2847. width:120px;
  2848. height:40px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:14px;
  2854. text-align:left;
  2855. line-height:30px;
  2856. }
  2857. #u28116 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 10px 2px 10px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u28116_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. }
  2869. #u28117_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:660px;
  2875. height:40px;
  2876. }
  2877. #u28117 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:200px;
  2881. top:234px;
  2882. width:660px;
  2883. height:40px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:14px;
  2889. text-align:left;
  2890. line-height:30px;
  2891. }
  2892. #u28117 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 10px 2px 10px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u28117_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. }
  2904. #u28118_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:180px;
  2910. height:40px;
  2911. }
  2912. #u28118 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:860px;
  2916. top:234px;
  2917. width:180px;
  2918. height:40px;
  2919. display:flex;
  2920. font-size:14px;
  2921. text-align:left;
  2922. line-height:30px;
  2923. }
  2924. #u28118 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 10px 2px 10px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u28118_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u28119_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:180px;
  2943. height:40px;
  2944. }
  2945. #u28119 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:1040px;
  2949. top:234px;
  2950. width:180px;
  2951. height:40px;
  2952. display:flex;
  2953. font-size:14px;
  2954. color:#1890FF;
  2955. text-align:left;
  2956. line-height:30px;
  2957. }
  2958. #u28119 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 10px 2px 10px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u28119_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u28120_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:50px;
  2977. height:31px;
  2978. }
  2979. #u28120 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:1224px;
  2983. top:244px;
  2984. width:50px;
  2985. height:31px;
  2986. display:flex;
  2987. }
  2988. #u28120 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u28120_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u28121_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:50px;
  3007. height:31px;
  3008. }
  3009. #u28121 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:1224px;
  3013. top:205px;
  3014. width:50px;
  3015. height:31px;
  3016. display:flex;
  3017. }
  3018. #u28121 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u28121_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u28122_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:50px;
  3037. height:31px;
  3038. }
  3039. #u28122 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:1224px;
  3043. top:285px;
  3044. width:50px;
  3045. height:31px;
  3046. display:flex;
  3047. }
  3048. #u28122 .text {
  3049. position:absolute;
  3050. align-self:center;
  3051. padding:2px 2px 2px 2px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u28122_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. visibility:hidden;
  3060. }
  3061. #u28123_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:50px;
  3067. height:31px;
  3068. }
  3069. #u28123 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:1224px;
  3073. top:325px;
  3074. width:50px;
  3075. height:31px;
  3076. display:flex;
  3077. }
  3078. #u28123 .text {
  3079. position:absolute;
  3080. align-self:center;
  3081. padding:2px 2px 2px 2px;
  3082. box-sizing:border-box;
  3083. width:100%;
  3084. }
  3085. #u28123_text {
  3086. border-width:0px;
  3087. word-wrap:break-word;
  3088. text-transform:none;
  3089. visibility:hidden;
  3090. }
  3091. #u28124_img {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:50px;
  3097. height:31px;
  3098. }
  3099. #u28124 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:1224px;
  3103. top:364px;
  3104. width:50px;
  3105. height:31px;
  3106. display:flex;
  3107. }
  3108. #u28124 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 2px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u28124_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u28125_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:50px;
  3127. height:31px;
  3128. }
  3129. #u28125 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:1224px;
  3133. top:403px;
  3134. width:50px;
  3135. height:31px;
  3136. display:flex;
  3137. }
  3138. #u28125 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u28125_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u28126_div {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:60px;
  3157. height:30px;
  3158. background:inherit;
  3159. background-color:rgba(41, 143, 255, 1);
  3160. border:none;
  3161. border-radius:4px;
  3162. -moz-box-shadow:none;
  3163. -webkit-box-shadow:none;
  3164. box-shadow:none;
  3165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:14px;
  3169. color:#FFFFFF;
  3170. }
  3171. #u28126 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:350px;
  3175. top:115px;
  3176. width:60px;
  3177. height:30px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:14px;
  3183. color:#FFFFFF;
  3184. }
  3185. #u28126 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:5px 0px 5px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u28126_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. }
  3197. #u28127_div {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:73px;
  3203. height:25px;
  3204. background:inherit;
  3205. background-color:rgba(255, 255, 255, 0);
  3206. border:none;
  3207. border-radius:0px;
  3208. -moz-box-shadow:none;
  3209. -webkit-box-shadow:none;
  3210. box-shadow:none;
  3211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:18px;
  3215. }
  3216. #u28127 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:350px;
  3220. top:70px;
  3221. width:73px;
  3222. height:25px;
  3223. display:flex;
  3224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:18px;
  3228. }
  3229. #u28127 .text {
  3230. position:absolute;
  3231. align-self:flex-start;
  3232. padding:0px 0px 0px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u28127_text {
  3237. border-width:0px;
  3238. white-space:nowrap;
  3239. text-transform:none;
  3240. }
  3241. #u28128 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:0px;
  3247. height:0px;
  3248. }
  3249. #u28129_div {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:630px;
  3255. height:1196px;
  3256. background:inherit;
  3257. background-color:rgba(255, 255, 255, 1);
  3258. box-sizing:border-box;
  3259. border-width:1px;
  3260. border-style:solid;
  3261. border-color:rgba(215, 215, 215, 1);
  3262. border-radius:0px;
  3263. -moz-box-shadow:none;
  3264. -webkit-box-shadow:none;
  3265. box-shadow:none;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:14px;
  3270. color:#AAAAAA;
  3271. text-align:center;
  3272. line-height:30px;
  3273. }
  3274. #u28129 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:1651px;
  3278. top:51px;
  3279. width:630px;
  3280. height:1196px;
  3281. display:flex;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:14px;
  3286. color:#AAAAAA;
  3287. text-align:center;
  3288. line-height:30px;
  3289. }
  3290. #u28129 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:5px 10px 5px 10px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u28129_text {
  3298. border-width:0px;
  3299. word-wrap:break-word;
  3300. text-transform:none;
  3301. visibility:hidden;
  3302. }
  3303. #u28130_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:119px;
  3309. height:35px;
  3310. background:inherit;
  3311. background-color:rgba(255, 255, 255, 0);
  3312. border:none;
  3313. border-top:0px;
  3314. border-right:0px;
  3315. border-bottom:0px;
  3316. border-radius:0px;
  3317. border-top-left-radius:0px;
  3318. border-bottom-left-radius:0px;
  3319. -moz-box-shadow:none;
  3320. -webkit-box-shadow:none;
  3321. box-shadow:none;
  3322. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3323. font-weight:500;
  3324. font-style:normal;
  3325. font-size:18px;
  3326. }
  3327. #u28130 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:1671px;
  3331. top:69px;
  3332. width:119px;
  3333. height:35px;
  3334. display:flex;
  3335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3336. font-weight:500;
  3337. font-style:normal;
  3338. font-size:18px;
  3339. }
  3340. #u28130 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:5px 10px 5px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u28130_text {
  3348. border-width:0px;
  3349. white-space:nowrap;
  3350. text-transform:none;
  3351. }
  3352. #u28131_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:40px;
  3358. height:40px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 0);
  3361. border:none;
  3362. border-top:0px;
  3363. border-right:0px;
  3364. border-bottom:0px;
  3365. border-radius:0px;
  3366. border-top-left-radius:0px;
  3367. border-bottom-left-radius:0px;
  3368. -moz-box-shadow:none;
  3369. -webkit-box-shadow:none;
  3370. box-shadow:none;
  3371. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3372. font-weight:500;
  3373. font-style:normal;
  3374. font-size:18px;
  3375. text-align:center;
  3376. }
  3377. #u28131 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:2241px;
  3381. top:51px;
  3382. width:40px;
  3383. height:40px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3386. font-weight:500;
  3387. font-style:normal;
  3388. font-size:18px;
  3389. text-align:center;
  3390. }
  3391. #u28131 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:5px 10px 5px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u28131_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. }
  3403. #u28132_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:13px;
  3409. height:13px;
  3410. }
  3411. #u28132 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:2229px;
  3415. top:67px;
  3416. width:13px;
  3417. height:13px;
  3418. display:flex;
  3419. }
  3420. #u28132 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 2px 2px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u28132_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u28133 {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:0px;
  3439. height:0px;
  3440. }
  3441. #u28134_div {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:630px;
  3447. height:50px;
  3448. background:inherit;
  3449. background-color:rgba(255, 255, 255, 1);
  3450. box-sizing:border-box;
  3451. border-width:1px;
  3452. border-style:solid;
  3453. border-color:rgba(215, 215, 215, 1);
  3454. border-radius:0px;
  3455. -moz-box-shadow:none;
  3456. -webkit-box-shadow:none;
  3457. box-shadow:none;
  3458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3459. font-weight:400;
  3460. font-style:normal;
  3461. font-size:14px;
  3462. color:#AAAAAA;
  3463. text-align:center;
  3464. line-height:30px;
  3465. }
  3466. #u28134 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:1651px;
  3470. top:1197px;
  3471. width:630px;
  3472. height:50px;
  3473. display:flex;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:14px;
  3478. color:#AAAAAA;
  3479. text-align:center;
  3480. line-height:30px;
  3481. }
  3482. #u28134 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:5px 10px 5px 10px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u28134_text {
  3490. border-width:0px;
  3491. word-wrap:break-word;
  3492. text-transform:none;
  3493. visibility:hidden;
  3494. }
  3495. #u28135_div {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:0px;
  3499. top:0px;
  3500. width:80px;
  3501. height:30px;
  3502. background:inherit;
  3503. background-color:rgba(24, 144, 255, 1);
  3504. border:none;
  3505. border-radius:4px;
  3506. -moz-box-shadow:none;
  3507. -webkit-box-shadow:none;
  3508. box-shadow:none;
  3509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:14px;
  3513. color:#FFFFFF;
  3514. }
  3515. #u28135 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:2179px;
  3519. top:1207px;
  3520. width:80px;
  3521. height:30px;
  3522. display:flex;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:14px;
  3527. color:#FFFFFF;
  3528. }
  3529. #u28135 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 2px 2px 2px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u28135_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. }
  3541. #u28136_div {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:80px;
  3547. height:30px;
  3548. background:inherit;
  3549. background-color:rgba(255, 255, 255, 1);
  3550. box-sizing:border-box;
  3551. border-width:1px;
  3552. border-style:solid;
  3553. border-color:rgba(121, 121, 121, 1);
  3554. border-radius:4px;
  3555. -moz-box-shadow:none;
  3556. -webkit-box-shadow:none;
  3557. box-shadow:none;
  3558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:14px;
  3562. }
  3563. #u28136 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:2089px;
  3567. top:1207px;
  3568. width:80px;
  3569. height:30px;
  3570. display:flex;
  3571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:14px;
  3575. }
  3576. #u28136 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 2px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u28136_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. }
  3588. #u28137_div {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:74px;
  3594. height:40px;
  3595. background:inherit;
  3596. background-color:rgba(255, 255, 255, 0);
  3597. border:none;
  3598. border-top:0px;
  3599. border-right:0px;
  3600. border-bottom:0px;
  3601. border-radius:0px;
  3602. border-top-left-radius:0px;
  3603. border-bottom-left-radius:0px;
  3604. -moz-box-shadow:none;
  3605. -webkit-box-shadow:none;
  3606. box-shadow:none;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:14px;
  3611. }
  3612. #u28137 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:1691px;
  3616. top:124px;
  3617. width:74px;
  3618. height:40px;
  3619. display:flex;
  3620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:14px;
  3624. }
  3625. #u28137 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:5px 10px 5px 0px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u28137_text {
  3633. border-width:0px;
  3634. white-space:nowrap;
  3635. text-transform:none;
  3636. }
  3637. #u28138_div {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:39px;
  3643. height:40px;
  3644. background:inherit;
  3645. background-color:rgba(255, 255, 255, 0);
  3646. border:none;
  3647. border-top:0px;
  3648. border-right:0px;
  3649. border-bottom:0px;
  3650. border-radius:0px;
  3651. border-top-left-radius:0px;
  3652. border-bottom-left-radius:0px;
  3653. -moz-box-shadow:none;
  3654. -webkit-box-shadow:none;
  3655. box-shadow:none;
  3656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:14px;
  3660. }
  3661. #u28138 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:1691px;
  3665. top:303px;
  3666. width:39px;
  3667. height:40px;
  3668. display:flex;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:14px;
  3673. }
  3674. #u28138 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:5px 10px 5px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u28138_text {
  3682. border-width:0px;
  3683. white-space:nowrap;
  3684. text-transform:none;
  3685. }
  3686. #u28139_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:50px;
  3692. height:31px;
  3693. }
  3694. #u28139 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:1691px;
  3698. top:343px;
  3699. width:50px;
  3700. height:31px;
  3701. display:flex;
  3702. }
  3703. #u28139 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 2px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u28139_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u28140 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:0px;
  3722. height:0px;
  3723. }
  3724. #u28141_div {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:520px;
  3730. height:40px;
  3731. background:inherit;
  3732. background-color:rgba(255, 255, 255, 1);
  3733. box-sizing:border-box;
  3734. border-width:1px;
  3735. border-style:solid;
  3736. border-color:rgba(170, 170, 170, 1);
  3737. border-radius:4px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. text-align:right;
  3745. }
  3746. #u28141 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:1691px;
  3750. top:254px;
  3751. width:520px;
  3752. height:40px;
  3753. display:flex;
  3754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. text-align:right;
  3758. }
  3759. #u28141 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 10px 2px 10px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u28141_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. visibility:hidden;
  3771. }
  3772. #u28142_input {
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:414px;
  3777. height:31px;
  3778. padding:2px 10px 2px 2px;
  3779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3780. font-weight:400;
  3781. font-style:normal;
  3782. font-size:13px;
  3783. letter-spacing:normal;
  3784. color:#333333;
  3785. vertical-align:none;
  3786. text-align:left;
  3787. text-transform:none;
  3788. background-color:transparent;
  3789. border-color:transparent;
  3790. }
  3791. #u28142_input.disabled {
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:414px;
  3796. height:31px;
  3797. padding:2px 10px 2px 2px;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:13px;
  3802. letter-spacing:normal;
  3803. color:#333333;
  3804. vertical-align:none;
  3805. text-align:left;
  3806. text-transform:none;
  3807. background-color:transparent;
  3808. border-color:transparent;
  3809. }
  3810. #u28142_div {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:414px;
  3816. height:31px;
  3817. background:inherit;
  3818. background-color:rgba(255, 255, 255, 0);
  3819. border:none;
  3820. border-radius:0px;
  3821. -moz-box-shadow:none;
  3822. -webkit-box-shadow:none;
  3823. box-shadow:none;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. color:#333333;
  3828. }
  3829. #u28142 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:1698px;
  3833. top:259px;
  3834. width:414px;
  3835. height:31px;
  3836. display:flex;
  3837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. color:#333333;
  3841. }
  3842. #u28142 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 10px 2px 2px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u28142_div.disabled {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:414px;
  3855. height:31px;
  3856. background:inherit;
  3857. background-color:rgba(240, 240, 240, 1);
  3858. border:none;
  3859. border-radius:0px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. color:#333333;
  3867. }
  3868. #u28142.disabled {
  3869. }
  3870. #u28143_div {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:102px;
  3876. height:40px;
  3877. background:inherit;
  3878. background-color:rgba(255, 255, 255, 0);
  3879. border:none;
  3880. border-top:0px;
  3881. border-right:0px;
  3882. border-bottom:0px;
  3883. border-radius:0px;
  3884. border-top-left-radius:0px;
  3885. border-bottom-left-radius:0px;
  3886. -moz-box-shadow:none;
  3887. -webkit-box-shadow:none;
  3888. box-shadow:none;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:14px;
  3893. }
  3894. #u28143 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:1691px;
  3898. top:214px;
  3899. width:102px;
  3900. height:40px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:14px;
  3906. }
  3907. #u28143 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:5px 10px 5px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u28143_text {
  3915. border-width:0px;
  3916. white-space:nowrap;
  3917. text-transform:none;
  3918. }
  3919. #u28144 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:0px;
  3925. height:0px;
  3926. }
  3927. #u28145_div {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:520px;
  3933. height:40px;
  3934. background:inherit;
  3935. background-color:rgba(255, 255, 255, 1);
  3936. box-sizing:border-box;
  3937. border-width:1px;
  3938. border-style:solid;
  3939. border-color:rgba(170, 170, 170, 1);
  3940. border-radius:4px;
  3941. -moz-box-shadow:none;
  3942. -webkit-box-shadow:none;
  3943. box-shadow:none;
  3944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. text-align:right;
  3948. }
  3949. #u28145 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:1691px;
  3953. top:164px;
  3954. width:520px;
  3955. height:40px;
  3956. display:flex;
  3957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. text-align:right;
  3961. }
  3962. #u28145 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 10px 2px 10px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u28145_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u28146_input {
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:501px;
  3980. height:30px;
  3981. padding:2px 2px 2px 2px;
  3982. font-family:'ArialMT', 'Arial', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:13px;
  3986. letter-spacing:normal;
  3987. color:#000000;
  3988. vertical-align:none;
  3989. text-align:left;
  3990. text-transform:none;
  3991. background-color:transparent;
  3992. border-color:transparent;
  3993. }
  3994. #u28146_input.disabled {
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:501px;
  3999. height:30px;
  4000. padding:2px 2px 2px 2px;
  4001. font-family:'ArialMT', 'Arial', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. font-size:13px;
  4005. letter-spacing:normal;
  4006. color:#000000;
  4007. vertical-align:none;
  4008. text-align:left;
  4009. text-transform:none;
  4010. background-color:transparent;
  4011. border-color:transparent;
  4012. }
  4013. #u28146_div {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:501px;
  4019. height:30px;
  4020. background:inherit;
  4021. background-color:rgba(255, 255, 255, 1);
  4022. border:none;
  4023. border-radius:0px;
  4024. -moz-box-shadow:none;
  4025. -webkit-box-shadow:none;
  4026. box-shadow:none;
  4027. }
  4028. #u28146 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:1700px;
  4032. top:169px;
  4033. width:501px;
  4034. height:30px;
  4035. display:flex;
  4036. }
  4037. #u28146 .text {
  4038. position:absolute;
  4039. align-self:flex-start;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u28146_div.disabled {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:501px;
  4050. height:30px;
  4051. background:inherit;
  4052. background-color:rgba(240, 240, 240, 1);
  4053. border:none;
  4054. border-radius:0px;
  4055. -moz-box-shadow:none;
  4056. -webkit-box-shadow:none;
  4057. box-shadow:none;
  4058. }
  4059. #u28146.disabled {
  4060. }
  4061. .u28146_input_option {
  4062. }
  4063. #u28147 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:0px;
  4069. height:0px;
  4070. }
  4071. #u28148_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:200px;
  4077. height:1192px;
  4078. background:inherit;
  4079. background-color:rgba(255, 255, 255, 1);
  4080. border:none;
  4081. border-radius:0px;
  4082. -moz-box-shadow:none;
  4083. -webkit-box-shadow:none;
  4084. box-shadow:none;
  4085. }
  4086. #u28148 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:120px;
  4090. top:50px;
  4091. width:200px;
  4092. height:1192px;
  4093. display:flex;
  4094. }
  4095. #u28148 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 2px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u28148_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. visibility:hidden;
  4107. }
  4108. #u28149_div {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:200px;
  4114. height:60px;
  4115. background:inherit;
  4116. background-color:rgba(224, 231, 247, 1);
  4117. border:none;
  4118. border-radius:0px;
  4119. -moz-box-shadow:none;
  4120. -webkit-box-shadow:none;
  4121. box-shadow:none;
  4122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4123. font-weight:500;
  4124. font-style:normal;
  4125. font-size:18px;
  4126. }
  4127. #u28149 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:120px;
  4131. top:50px;
  4132. width:200px;
  4133. height:60px;
  4134. display:flex;
  4135. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4136. font-weight:500;
  4137. font-style:normal;
  4138. font-size:18px;
  4139. }
  4140. #u28149 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:0px 0px 0px 20px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u28149_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. }
  4152. #u28150_div {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:97px;
  4158. height:22px;
  4159. background:inherit;
  4160. background-color:rgba(255, 255, 255, 0);
  4161. border:none;
  4162. border-radius:0px;
  4163. -moz-box-shadow:none;
  4164. -webkit-box-shadow:none;
  4165. box-shadow:none;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:16px;
  4170. }
  4171. #u28150 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:147px;
  4175. top:290px;
  4176. width:97px;
  4177. height:22px;
  4178. display:flex;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:16px;
  4183. }
  4184. #u28150 .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. #u28150_text {
  4192. border-width:0px;
  4193. white-space:nowrap;
  4194. text-transform:none;
  4195. }
  4196. #u28151_div {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:65px;
  4202. height:22px;
  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:16px;
  4214. }
  4215. #u28151 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:147px;
  4219. top:166px;
  4220. width:65px;
  4221. height:22px;
  4222. display:flex;
  4223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4224. font-weight:400;
  4225. font-style:normal;
  4226. font-size:16px;
  4227. }
  4228. #u28151 .text {
  4229. position:absolute;
  4230. align-self:flex-start;
  4231. padding:0px 0px 0px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u28151_text {
  4236. border-width:0px;
  4237. white-space:nowrap;
  4238. text-transform:none;
  4239. }
  4240. #u28152_div {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:49px;
  4246. height:17px;
  4247. background:inherit;
  4248. background-color:rgba(255, 255, 255, 0);
  4249. border:none;
  4250. border-radius:0px;
  4251. -moz-box-shadow:none;
  4252. -webkit-box-shadow:none;
  4253. box-shadow:none;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#AAAAAA;
  4259. }
  4260. #u28152 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:147px;
  4264. top:130px;
  4265. width:49px;
  4266. height:17px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:12px;
  4272. color:#AAAAAA;
  4273. }
  4274. #u28152 .text {
  4275. position:absolute;
  4276. align-self:flex-start;
  4277. padding:0px 0px 0px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u28152_text {
  4282. border-width:0px;
  4283. white-space:nowrap;
  4284. text-transform:none;
  4285. }
  4286. #u28153_div {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:65px;
  4292. height:22px;
  4293. background:inherit;
  4294. background-color:rgba(255, 255, 255, 0);
  4295. border:none;
  4296. border-radius:0px;
  4297. -moz-box-shadow:none;
  4298. -webkit-box-shadow:none;
  4299. box-shadow:none;
  4300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4301. font-weight:400;
  4302. font-style:normal;
  4303. font-size:16px;
  4304. }
  4305. #u28153 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:147px;
  4309. top:208px;
  4310. width:65px;
  4311. height:22px;
  4312. display:flex;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:16px;
  4317. }
  4318. #u28153 .text {
  4319. position:absolute;
  4320. align-self:flex-start;
  4321. padding:0px 0px 0px 0px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u28153_text {
  4326. border-width:0px;
  4327. white-space:nowrap;
  4328. text-transform:none;
  4329. }
  4330. #u28154_div {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:97px;
  4336. height:22px;
  4337. background:inherit;
  4338. background-color:rgba(255, 255, 255, 0);
  4339. border:none;
  4340. border-radius:0px;
  4341. -moz-box-shadow:none;
  4342. -webkit-box-shadow:none;
  4343. box-shadow:none;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:16px;
  4348. }
  4349. #u28154 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:147px;
  4353. top:332px;
  4354. width:97px;
  4355. height:22px;
  4356. display:flex;
  4357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:16px;
  4361. }
  4362. #u28154 .text {
  4363. position:absolute;
  4364. align-self:flex-start;
  4365. padding:0px 0px 0px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u28154_text {
  4370. border-width:0px;
  4371. white-space:nowrap;
  4372. text-transform:none;
  4373. }
  4374. #u28155_div {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:65px;
  4380. height:22px;
  4381. background:inherit;
  4382. background-color:rgba(255, 255, 255, 0);
  4383. border:none;
  4384. border-radius:0px;
  4385. -moz-box-shadow:none;
  4386. -webkit-box-shadow:none;
  4387. box-shadow:none;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:16px;
  4392. }
  4393. #u28155 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:147px;
  4397. top:439px;
  4398. width:65px;
  4399. height:22px;
  4400. display:flex;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:16px;
  4405. }
  4406. #u28155 .text {
  4407. position:absolute;
  4408. align-self:flex-start;
  4409. padding:0px 0px 0px 0px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u28155_text {
  4414. border-width:0px;
  4415. white-space:nowrap;
  4416. text-transform:none;
  4417. }
  4418. #u28156_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:201px;
  4424. height:2px;
  4425. }
  4426. #u28156 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:120px;
  4430. top:377px;
  4431. width:200px;
  4432. height:1px;
  4433. display:flex;
  4434. }
  4435. #u28156 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 2px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u28156_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u28157_div {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:49px;
  4454. height:17px;
  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:12px;
  4466. color:#AAAAAA;
  4467. }
  4468. #u28157 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:147px;
  4472. top:403px;
  4473. width:49px;
  4474. height:17px;
  4475. display:flex;
  4476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4477. font-weight:400;
  4478. font-style:normal;
  4479. font-size:12px;
  4480. color:#AAAAAA;
  4481. }
  4482. #u28157 .text {
  4483. position:absolute;
  4484. align-self:flex-start;
  4485. padding:0px 0px 0px 0px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u28157_text {
  4490. border-width:0px;
  4491. white-space:nowrap;
  4492. text-transform:none;
  4493. }
  4494. #u28158_div {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:65px;
  4500. height:22px;
  4501. background:inherit;
  4502. background-color:rgba(255, 255, 255, 0);
  4503. border:none;
  4504. border-radius:0px;
  4505. -moz-box-shadow:none;
  4506. -webkit-box-shadow:none;
  4507. box-shadow:none;
  4508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4509. font-weight:400;
  4510. font-style:normal;
  4511. font-size:16px;
  4512. }
  4513. #u28158 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:147px;
  4517. top:481px;
  4518. width:65px;
  4519. height:22px;
  4520. display:flex;
  4521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:16px;
  4525. }
  4526. #u28158 .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. #u28158_text {
  4534. border-width:0px;
  4535. white-space:nowrap;
  4536. text-transform:none;
  4537. }
  4538. #u28159_div {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:65px;
  4544. height:22px;
  4545. background:inherit;
  4546. background-color:rgba(255, 255, 255, 0);
  4547. border:none;
  4548. border-radius:0px;
  4549. -moz-box-shadow:none;
  4550. -webkit-box-shadow:none;
  4551. box-shadow:none;
  4552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. font-size:16px;
  4556. }
  4557. #u28159 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:147px;
  4561. top:585px;
  4562. width:65px;
  4563. height:22px;
  4564. display:flex;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:16px;
  4569. }
  4570. #u28159 .text {
  4571. position:absolute;
  4572. align-self:flex-start;
  4573. padding:0px 0px 0px 0px;
  4574. box-sizing:border-box;
  4575. width:100%;
  4576. }
  4577. #u28159_text {
  4578. border-width:0px;
  4579. white-space:nowrap;
  4580. text-transform:none;
  4581. }
  4582. #u28160_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:201px;
  4588. height:2px;
  4589. }
  4590. #u28160 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:120px;
  4594. top:523px;
  4595. width:200px;
  4596. height:1px;
  4597. display:flex;
  4598. }
  4599. #u28160 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 2px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u28160_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. visibility:hidden;
  4611. }
  4612. #u28161_div {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:49px;
  4618. height:17px;
  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:12px;
  4630. color:#AAAAAA;
  4631. }
  4632. #u28161 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:147px;
  4636. top:549px;
  4637. width:49px;
  4638. height:17px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:12px;
  4644. color:#AAAAAA;
  4645. }
  4646. #u28161 .text {
  4647. position:absolute;
  4648. align-self:flex-start;
  4649. padding:0px 0px 0px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u28161_text {
  4654. border-width:0px;
  4655. white-space:nowrap;
  4656. text-transform:none;
  4657. }
  4658. #u28162_div {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:65px;
  4664. height:22px;
  4665. background:inherit;
  4666. background-color:rgba(255, 255, 255, 0);
  4667. border:none;
  4668. border-radius:0px;
  4669. -moz-box-shadow:none;
  4670. -webkit-box-shadow:none;
  4671. box-shadow:none;
  4672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:16px;
  4676. }
  4677. #u28162 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:147px;
  4681. top:250px;
  4682. width:65px;
  4683. height:22px;
  4684. display:flex;
  4685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. font-size:16px;
  4689. }
  4690. #u28162 .text {
  4691. position:absolute;
  4692. align-self:flex-start;
  4693. padding:0px 0px 0px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u28162_text {
  4698. border-width:0px;
  4699. white-space:nowrap;
  4700. text-transform:none;
  4701. }