styles.css 99 KB

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