styles.css 100 KB

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