styles.css 80 KB

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