styles.css 81 KB

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