styles.css 81 KB

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