styles.css 96 KB

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