styles.css 86 KB

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