styles.css 94 KB

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