styles.css 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-65px;
  6. width:860px;
  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. #u2698 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u2699_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:860px;
  33. height:1310px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  39. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  40. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  41. }
  42. #u2699 {
  43. border-width:0px;
  44. position:absolute;
  45. left:65px;
  46. top:40px;
  47. width:860px;
  48. height:1310px;
  49. display:flex;
  50. }
  51. #u2699 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u2699_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u2700_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:73px;
  70. height:30px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border:none;
  74. border-radius:0px;
  75. -moz-box-shadow:none;
  76. -webkit-box-shadow:none;
  77. box-shadow:none;
  78. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  79. font-weight:400;
  80. font-style:normal;
  81. font-size:18px;
  82. color:#000000;
  83. line-height:30px;
  84. }
  85. #u2700 {
  86. border-width:0px;
  87. position:absolute;
  88. left:105px;
  89. top:79px;
  90. width:73px;
  91. height:30px;
  92. display:flex;
  93. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  94. font-weight:400;
  95. font-style:normal;
  96. font-size:18px;
  97. color:#000000;
  98. line-height:30px;
  99. }
  100. #u2700 .text {
  101. position:absolute;
  102. align-self:flex-start;
  103. padding:0px 0px 0px 0px;
  104. box-sizing:border-box;
  105. width:100%;
  106. }
  107. #u2700_text {
  108. border-width:0px;
  109. white-space:nowrap;
  110. text-transform:none;
  111. }
  112. #u2701_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:78px;
  118. height:30px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 0);
  121. border:none;
  122. border-top:0px;
  123. border-right:0px;
  124. border-bottom:0px;
  125. border-radius:0px;
  126. border-top-left-radius:0px;
  127. border-bottom-left-radius:0px;
  128. -moz-box-shadow:none;
  129. -webkit-box-shadow:none;
  130. box-shadow:none;
  131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  132. font-weight:400;
  133. font-style:normal;
  134. font-size:14px;
  135. text-align:right;
  136. }
  137. #u2701 {
  138. border-width:0px;
  139. position:absolute;
  140. left:127px;
  141. top:142px;
  142. width:78px;
  143. height:30px;
  144. display:flex;
  145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  146. font-weight:400;
  147. font-style:normal;
  148. font-size:14px;
  149. text-align:right;
  150. }
  151. #u2701 .text {
  152. position:absolute;
  153. align-self:center;
  154. padding:5px 0px 5px 0px;
  155. box-sizing:border-box;
  156. width:100%;
  157. }
  158. #u2701_text {
  159. border-width:0px;
  160. white-space:nowrap;
  161. text-transform:none;
  162. }
  163. #u2702 {
  164. border-width:0px;
  165. position:absolute;
  166. left:0px;
  167. top:0px;
  168. width:0px;
  169. height:0px;
  170. }
  171. #u2703_div {
  172. border-width:0px;
  173. position:absolute;
  174. left:0px;
  175. top:0px;
  176. width:400px;
  177. height:40px;
  178. background:inherit;
  179. background-color:rgba(255, 255, 255, 1);
  180. box-sizing:border-box;
  181. border-width:1px;
  182. border-style:solid;
  183. border-color:rgba(170, 170, 170, 1);
  184. border-radius:4px;
  185. -moz-box-shadow:none;
  186. -webkit-box-shadow:none;
  187. box-shadow:none;
  188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  189. font-weight:400;
  190. font-style:normal;
  191. text-align:left;
  192. }
  193. #u2703 {
  194. border-width:0px;
  195. position:absolute;
  196. left:220px;
  197. top:137px;
  198. width:400px;
  199. height:40px;
  200. display:flex;
  201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  202. font-weight:400;
  203. font-style:normal;
  204. text-align:left;
  205. }
  206. #u2703 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:2px 2px 2px 10px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u2703_text {
  214. border-width:0px;
  215. word-wrap:break-word;
  216. text-transform:none;
  217. visibility:hidden;
  218. }
  219. #u2704_input {
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:188px;
  224. height:31px;
  225. padding:2px 2px 2px 2px;
  226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  227. font-weight:400;
  228. font-style:normal;
  229. font-size:13px;
  230. letter-spacing:normal;
  231. color:#AAAAAA;
  232. vertical-align:none;
  233. text-align:left;
  234. text-transform:none;
  235. background-color:transparent;
  236. border-color:transparent;
  237. }
  238. #u2704_input.disabled {
  239. position:absolute;
  240. left:0px;
  241. top:0px;
  242. width:188px;
  243. height:31px;
  244. padding:2px 2px 2px 2px;
  245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  246. font-weight:400;
  247. font-style:normal;
  248. font-size:13px;
  249. letter-spacing:normal;
  250. color:#AAAAAA;
  251. vertical-align:none;
  252. text-align:left;
  253. text-transform:none;
  254. background-color:transparent;
  255. border-color:transparent;
  256. }
  257. #u2704_div {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:188px;
  263. height:31px;
  264. background:inherit;
  265. background-color:rgba(255, 255, 255, 0);
  266. border:none;
  267. border-radius:0px;
  268. -moz-box-shadow:none;
  269. -webkit-box-shadow:none;
  270. box-shadow:none;
  271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  272. font-weight:400;
  273. font-style:normal;
  274. color:#AAAAAA;
  275. }
  276. #u2704 {
  277. border-width:0px;
  278. position:absolute;
  279. left:230px;
  280. top:142px;
  281. width:188px;
  282. height:31px;
  283. display:flex;
  284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  285. font-weight:400;
  286. font-style:normal;
  287. color:#AAAAAA;
  288. }
  289. #u2704 .text {
  290. position:absolute;
  291. align-self:center;
  292. padding:2px 2px 2px 2px;
  293. box-sizing:border-box;
  294. width:100%;
  295. }
  296. #u2704_div.disabled {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:188px;
  302. height:31px;
  303. background:inherit;
  304. background-color:rgba(240, 240, 240, 1);
  305. border:none;
  306. border-radius:0px;
  307. -moz-box-shadow:none;
  308. -webkit-box-shadow:none;
  309. box-shadow:none;
  310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  311. font-weight:400;
  312. font-style:normal;
  313. color:#AAAAAA;
  314. }
  315. #u2704.disabled {
  316. }
  317. #u2705_div {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:64px;
  323. height:30px;
  324. background:inherit;
  325. background-color:rgba(255, 255, 255, 0);
  326. border:none;
  327. border-top:0px;
  328. border-right:0px;
  329. border-bottom:0px;
  330. border-radius:0px;
  331. border-top-left-radius:0px;
  332. border-bottom-left-radius:0px;
  333. -moz-box-shadow:none;
  334. -webkit-box-shadow:none;
  335. box-shadow:none;
  336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  337. font-weight:400;
  338. font-style:normal;
  339. font-size:14px;
  340. text-align:right;
  341. }
  342. #u2705 {
  343. border-width:0px;
  344. position:absolute;
  345. left:141px;
  346. top:392px;
  347. width:64px;
  348. height:30px;
  349. display:flex;
  350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  351. font-weight:400;
  352. font-style:normal;
  353. font-size:14px;
  354. text-align:right;
  355. }
  356. #u2705 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:5px 0px 5px 0px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u2705_text {
  364. border-width:0px;
  365. white-space:nowrap;
  366. text-transform:none;
  367. }
  368. #u2706 {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:0px;
  374. height:0px;
  375. }
  376. #u2707_div {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:400px;
  382. height:40px;
  383. background:inherit;
  384. background-color:rgba(255, 255, 255, 1);
  385. box-sizing:border-box;
  386. border-width:1px;
  387. border-style:solid;
  388. border-color:rgba(170, 170, 170, 1);
  389. border-radius:4px;
  390. -moz-box-shadow:none;
  391. -webkit-box-shadow:none;
  392. box-shadow:none;
  393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  394. font-weight:400;
  395. font-style:normal;
  396. text-align:left;
  397. }
  398. #u2707 {
  399. border-width:0px;
  400. position:absolute;
  401. left:220px;
  402. top:387px;
  403. width:400px;
  404. height:40px;
  405. display:flex;
  406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  407. font-weight:400;
  408. font-style:normal;
  409. text-align:left;
  410. }
  411. #u2707 .text {
  412. position:absolute;
  413. align-self:center;
  414. padding:2px 2px 2px 10px;
  415. box-sizing:border-box;
  416. width:100%;
  417. }
  418. #u2707_text {
  419. border-width:0px;
  420. word-wrap:break-word;
  421. text-transform:none;
  422. visibility:hidden;
  423. }
  424. #u2708_input {
  425. position:absolute;
  426. left:0px;
  427. top:0px;
  428. width:188px;
  429. height:31px;
  430. padding:2px 2px 2px 2px;
  431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  432. font-weight:400;
  433. font-style:normal;
  434. font-size:13px;
  435. letter-spacing:normal;
  436. color:#AAAAAA;
  437. vertical-align:none;
  438. text-align:left;
  439. text-transform:none;
  440. background-color:transparent;
  441. border-color:transparent;
  442. }
  443. #u2708_input.disabled {
  444. position:absolute;
  445. left:0px;
  446. top:0px;
  447. width:188px;
  448. height:31px;
  449. padding:2px 2px 2px 2px;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. font-size:13px;
  454. letter-spacing:normal;
  455. color:#AAAAAA;
  456. vertical-align:none;
  457. text-align:left;
  458. text-transform:none;
  459. background-color:transparent;
  460. border-color:transparent;
  461. }
  462. #u2708_div {
  463. border-width:0px;
  464. position:absolute;
  465. left:0px;
  466. top:0px;
  467. width:188px;
  468. height:31px;
  469. background:inherit;
  470. background-color:rgba(255, 255, 255, 0);
  471. border:none;
  472. border-radius:0px;
  473. -moz-box-shadow:none;
  474. -webkit-box-shadow:none;
  475. box-shadow:none;
  476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  477. font-weight:400;
  478. font-style:normal;
  479. color:#AAAAAA;
  480. }
  481. #u2708 {
  482. border-width:0px;
  483. position:absolute;
  484. left:230px;
  485. top:392px;
  486. width:188px;
  487. height:31px;
  488. display:flex;
  489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  490. font-weight:400;
  491. font-style:normal;
  492. color:#AAAAAA;
  493. }
  494. #u2708 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u2708_div.disabled {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:188px;
  507. height:31px;
  508. background:inherit;
  509. background-color:rgba(240, 240, 240, 1);
  510. border:none;
  511. border-radius:0px;
  512. -moz-box-shadow:none;
  513. -webkit-box-shadow:none;
  514. box-shadow:none;
  515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  516. font-weight:400;
  517. font-style:normal;
  518. color:#AAAAAA;
  519. }
  520. #u2708.disabled {
  521. }
  522. #u2709_div {
  523. border-width:0px;
  524. position:absolute;
  525. left:0px;
  526. top:0px;
  527. width:78px;
  528. height:30px;
  529. background:inherit;
  530. background-color:rgba(255, 255, 255, 0);
  531. border:none;
  532. border-top:0px;
  533. border-right:0px;
  534. border-bottom:0px;
  535. border-radius:0px;
  536. border-top-left-radius:0px;
  537. border-bottom-left-radius:0px;
  538. -moz-box-shadow:none;
  539. -webkit-box-shadow:none;
  540. box-shadow:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:14px;
  545. text-align:right;
  546. }
  547. #u2709 {
  548. border-width:0px;
  549. position:absolute;
  550. left:127px;
  551. top:442px;
  552. width:78px;
  553. height:30px;
  554. display:flex;
  555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  556. font-weight:400;
  557. font-style:normal;
  558. font-size:14px;
  559. text-align:right;
  560. }
  561. #u2709 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:5px 0px 5px 0px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u2709_text {
  569. border-width:0px;
  570. white-space:nowrap;
  571. text-transform:none;
  572. }
  573. #u2710 {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:0px;
  579. height:0px;
  580. }
  581. #u2711_div {
  582. border-width:0px;
  583. position:absolute;
  584. left:0px;
  585. top:0px;
  586. width:400px;
  587. height:40px;
  588. background:inherit;
  589. background-color:rgba(255, 255, 255, 1);
  590. box-sizing:border-box;
  591. border-width:1px;
  592. border-style:solid;
  593. border-color:rgba(170, 170, 170, 1);
  594. border-radius:4px;
  595. -moz-box-shadow:none;
  596. -webkit-box-shadow:none;
  597. box-shadow:none;
  598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  599. font-weight:400;
  600. font-style:normal;
  601. text-align:left;
  602. }
  603. #u2711 {
  604. border-width:0px;
  605. position:absolute;
  606. left:220px;
  607. top:437px;
  608. width:400px;
  609. height:40px;
  610. display:flex;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. text-align:left;
  615. }
  616. #u2711 .text {
  617. position:absolute;
  618. align-self:center;
  619. padding:2px 2px 2px 10px;
  620. box-sizing:border-box;
  621. width:100%;
  622. }
  623. #u2711_text {
  624. border-width:0px;
  625. word-wrap:break-word;
  626. text-transform:none;
  627. visibility:hidden;
  628. }
  629. #u2712_input {
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:188px;
  634. height:31px;
  635. padding:2px 2px 2px 2px;
  636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  637. font-weight:400;
  638. font-style:normal;
  639. font-size:13px;
  640. letter-spacing:normal;
  641. color:#AAAAAA;
  642. vertical-align:none;
  643. text-align:left;
  644. text-transform:none;
  645. background-color:transparent;
  646. border-color:transparent;
  647. }
  648. #u2712_input.disabled {
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:188px;
  653. height:31px;
  654. padding:2px 2px 2px 2px;
  655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  656. font-weight:400;
  657. font-style:normal;
  658. font-size:13px;
  659. letter-spacing:normal;
  660. color:#AAAAAA;
  661. vertical-align:none;
  662. text-align:left;
  663. text-transform:none;
  664. background-color:transparent;
  665. border-color:transparent;
  666. }
  667. #u2712_div {
  668. border-width:0px;
  669. position:absolute;
  670. left:0px;
  671. top:0px;
  672. width:188px;
  673. height:31px;
  674. background:inherit;
  675. background-color:rgba(255, 255, 255, 0);
  676. border:none;
  677. border-radius:0px;
  678. -moz-box-shadow:none;
  679. -webkit-box-shadow:none;
  680. box-shadow:none;
  681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  682. font-weight:400;
  683. font-style:normal;
  684. color:#AAAAAA;
  685. }
  686. #u2712 {
  687. border-width:0px;
  688. position:absolute;
  689. left:230px;
  690. top:442px;
  691. width:188px;
  692. height:31px;
  693. display:flex;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. color:#AAAAAA;
  698. }
  699. #u2712 .text {
  700. position:absolute;
  701. align-self:center;
  702. padding:2px 2px 2px 2px;
  703. box-sizing:border-box;
  704. width:100%;
  705. }
  706. #u2712_div.disabled {
  707. border-width:0px;
  708. position:absolute;
  709. left:0px;
  710. top:0px;
  711. width:188px;
  712. height:31px;
  713. background:inherit;
  714. background-color:rgba(240, 240, 240, 1);
  715. border:none;
  716. border-radius:0px;
  717. -moz-box-shadow:none;
  718. -webkit-box-shadow:none;
  719. box-shadow:none;
  720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  721. font-weight:400;
  722. font-style:normal;
  723. color:#AAAAAA;
  724. }
  725. #u2712.disabled {
  726. }
  727. #u2713_div {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:78px;
  733. height:30px;
  734. background:inherit;
  735. background-color:rgba(255, 255, 255, 0);
  736. border:none;
  737. border-top:0px;
  738. border-right:0px;
  739. border-bottom:0px;
  740. border-radius:0px;
  741. border-top-left-radius:0px;
  742. border-bottom-left-radius:0px;
  743. -moz-box-shadow:none;
  744. -webkit-box-shadow:none;
  745. box-shadow:none;
  746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:14px;
  750. text-align:right;
  751. }
  752. #u2713 {
  753. border-width:0px;
  754. position:absolute;
  755. left:127px;
  756. top:293px;
  757. width:78px;
  758. height:30px;
  759. display:flex;
  760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  761. font-weight:400;
  762. font-style:normal;
  763. font-size:14px;
  764. text-align:right;
  765. }
  766. #u2713 .text {
  767. position:absolute;
  768. align-self:center;
  769. padding:5px 0px 5px 0px;
  770. box-sizing:border-box;
  771. width:100%;
  772. }
  773. #u2713_text {
  774. border-width:0px;
  775. white-space:nowrap;
  776. text-transform:none;
  777. }
  778. #u2714 {
  779. border-width:0px;
  780. position:absolute;
  781. left:0px;
  782. top:0px;
  783. width:0px;
  784. height:0px;
  785. }
  786. #u2715_div {
  787. border-width:0px;
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:396px;
  792. height:40px;
  793. background:inherit;
  794. background-color:rgba(255, 255, 255, 1);
  795. box-sizing:border-box;
  796. border-width:1px;
  797. border-style:solid;
  798. border-color:rgba(170, 170, 170, 1);
  799. border-radius:4px;
  800. -moz-box-shadow:none;
  801. -webkit-box-shadow:none;
  802. box-shadow:none;
  803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  804. font-weight:400;
  805. font-style:normal;
  806. text-align:left;
  807. }
  808. #u2715 {
  809. border-width:0px;
  810. position:absolute;
  811. left:220px;
  812. top:337px;
  813. width:396px;
  814. height:40px;
  815. display:flex;
  816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  817. font-weight:400;
  818. font-style:normal;
  819. text-align:left;
  820. }
  821. #u2715 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:2px 2px 2px 10px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u2715_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. visibility:hidden;
  833. }
  834. #u2716_input {
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:188px;
  839. height:31px;
  840. padding:2px 2px 2px 2px;
  841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  842. font-weight:400;
  843. font-style:normal;
  844. font-size:13px;
  845. letter-spacing:normal;
  846. color:#AAAAAA;
  847. vertical-align:none;
  848. text-align:left;
  849. text-transform:none;
  850. background-color:transparent;
  851. border-color:transparent;
  852. }
  853. #u2716_input.disabled {
  854. position:absolute;
  855. left:0px;
  856. top:0px;
  857. width:188px;
  858. height:31px;
  859. padding:2px 2px 2px 2px;
  860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  861. font-weight:400;
  862. font-style:normal;
  863. font-size:13px;
  864. letter-spacing:normal;
  865. color:#AAAAAA;
  866. vertical-align:none;
  867. text-align:left;
  868. text-transform:none;
  869. background-color:transparent;
  870. border-color:transparent;
  871. }
  872. #u2716_div {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:188px;
  878. height:31px;
  879. background:inherit;
  880. background-color:rgba(255, 255, 255, 0);
  881. border:none;
  882. border-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  887. font-weight:400;
  888. font-style:normal;
  889. color:#AAAAAA;
  890. }
  891. #u2716 {
  892. border-width:0px;
  893. position:absolute;
  894. left:223px;
  895. top:342px;
  896. width:188px;
  897. height:31px;
  898. display:flex;
  899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  900. font-weight:400;
  901. font-style:normal;
  902. color:#AAAAAA;
  903. }
  904. #u2716 .text {
  905. position:absolute;
  906. align-self:center;
  907. padding:2px 2px 2px 2px;
  908. box-sizing:border-box;
  909. width:100%;
  910. }
  911. #u2716_div.disabled {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:188px;
  917. height:31px;
  918. background:inherit;
  919. background-color:rgba(240, 240, 240, 1);
  920. border:none;
  921. border-radius:0px;
  922. -moz-box-shadow:none;
  923. -webkit-box-shadow:none;
  924. box-shadow:none;
  925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  926. font-weight:400;
  927. font-style:normal;
  928. color:#AAAAAA;
  929. }
  930. #u2716.disabled {
  931. }
  932. #u2717_div {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:77px;
  938. height:40px;
  939. background:inherit;
  940. background-color:rgba(41, 143, 255, 1);
  941. border:none;
  942. border-top:0px;
  943. border-right:0px;
  944. border-bottom:0px;
  945. border-radius:0px;
  946. border-top-left-radius:0px;
  947. border-bottom-left-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:14px;
  955. color:#FFFFFF;
  956. text-align:center;
  957. }
  958. #u2717 {
  959. border-width:0px;
  960. position:absolute;
  961. left:539px;
  962. top:337px;
  963. width:77px;
  964. height:40px;
  965. display:flex;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. font-size:14px;
  970. color:#FFFFFF;
  971. text-align:center;
  972. }
  973. #u2717 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:5px 0px 5px 0px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u2717_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. }
  985. #u2718 {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:0px;
  991. height:0px;
  992. }
  993. #u2719_div {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:400px;
  999. height:40px;
  1000. background:inherit;
  1001. background-color:rgba(255, 255, 255, 1);
  1002. box-sizing:border-box;
  1003. border-width:1px;
  1004. border-style:solid;
  1005. border-color:rgba(170, 170, 170, 1);
  1006. border-radius:4px;
  1007. -moz-box-shadow:none;
  1008. -webkit-box-shadow:none;
  1009. box-shadow:none;
  1010. }
  1011. #u2719 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:220px;
  1015. top:287px;
  1016. width:400px;
  1017. height:40px;
  1018. display:flex;
  1019. }
  1020. #u2719 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:2px 2px 2px 0px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u2719_text {
  1028. border-width:0px;
  1029. word-wrap:break-word;
  1030. text-transform:none;
  1031. visibility:hidden;
  1032. }
  1033. #u2720_input {
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:380px;
  1038. height:30px;
  1039. padding:2px 2px 2px 0px;
  1040. font-family:'ArialMT', 'Arial', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. font-size:13px;
  1044. letter-spacing:normal;
  1045. color:#AAAAAA;
  1046. vertical-align:none;
  1047. text-align:left;
  1048. text-transform:none;
  1049. background-color:transparent;
  1050. border-color:transparent;
  1051. }
  1052. #u2720_input.disabled {
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:380px;
  1057. height:30px;
  1058. padding:2px 2px 2px 0px;
  1059. font-family:'ArialMT', 'Arial', sans-serif;
  1060. font-weight:400;
  1061. font-style:normal;
  1062. font-size:13px;
  1063. letter-spacing:normal;
  1064. color:#AAAAAA;
  1065. vertical-align:none;
  1066. text-align:left;
  1067. text-transform:none;
  1068. background-color:transparent;
  1069. border-color:transparent;
  1070. }
  1071. #u2720_div {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:380px;
  1077. height:30px;
  1078. background:inherit;
  1079. background-color:rgba(255, 255, 255, 1);
  1080. border:none;
  1081. border-radius:0px;
  1082. -moz-box-shadow:none;
  1083. -webkit-box-shadow:none;
  1084. box-shadow:none;
  1085. color:#AAAAAA;
  1086. }
  1087. #u2720 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:230px;
  1091. top:293px;
  1092. width:380px;
  1093. height:30px;
  1094. display:flex;
  1095. color:#AAAAAA;
  1096. }
  1097. #u2720 .text {
  1098. position:absolute;
  1099. align-self:flex-start;
  1100. padding:2px 2px 2px 0px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u2720_div.disabled {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:380px;
  1110. height:30px;
  1111. background:inherit;
  1112. background-color:rgba(240, 240, 240, 1);
  1113. border:none;
  1114. border-radius:0px;
  1115. -moz-box-shadow:none;
  1116. -webkit-box-shadow:none;
  1117. box-shadow:none;
  1118. color:#AAAAAA;
  1119. }
  1120. #u2720.disabled {
  1121. }
  1122. .u2720_input_option {
  1123. }
  1124. #u2721_div {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:120px;
  1130. height:120px;
  1131. background:inherit;
  1132. background-color:rgba(242, 242, 242, 1);
  1133. border:none;
  1134. border-radius:0px;
  1135. -moz-box-shadow:none;
  1136. -webkit-box-shadow:none;
  1137. box-shadow:none;
  1138. color:#D7D7D7;
  1139. }
  1140. #u2721 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:222px;
  1144. top:622px;
  1145. width:120px;
  1146. height:120px;
  1147. display:flex;
  1148. color:#D7D7D7;
  1149. }
  1150. #u2721 .text {
  1151. position:absolute;
  1152. align-self:center;
  1153. padding:2px 2px 2px 2px;
  1154. box-sizing:border-box;
  1155. width:100%;
  1156. }
  1157. #u2721_text {
  1158. border-width:0px;
  1159. word-wrap:break-word;
  1160. text-transform:none;
  1161. }
  1162. #u2722_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:64px;
  1168. height:30px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-top:0px;
  1173. border-right:0px;
  1174. border-bottom:0px;
  1175. border-radius:0px;
  1176. border-top-left-radius:0px;
  1177. border-bottom-left-radius:0px;
  1178. -moz-box-shadow:none;
  1179. -webkit-box-shadow:none;
  1180. box-shadow:none;
  1181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1182. font-weight:400;
  1183. font-style:normal;
  1184. font-size:14px;
  1185. text-align:right;
  1186. }
  1187. #u2722 {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:145px;
  1191. top:587px;
  1192. width:64px;
  1193. height:30px;
  1194. display:flex;
  1195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1196. font-weight:400;
  1197. font-style:normal;
  1198. font-size:14px;
  1199. text-align:right;
  1200. }
  1201. #u2722 .text {
  1202. position:absolute;
  1203. align-self:center;
  1204. padding:5px 0px 5px 0px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u2722_text {
  1209. border-width:0px;
  1210. white-space:nowrap;
  1211. text-transform:none;
  1212. }
  1213. #u2723_div {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:193px;
  1219. height:27px;
  1220. background:inherit;
  1221. background-color:rgba(255, 255, 255, 0);
  1222. border:none;
  1223. border-top:0px;
  1224. border-right:0px;
  1225. border-bottom:0px;
  1226. border-radius:0px;
  1227. border-top-left-radius:0px;
  1228. border-bottom-left-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:12px;
  1236. color:#AAAAAA;
  1237. }
  1238. #u2723 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:222px;
  1242. top:587px;
  1243. width:193px;
  1244. height:27px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:12px;
  1250. color:#AAAAAA;
  1251. }
  1252. #u2723 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:5px 10px 5px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u2723_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u2724_div {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:240px;
  1270. height:140px;
  1271. background:inherit;
  1272. background-color:rgba(242, 242, 242, 1);
  1273. border:none;
  1274. border-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-size:48px;
  1279. color:#D7D7D7;
  1280. }
  1281. #u2724 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:222px;
  1285. top:797px;
  1286. width:240px;
  1287. height:140px;
  1288. display:flex;
  1289. font-size:48px;
  1290. color:#D7D7D7;
  1291. }
  1292. #u2724 .text {
  1293. position:absolute;
  1294. align-self:center;
  1295. padding:2px 2px 2px 2px;
  1296. box-sizing:border-box;
  1297. width:100%;
  1298. }
  1299. #u2724_text {
  1300. border-width:0px;
  1301. word-wrap:break-word;
  1302. text-transform:none;
  1303. }
  1304. #u2725_div {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:71px;
  1310. height:30px;
  1311. background:inherit;
  1312. background-color:rgba(255, 255, 255, 0);
  1313. border:none;
  1314. border-top:0px;
  1315. border-right:0px;
  1316. border-bottom:0px;
  1317. border-radius:0px;
  1318. border-top-left-radius:0px;
  1319. border-bottom-left-radius:0px;
  1320. -moz-box-shadow:none;
  1321. -webkit-box-shadow:none;
  1322. box-shadow:none;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:14px;
  1327. text-align:right;
  1328. }
  1329. #u2725 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:138px;
  1333. top:762px;
  1334. width:71px;
  1335. height:30px;
  1336. display:flex;
  1337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1338. font-weight:400;
  1339. font-style:normal;
  1340. font-size:14px;
  1341. text-align:right;
  1342. }
  1343. #u2725 .text {
  1344. position:absolute;
  1345. align-self:center;
  1346. padding:5px 0px 5px 0px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u2725_text {
  1351. border-width:0px;
  1352. white-space:nowrap;
  1353. text-transform:none;
  1354. }
  1355. #u2726_div {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:193px;
  1361. height:27px;
  1362. background:inherit;
  1363. background-color:rgba(255, 255, 255, 0);
  1364. border:none;
  1365. border-top:0px;
  1366. border-right:0px;
  1367. border-bottom:0px;
  1368. border-radius:0px;
  1369. border-top-left-radius:0px;
  1370. border-bottom-left-radius:0px;
  1371. -moz-box-shadow:none;
  1372. -webkit-box-shadow:none;
  1373. box-shadow:none;
  1374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1375. font-weight:400;
  1376. font-style:normal;
  1377. font-size:12px;
  1378. color:#AAAAAA;
  1379. }
  1380. #u2726 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:222px;
  1384. top:762px;
  1385. width:193px;
  1386. height:27px;
  1387. display:flex;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. color:#AAAAAA;
  1393. }
  1394. #u2726 .text {
  1395. position:absolute;
  1396. align-self:center;
  1397. padding:5px 10px 5px 0px;
  1398. box-sizing:border-box;
  1399. width:100%;
  1400. }
  1401. #u2726_text {
  1402. border-width:0px;
  1403. white-space:nowrap;
  1404. text-transform:none;
  1405. }
  1406. #u2727_div {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:120px;
  1412. height:120px;
  1413. background:inherit;
  1414. background-color:rgba(242, 242, 242, 1);
  1415. border:none;
  1416. border-radius:0px;
  1417. -moz-box-shadow:none;
  1418. -webkit-box-shadow:none;
  1419. box-shadow:none;
  1420. color:#D7D7D7;
  1421. }
  1422. #u2727 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:352px;
  1426. top:622px;
  1427. width:120px;
  1428. height:120px;
  1429. display:flex;
  1430. color:#D7D7D7;
  1431. }
  1432. #u2727 .text {
  1433. position:absolute;
  1434. align-self:center;
  1435. padding:2px 2px 2px 2px;
  1436. box-sizing:border-box;
  1437. width:100%;
  1438. }
  1439. #u2727_text {
  1440. border-width:0px;
  1441. word-wrap:break-word;
  1442. text-transform:none;
  1443. }
  1444. #u2728_div {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:120px;
  1450. height:120px;
  1451. background:inherit;
  1452. background-color:rgba(242, 242, 242, 1);
  1453. border:none;
  1454. border-radius:0px;
  1455. -moz-box-shadow:none;
  1456. -webkit-box-shadow:none;
  1457. box-shadow:none;
  1458. color:#D7D7D7;
  1459. }
  1460. #u2728 {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:482px;
  1464. top:622px;
  1465. width:120px;
  1466. height:120px;
  1467. display:flex;
  1468. color:#D7D7D7;
  1469. }
  1470. #u2728 .text {
  1471. position:absolute;
  1472. align-self:center;
  1473. padding:2px 2px 2px 2px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u2728_text {
  1478. border-width:0px;
  1479. word-wrap:break-word;
  1480. text-transform:none;
  1481. }
  1482. #u2729_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:120px;
  1488. height:120px;
  1489. background:inherit;
  1490. background-color:rgba(242, 242, 242, 1);
  1491. border:none;
  1492. border-radius:0px;
  1493. -moz-box-shadow:none;
  1494. -webkit-box-shadow:none;
  1495. box-shadow:none;
  1496. color:#D7D7D7;
  1497. }
  1498. #u2729 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:612px;
  1502. top:622px;
  1503. width:120px;
  1504. height:120px;
  1505. display:flex;
  1506. color:#D7D7D7;
  1507. }
  1508. #u2729 .text {
  1509. position:absolute;
  1510. align-self:center;
  1511. padding:2px 2px 2px 2px;
  1512. box-sizing:border-box;
  1513. width:100%;
  1514. }
  1515. #u2729_text {
  1516. border-width:0px;
  1517. word-wrap:break-word;
  1518. text-transform:none;
  1519. }
  1520. #u2730_div {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:120px;
  1526. height:120px;
  1527. background:inherit;
  1528. background-color:rgba(242, 242, 242, 1);
  1529. border:none;
  1530. border-radius:0px;
  1531. -moz-box-shadow:none;
  1532. -webkit-box-shadow:none;
  1533. box-shadow:none;
  1534. color:#D7D7D7;
  1535. }
  1536. #u2730 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:745px;
  1540. top:622px;
  1541. width:120px;
  1542. height:120px;
  1543. display:flex;
  1544. color:#D7D7D7;
  1545. }
  1546. #u2730 .text {
  1547. position:absolute;
  1548. align-self:center;
  1549. padding:2px 2px 2px 2px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u2730_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. }
  1558. #u2731_div {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:71px;
  1564. height:30px;
  1565. background:inherit;
  1566. background-color:rgba(255, 255, 255, 0);
  1567. border:none;
  1568. border-top:0px;
  1569. border-right:0px;
  1570. border-bottom:0px;
  1571. border-radius:0px;
  1572. border-top-left-radius:0px;
  1573. border-bottom-left-radius:0px;
  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. text-align:right;
  1582. }
  1583. #u2731 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:138px;
  1587. top:1086px;
  1588. width:71px;
  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. text-align:right;
  1596. }
  1597. #u2731 .text {
  1598. position:absolute;
  1599. align-self:center;
  1600. padding:5px 0px 5px 0px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u2731_text {
  1605. border-width:0px;
  1606. white-space:nowrap;
  1607. text-transform:none;
  1608. }
  1609. #u2732 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:0px;
  1615. height:0px;
  1616. }
  1617. #u2733_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:642px;
  1623. height:80px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 1);
  1626. box-sizing:border-box;
  1627. border-width:1px;
  1628. border-style:solid;
  1629. border-color:rgba(170, 170, 170, 1);
  1630. border-radius:4px;
  1631. -moz-box-shadow:none;
  1632. -webkit-box-shadow:none;
  1633. box-shadow:none;
  1634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1635. font-weight:400;
  1636. font-style:normal;
  1637. text-align:right;
  1638. }
  1639. #u2733 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:223px;
  1643. top:1080px;
  1644. width:642px;
  1645. height:80px;
  1646. display:flex;
  1647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1648. font-weight:400;
  1649. font-style:normal;
  1650. text-align:right;
  1651. }
  1652. #u2733 .text {
  1653. position:absolute;
  1654. align-self:center;
  1655. padding:2px 10px 2px 10px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u2733_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. visibility:hidden;
  1664. }
  1665. #u2734_input {
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:510px;
  1670. height:32px;
  1671. padding:2px 10px 2px 2px;
  1672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1673. font-weight:400;
  1674. font-style:normal;
  1675. font-size:13px;
  1676. letter-spacing:normal;
  1677. color:#AAAAAA;
  1678. vertical-align:none;
  1679. text-align:left;
  1680. text-transform:none;
  1681. background-color:transparent;
  1682. border-color:transparent;
  1683. }
  1684. #u2734_input.disabled {
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:510px;
  1689. height:32px;
  1690. padding:2px 10px 2px 2px;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:13px;
  1695. letter-spacing:normal;
  1696. color:#AAAAAA;
  1697. vertical-align:none;
  1698. text-align:left;
  1699. text-transform:none;
  1700. background-color:transparent;
  1701. border-color:transparent;
  1702. }
  1703. #u2734_div {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:510px;
  1709. height:32px;
  1710. background:inherit;
  1711. background-color:rgba(255, 255, 255, 0);
  1712. border:none;
  1713. border-radius:0px;
  1714. -moz-box-shadow:none;
  1715. -webkit-box-shadow:none;
  1716. box-shadow:none;
  1717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1718. font-weight:400;
  1719. font-style:normal;
  1720. color:#AAAAAA;
  1721. }
  1722. #u2734 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:231px;
  1726. top:1084px;
  1727. width:510px;
  1728. height:32px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. color:#AAAAAA;
  1734. }
  1735. #u2734 .text {
  1736. position:absolute;
  1737. align-self:center;
  1738. padding:2px 10px 2px 2px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u2734_div.disabled {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:510px;
  1748. height:32px;
  1749. background:inherit;
  1750. background-color:rgba(240, 240, 240, 1);
  1751. border:none;
  1752. border-radius:0px;
  1753. -moz-box-shadow:none;
  1754. -webkit-box-shadow:none;
  1755. box-shadow:none;
  1756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. color:#AAAAAA;
  1760. }
  1761. #u2734.disabled {
  1762. }
  1763. #u2735 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:0px;
  1769. height:0px;
  1770. }
  1771. #u2736_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:642px;
  1777. height:40px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 1);
  1780. box-sizing:border-box;
  1781. border-width:1px;
  1782. border-style:solid;
  1783. border-color:rgba(170, 170, 170, 1);
  1784. border-radius:4px;
  1785. -moz-box-shadow:none;
  1786. -webkit-box-shadow:none;
  1787. box-shadow:none;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. text-align:left;
  1792. }
  1793. #u2736 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:223px;
  1797. top:1030px;
  1798. width:642px;
  1799. height:40px;
  1800. display:flex;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. text-align:left;
  1805. }
  1806. #u2736 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:2px 2px 2px 10px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u2736_text {
  1814. border-width:0px;
  1815. word-wrap:break-word;
  1816. text-transform:none;
  1817. visibility:hidden;
  1818. }
  1819. #u2737_input {
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:305px;
  1824. height:31px;
  1825. padding:2px 2px 2px 2px;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:13px;
  1830. letter-spacing:normal;
  1831. color:#AAAAAA;
  1832. vertical-align:none;
  1833. text-align:left;
  1834. text-transform:none;
  1835. background-color:transparent;
  1836. border-color:transparent;
  1837. }
  1838. #u2737_input.disabled {
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:305px;
  1843. height:31px;
  1844. padding:2px 2px 2px 2px;
  1845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1846. font-weight:400;
  1847. font-style:normal;
  1848. font-size:13px;
  1849. letter-spacing:normal;
  1850. color:#AAAAAA;
  1851. vertical-align:none;
  1852. text-align:left;
  1853. text-transform:none;
  1854. background-color:transparent;
  1855. border-color:transparent;
  1856. }
  1857. #u2737_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:305px;
  1863. height:31px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. color:#AAAAAA;
  1875. }
  1876. #u2737 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:228px;
  1880. top:1035px;
  1881. width:305px;
  1882. height:31px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. color:#AAAAAA;
  1888. }
  1889. #u2737 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 2px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u2737_div.disabled {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:305px;
  1902. height:31px;
  1903. background:inherit;
  1904. background-color:rgba(240, 240, 240, 1);
  1905. border:none;
  1906. border-radius:0px;
  1907. -moz-box-shadow:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. color:#AAAAAA;
  1914. }
  1915. #u2737.disabled {
  1916. }
  1917. #u2738_div {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:71px;
  1923. height:30px;
  1924. background:inherit;
  1925. background-color:rgba(255, 255, 255, 0);
  1926. border:none;
  1927. border-top:0px;
  1928. border-right:0px;
  1929. border-bottom:0px;
  1930. border-radius:0px;
  1931. border-top-left-radius:0px;
  1932. border-bottom-left-radius:0px;
  1933. -moz-box-shadow:none;
  1934. -webkit-box-shadow:none;
  1935. box-shadow:none;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:14px;
  1940. text-align:right;
  1941. }
  1942. #u2738 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:138px;
  1946. top:1035px;
  1947. width:71px;
  1948. height:30px;
  1949. display:flex;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:14px;
  1954. text-align:right;
  1955. }
  1956. #u2738 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:5px 0px 5px 0px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u2738_text {
  1964. border-width:0px;
  1965. white-space:nowrap;
  1966. text-transform:none;
  1967. }
  1968. #u2739_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:78px;
  1974. height:30px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 0);
  1977. border:none;
  1978. border-top:0px;
  1979. border-right:0px;
  1980. border-bottom:0px;
  1981. border-radius:0px;
  1982. border-top-left-radius:0px;
  1983. border-bottom-left-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:14px;
  1991. text-align:right;
  1992. }
  1993. #u2739 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:129px;
  1997. top:493px;
  1998. width:78px;
  1999. height:30px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:14px;
  2005. text-align:right;
  2006. }
  2007. #u2739 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:5px 0px 5px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u2739_text {
  2015. border-width:0px;
  2016. white-space:nowrap;
  2017. text-transform:none;
  2018. }
  2019. #u2740 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:0px;
  2025. height:0px;
  2026. }
  2027. #u2741_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:400px;
  2033. height:40px;
  2034. background:inherit;
  2035. background-color:rgba(255, 255, 255, 1);
  2036. box-sizing:border-box;
  2037. border-width:1px;
  2038. border-style:solid;
  2039. border-color:rgba(170, 170, 170, 1);
  2040. border-radius:4px;
  2041. -moz-box-shadow:none;
  2042. -webkit-box-shadow:none;
  2043. box-shadow:none;
  2044. }
  2045. #u2741 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:220px;
  2049. top:487px;
  2050. width:400px;
  2051. height:40px;
  2052. display:flex;
  2053. }
  2054. #u2741 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:2px 2px 2px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u2741_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. visibility:hidden;
  2066. }
  2067. #u2742_input {
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:380px;
  2072. height:30px;
  2073. padding:2px 2px 2px 0px;
  2074. font-family:'ArialMT', 'Arial', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:13px;
  2078. letter-spacing:normal;
  2079. color:#AAAAAA;
  2080. vertical-align:none;
  2081. text-align:left;
  2082. text-transform:none;
  2083. background-color:transparent;
  2084. border-color:transparent;
  2085. }
  2086. #u2742_input.disabled {
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:380px;
  2091. height:30px;
  2092. padding:2px 2px 2px 0px;
  2093. font-family:'ArialMT', 'Arial', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:13px;
  2097. letter-spacing:normal;
  2098. color:#AAAAAA;
  2099. vertical-align:none;
  2100. text-align:left;
  2101. text-transform:none;
  2102. background-color:transparent;
  2103. border-color:transparent;
  2104. }
  2105. #u2742_div {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:380px;
  2111. height:30px;
  2112. background:inherit;
  2113. background-color:rgba(255, 255, 255, 1);
  2114. border:none;
  2115. border-radius:0px;
  2116. -moz-box-shadow:none;
  2117. -webkit-box-shadow:none;
  2118. box-shadow:none;
  2119. color:#AAAAAA;
  2120. }
  2121. #u2742 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:230px;
  2125. top:492px;
  2126. width:380px;
  2127. height:30px;
  2128. display:flex;
  2129. color:#AAAAAA;
  2130. }
  2131. #u2742 .text {
  2132. position:absolute;
  2133. align-self:flex-start;
  2134. padding:2px 2px 2px 0px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u2742_div.disabled {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:380px;
  2144. height:30px;
  2145. background:inherit;
  2146. background-color:rgba(240, 240, 240, 1);
  2147. border:none;
  2148. border-radius:0px;
  2149. -moz-box-shadow:none;
  2150. -webkit-box-shadow:none;
  2151. box-shadow:none;
  2152. color:#AAAAAA;
  2153. }
  2154. #u2742.disabled {
  2155. }
  2156. .u2742_input_option {
  2157. }
  2158. #u2743_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:78px;
  2164. height:30px;
  2165. background:inherit;
  2166. background-color:rgba(255, 255, 255, 0);
  2167. border:none;
  2168. border-top:0px;
  2169. border-right:0px;
  2170. border-bottom:0px;
  2171. border-radius:0px;
  2172. border-top-left-radius:0px;
  2173. border-bottom-left-radius:0px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. text-align:right;
  2182. }
  2183. #u2743 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:129px;
  2187. top:543px;
  2188. width:78px;
  2189. height:30px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. text-align:right;
  2196. }
  2197. #u2743 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:5px 0px 5px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u2743_text {
  2205. border-width:0px;
  2206. white-space:nowrap;
  2207. text-transform:none;
  2208. }
  2209. #u2744 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:0px;
  2215. height:0px;
  2216. }
  2217. #u2745_div {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:400px;
  2223. height:40px;
  2224. background:inherit;
  2225. background-color:rgba(255, 255, 255, 1);
  2226. box-sizing:border-box;
  2227. border-width:1px;
  2228. border-style:solid;
  2229. border-color:rgba(170, 170, 170, 1);
  2230. border-radius:4px;
  2231. -moz-box-shadow:none;
  2232. -webkit-box-shadow:none;
  2233. box-shadow:none;
  2234. }
  2235. #u2745 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:220px;
  2239. top:537px;
  2240. width:400px;
  2241. height:40px;
  2242. display:flex;
  2243. }
  2244. #u2745 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u2745_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u2746_input {
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:380px;
  2262. height:30px;
  2263. padding:2px 2px 2px 0px;
  2264. font-family:'ArialMT', 'Arial', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:13px;
  2268. letter-spacing:normal;
  2269. color:#AAAAAA;
  2270. vertical-align:none;
  2271. text-align:left;
  2272. text-transform:none;
  2273. background-color:transparent;
  2274. border-color:transparent;
  2275. }
  2276. #u2746_input.disabled {
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:380px;
  2281. height:30px;
  2282. padding:2px 2px 2px 0px;
  2283. font-family:'ArialMT', 'Arial', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:13px;
  2287. letter-spacing:normal;
  2288. color:#AAAAAA;
  2289. vertical-align:none;
  2290. text-align:left;
  2291. text-transform:none;
  2292. background-color:transparent;
  2293. border-color:transparent;
  2294. }
  2295. #u2746_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:380px;
  2301. height:30px;
  2302. background:inherit;
  2303. background-color:rgba(255, 255, 255, 1);
  2304. border:none;
  2305. border-radius:0px;
  2306. -moz-box-shadow:none;
  2307. -webkit-box-shadow:none;
  2308. box-shadow:none;
  2309. color:#AAAAAA;
  2310. }
  2311. #u2746 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:230px;
  2315. top:541px;
  2316. width:380px;
  2317. height:30px;
  2318. display:flex;
  2319. color:#AAAAAA;
  2320. }
  2321. #u2746 .text {
  2322. position:absolute;
  2323. align-self:flex-start;
  2324. padding:2px 2px 2px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u2746_div.disabled {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:380px;
  2334. height:30px;
  2335. background:inherit;
  2336. background-color:rgba(240, 240, 240, 1);
  2337. border:none;
  2338. border-radius:0px;
  2339. -moz-box-shadow:none;
  2340. -webkit-box-shadow:none;
  2341. box-shadow:none;
  2342. color:#AAAAAA;
  2343. }
  2344. #u2746.disabled {
  2345. }
  2346. .u2746_input_option {
  2347. }
  2348. #u2747 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:0px;
  2354. height:0px;
  2355. }
  2356. #u2748_div {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:860px;
  2362. height:60px;
  2363. background:inherit;
  2364. background-color:rgba(255, 255, 255, 1);
  2365. box-sizing:border-box;
  2366. border-width:1px;
  2367. border-style:solid;
  2368. border-color:rgba(215, 215, 215, 1);
  2369. border-radius:0px;
  2370. -moz-box-shadow:none;
  2371. -webkit-box-shadow:none;
  2372. box-shadow:none;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:14px;
  2377. color:#AAAAAA;
  2378. text-align:center;
  2379. line-height:30px;
  2380. }
  2381. #u2748 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:65px;
  2385. top:1290px;
  2386. width:860px;
  2387. height:60px;
  2388. display:flex;
  2389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2390. font-weight:400;
  2391. font-style:normal;
  2392. font-size:14px;
  2393. color:#AAAAAA;
  2394. text-align:center;
  2395. line-height:30px;
  2396. }
  2397. #u2748 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:5px 0px 5px 10px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u2748_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u2749_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:80px;
  2416. height:30px;
  2417. background:inherit;
  2418. background-color:rgba(24, 144, 255, 1);
  2419. border:none;
  2420. border-radius:4px;
  2421. -moz-box-shadow:none;
  2422. -webkit-box-shadow:none;
  2423. box-shadow:none;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:14px;
  2428. color:#FFFFFF;
  2429. }
  2430. #u2749 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:801px;
  2434. top:1305px;
  2435. width:80px;
  2436. height:30px;
  2437. display:flex;
  2438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:14px;
  2442. color:#FFFFFF;
  2443. }
  2444. #u2749 .text {
  2445. position:absolute;
  2446. align-self:center;
  2447. padding:2px 0px 2px 2px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u2749_text {
  2452. border-width:0px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. }
  2456. #u2750_div {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:80px;
  2462. height:30px;
  2463. background:inherit;
  2464. background-color:rgba(255, 255, 255, 1);
  2465. box-sizing:border-box;
  2466. border-width:1px;
  2467. border-style:solid;
  2468. border-color:rgba(170, 170, 170, 1);
  2469. border-radius:4px;
  2470. -moz-box-shadow:none;
  2471. -webkit-box-shadow:none;
  2472. box-shadow:none;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:14px;
  2477. }
  2478. #u2750 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:702px;
  2482. top:1305px;
  2483. width:80px;
  2484. height:30px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:14px;
  2490. }
  2491. #u2750 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 0px 2px 2px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u2750_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. }
  2503. #u2751 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:0px;
  2509. height:0px;
  2510. }
  2511. #u2752_div {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:40px;
  2517. height:40px;
  2518. background:inherit;
  2519. background-color:rgba(255, 255, 255, 0);
  2520. border:none;
  2521. border-top:0px;
  2522. border-right:0px;
  2523. border-bottom:0px;
  2524. border-radius:0px;
  2525. border-top-left-radius:0px;
  2526. border-bottom-left-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2531. font-weight:500;
  2532. font-style:normal;
  2533. font-size:18px;
  2534. text-align:center;
  2535. }
  2536. #u2752 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:885px;
  2540. top:40px;
  2541. width:40px;
  2542. height:40px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2545. font-weight:500;
  2546. font-style:normal;
  2547. font-size:18px;
  2548. text-align:center;
  2549. }
  2550. #u2752 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:5px 10px 5px 0px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u2752_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. }
  2562. #u2753_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:13px;
  2568. height:13px;
  2569. }
  2570. #u2753 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:872px;
  2574. top:58px;
  2575. width:13px;
  2576. height:13px;
  2577. display:flex;
  2578. }
  2579. #u2753 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u2753_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. visibility:hidden;
  2591. }
  2592. #u2754_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:71px;
  2598. height:30px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border:none;
  2602. border-top:0px;
  2603. border-right:0px;
  2604. border-bottom:0px;
  2605. border-radius:0px;
  2606. border-top-left-radius:0px;
  2607. border-bottom-left-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. text-align:right;
  2616. }
  2617. #u2754 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:134px;
  2621. top:242px;
  2622. width:71px;
  2623. height:30px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:14px;
  2629. text-align:right;
  2630. }
  2631. #u2754 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:5px 0px 5px 0px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u2754_text {
  2639. border-width:0px;
  2640. white-space:nowrap;
  2641. text-transform:none;
  2642. }
  2643. #u2755 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:0px;
  2649. height:0px;
  2650. }
  2651. #u2756_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:400px;
  2657. height:40px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 1);
  2660. box-sizing:border-box;
  2661. border-width:1px;
  2662. border-style:solid;
  2663. border-color:rgba(170, 170, 170, 1);
  2664. border-radius:4px;
  2665. -moz-box-shadow:none;
  2666. -webkit-box-shadow:none;
  2667. box-shadow:none;
  2668. }
  2669. #u2756 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:220px;
  2673. top:237px;
  2674. width:400px;
  2675. height:40px;
  2676. display:flex;
  2677. }
  2678. #u2756 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 0px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u2756_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. visibility:hidden;
  2690. }
  2691. #u2757_input {
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:380px;
  2696. height:30px;
  2697. padding:2px 2px 2px 0px;
  2698. font-family:'ArialMT', 'Arial', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:13px;
  2702. letter-spacing:normal;
  2703. color:#AAAAAA;
  2704. vertical-align:none;
  2705. text-align:left;
  2706. text-transform:none;
  2707. background-color:transparent;
  2708. border-color:transparent;
  2709. }
  2710. #u2757_input.disabled {
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:380px;
  2715. height:30px;
  2716. padding:2px 2px 2px 0px;
  2717. font-family:'ArialMT', 'Arial', sans-serif;
  2718. font-weight:400;
  2719. font-style:normal;
  2720. font-size:13px;
  2721. letter-spacing:normal;
  2722. color:#AAAAAA;
  2723. vertical-align:none;
  2724. text-align:left;
  2725. text-transform:none;
  2726. background-color:transparent;
  2727. border-color:transparent;
  2728. }
  2729. #u2757_div {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:380px;
  2735. height:30px;
  2736. background:inherit;
  2737. background-color:rgba(255, 255, 255, 1);
  2738. border:none;
  2739. border-radius:0px;
  2740. -moz-box-shadow:none;
  2741. -webkit-box-shadow:none;
  2742. box-shadow:none;
  2743. color:#AAAAAA;
  2744. }
  2745. #u2757 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:230px;
  2749. top:241px;
  2750. width:380px;
  2751. height:30px;
  2752. display:flex;
  2753. color:#AAAAAA;
  2754. }
  2755. #u2757 .text {
  2756. position:absolute;
  2757. align-self:flex-start;
  2758. padding:2px 2px 2px 0px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u2757_div.disabled {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:380px;
  2768. height:30px;
  2769. background:inherit;
  2770. background-color:rgba(240, 240, 240, 1);
  2771. border:none;
  2772. border-radius:0px;
  2773. -moz-box-shadow:none;
  2774. -webkit-box-shadow:none;
  2775. box-shadow:none;
  2776. color:#AAAAAA;
  2777. }
  2778. #u2757.disabled {
  2779. }
  2780. .u2757_input_option {
  2781. }
  2782. #u2758_div {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:78px;
  2788. height:30px;
  2789. background:inherit;
  2790. background-color:rgba(255, 255, 255, 0);
  2791. border:none;
  2792. border-top:0px;
  2793. border-right:0px;
  2794. border-bottom:0px;
  2795. border-radius:0px;
  2796. border-top-left-radius:0px;
  2797. border-bottom-left-radius:0px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  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. #u2758 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:127px;
  2811. top:192px;
  2812. width:78px;
  2813. height:30px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:14px;
  2819. text-align:right;
  2820. }
  2821. #u2758 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:5px 0px 5px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u2758_text {
  2829. border-width:0px;
  2830. white-space:nowrap;
  2831. text-transform:none;
  2832. }
  2833. #u2759 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:0px;
  2839. height:0px;
  2840. }
  2841. #u2760_div {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:400px;
  2847. height:40px;
  2848. background:inherit;
  2849. background-color:rgba(255, 255, 255, 1);
  2850. box-sizing:border-box;
  2851. border-width:1px;
  2852. border-style:solid;
  2853. border-color:rgba(170, 170, 170, 1);
  2854. border-radius:4px;
  2855. -moz-box-shadow:none;
  2856. -webkit-box-shadow:none;
  2857. box-shadow:none;
  2858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. text-align:left;
  2862. }
  2863. #u2760 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:220px;
  2867. top:187px;
  2868. width:400px;
  2869. height:40px;
  2870. display:flex;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. text-align:left;
  2875. }
  2876. #u2760 .text {
  2877. position:absolute;
  2878. align-self:center;
  2879. padding:2px 2px 2px 10px;
  2880. box-sizing:border-box;
  2881. width:100%;
  2882. }
  2883. #u2760_text {
  2884. border-width:0px;
  2885. word-wrap:break-word;
  2886. text-transform:none;
  2887. visibility:hidden;
  2888. }
  2889. #u2761_input {
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:348px;
  2894. height:31px;
  2895. padding:2px 2px 2px 2px;
  2896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:13px;
  2900. letter-spacing:normal;
  2901. color:#AAAAAA;
  2902. vertical-align:none;
  2903. text-align:left;
  2904. text-transform:none;
  2905. background-color:transparent;
  2906. border-color:transparent;
  2907. }
  2908. #u2761_input.disabled {
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:348px;
  2913. height:31px;
  2914. padding:2px 2px 2px 2px;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:13px;
  2919. letter-spacing:normal;
  2920. color:#AAAAAA;
  2921. vertical-align:none;
  2922. text-align:left;
  2923. text-transform:none;
  2924. background-color:transparent;
  2925. border-color:transparent;
  2926. }
  2927. #u2761_div {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:348px;
  2933. height:31px;
  2934. background:inherit;
  2935. background-color:rgba(255, 255, 255, 0);
  2936. border:none;
  2937. border-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. color:#AAAAAA;
  2945. }
  2946. #u2761 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:230px;
  2950. top:192px;
  2951. width:348px;
  2952. height:31px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. color:#AAAAAA;
  2958. }
  2959. #u2761 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 2px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u2761_div.disabled {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:348px;
  2972. height:31px;
  2973. background:inherit;
  2974. background-color:rgba(240, 240, 240, 1);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. color:#AAAAAA;
  2984. }
  2985. #u2761.disabled {
  2986. }
  2987. #u2762_div {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:71px;
  2993. height:30px;
  2994. background:inherit;
  2995. background-color:rgba(255, 255, 255, 0);
  2996. border:none;
  2997. border-top:0px;
  2998. border-right:0px;
  2999. border-bottom:0px;
  3000. border-radius:0px;
  3001. border-top-left-radius:0px;
  3002. border-bottom-left-radius:0px;
  3003. -moz-box-shadow:none;
  3004. -webkit-box-shadow:none;
  3005. box-shadow:none;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:14px;
  3010. text-align:right;
  3011. }
  3012. #u2762 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:136px;
  3016. top:963px;
  3017. width:71px;
  3018. height:30px;
  3019. display:flex;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:14px;
  3024. text-align:right;
  3025. }
  3026. #u2762 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:5px 0px 5px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u2762_text {
  3034. border-width:0px;
  3035. white-space:nowrap;
  3036. text-transform:none;
  3037. }
  3038. #u2763 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:0px;
  3044. height:0px;
  3045. }
  3046. #u2764_div {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:200px;
  3052. height:40px;
  3053. background:inherit;
  3054. background-color:rgba(255, 255, 255, 1);
  3055. box-sizing:border-box;
  3056. border-width:1px;
  3057. border-style:solid;
  3058. border-color:rgba(170, 170, 170, 1);
  3059. border-radius:4px;
  3060. -moz-box-shadow:none;
  3061. -webkit-box-shadow:none;
  3062. box-shadow:none;
  3063. }
  3064. #u2764 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:220px;
  3068. top:957px;
  3069. width:200px;
  3070. height:40px;
  3071. display:flex;
  3072. }
  3073. #u2764 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u2764_text {
  3081. border-width:0px;
  3082. word-wrap:break-word;
  3083. text-transform:none;
  3084. visibility:hidden;
  3085. }
  3086. #u2765_input {
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:190px;
  3091. height:30px;
  3092. padding:2px 2px 2px 0px;
  3093. font-family:'ArialMT', 'Arial', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:13px;
  3097. letter-spacing:normal;
  3098. color:#AAAAAA;
  3099. vertical-align:none;
  3100. text-align:left;
  3101. text-transform:none;
  3102. background-color:transparent;
  3103. border-color:transparent;
  3104. }
  3105. #u2765_input.disabled {
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:190px;
  3110. height:30px;
  3111. padding:2px 2px 2px 0px;
  3112. font-family:'ArialMT', 'Arial', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:13px;
  3116. letter-spacing:normal;
  3117. color:#AAAAAA;
  3118. vertical-align:none;
  3119. text-align:left;
  3120. text-transform:none;
  3121. background-color:transparent;
  3122. border-color:transparent;
  3123. }
  3124. #u2765_div {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:190px;
  3130. height:30px;
  3131. background:inherit;
  3132. background-color:rgba(255, 255, 255, 1);
  3133. border:none;
  3134. border-radius:0px;
  3135. -moz-box-shadow:none;
  3136. -webkit-box-shadow:none;
  3137. box-shadow:none;
  3138. color:#AAAAAA;
  3139. }
  3140. #u2765 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:225px;
  3144. top:961px;
  3145. width:190px;
  3146. height:30px;
  3147. display:flex;
  3148. color:#AAAAAA;
  3149. }
  3150. #u2765 .text {
  3151. position:absolute;
  3152. align-self:flex-start;
  3153. padding:2px 2px 2px 0px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u2765_div.disabled {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:190px;
  3163. height:30px;
  3164. background:inherit;
  3165. background-color:rgba(240, 240, 240, 1);
  3166. border:none;
  3167. border-radius:0px;
  3168. -moz-box-shadow:none;
  3169. -webkit-box-shadow:none;
  3170. box-shadow:none;
  3171. color:#AAAAAA;
  3172. }
  3173. #u2765.disabled {
  3174. }
  3175. .u2765_input_option {
  3176. }
  3177. #u2766 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:0px;
  3183. height:0px;
  3184. }
  3185. #u2767_div {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:200px;
  3191. height:40px;
  3192. background:inherit;
  3193. background-color:rgba(255, 255, 255, 1);
  3194. box-sizing:border-box;
  3195. border-width:1px;
  3196. border-style:solid;
  3197. border-color:rgba(170, 170, 170, 1);
  3198. border-radius:4px;
  3199. -moz-box-shadow:none;
  3200. -webkit-box-shadow:none;
  3201. box-shadow:none;
  3202. }
  3203. #u2767 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:430px;
  3207. top:957px;
  3208. width:200px;
  3209. height:40px;
  3210. display:flex;
  3211. }
  3212. #u2767 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u2767_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u2768_input {
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:190px;
  3230. height:30px;
  3231. padding:2px 2px 2px 0px;
  3232. font-family:'ArialMT', 'Arial', sans-serif;
  3233. font-weight:400;
  3234. font-style:normal;
  3235. font-size:13px;
  3236. letter-spacing:normal;
  3237. color:#AAAAAA;
  3238. vertical-align:none;
  3239. text-align:left;
  3240. text-transform:none;
  3241. background-color:transparent;
  3242. border-color:transparent;
  3243. }
  3244. #u2768_input.disabled {
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:190px;
  3249. height:30px;
  3250. padding:2px 2px 2px 0px;
  3251. font-family:'ArialMT', 'Arial', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:13px;
  3255. letter-spacing:normal;
  3256. color:#AAAAAA;
  3257. vertical-align:none;
  3258. text-align:left;
  3259. text-transform:none;
  3260. background-color:transparent;
  3261. border-color:transparent;
  3262. }
  3263. #u2768_div {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:190px;
  3269. height:30px;
  3270. background:inherit;
  3271. background-color:rgba(255, 255, 255, 1);
  3272. border:none;
  3273. border-radius:0px;
  3274. -moz-box-shadow:none;
  3275. -webkit-box-shadow:none;
  3276. box-shadow:none;
  3277. color:#AAAAAA;
  3278. }
  3279. #u2768 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:435px;
  3283. top:961px;
  3284. width:190px;
  3285. height:30px;
  3286. display:flex;
  3287. color:#AAAAAA;
  3288. }
  3289. #u2768 .text {
  3290. position:absolute;
  3291. align-self:flex-start;
  3292. padding:2px 2px 2px 0px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u2768_div.disabled {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:190px;
  3302. height:30px;
  3303. background:inherit;
  3304. background-color:rgba(240, 240, 240, 1);
  3305. border:none;
  3306. border-radius:0px;
  3307. -moz-box-shadow:none;
  3308. -webkit-box-shadow:none;
  3309. box-shadow:none;
  3310. color:#AAAAAA;
  3311. }
  3312. #u2768.disabled {
  3313. }
  3314. .u2768_input_option {
  3315. }
  3316. #u2769_div {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:567px;
  3322. height:30px;
  3323. background:inherit;
  3324. background-color:rgba(255, 255, 255, 0);
  3325. border:none;
  3326. border-top:0px;
  3327. border-right:0px;
  3328. border-bottom:0px;
  3329. border-radius:0px;
  3330. border-top-left-radius:0px;
  3331. border-bottom-left-radius:0px;
  3332. -moz-box-shadow:none;
  3333. -webkit-box-shadow:none;
  3334. box-shadow:none;
  3335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. font-size:12px;
  3339. color:#1890FF;
  3340. }
  3341. #u2769 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:220px;
  3345. top:997px;
  3346. width:567px;
  3347. height:30px;
  3348. display:flex;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. color:#1890FF;
  3354. }
  3355. #u2769 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:5px 0px 5px 0px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u2769_text {
  3363. border-width:0px;
  3364. white-space:nowrap;
  3365. text-transform:none;
  3366. }
  3367. #u2770_div {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:289px;
  3373. height:50px;
  3374. background:inherit;
  3375. background-color:rgba(255, 255, 255, 0);
  3376. border:none;
  3377. border-top:0px;
  3378. border-right:0px;
  3379. border-bottom:0px;
  3380. border-radius:0px;
  3381. border-top-left-radius:0px;
  3382. border-bottom-left-radius:0px;
  3383. -moz-box-shadow:none;
  3384. -webkit-box-shadow:none;
  3385. box-shadow:none;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:14px;
  3390. color:#D9001B;
  3391. }
  3392. #u2770 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:636px;
  3396. top:182px;
  3397. width:289px;
  3398. height:50px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:14px;
  3404. color:#D9001B;
  3405. }
  3406. #u2770 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:5px 0px 5px 0px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u2770_text {
  3414. border-width:0px;
  3415. white-space:nowrap;
  3416. text-transform:none;
  3417. }
  3418. #u2771_div {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:176px;
  3424. height:30px;
  3425. background:inherit;
  3426. background-color:rgba(255, 255, 255, 0);
  3427. border:none;
  3428. border-top:0px;
  3429. border-right:0px;
  3430. border-bottom:0px;
  3431. border-radius:0px;
  3432. border-top-left-radius:0px;
  3433. border-bottom-left-radius:0px;
  3434. -moz-box-shadow:none;
  3435. -webkit-box-shadow:none;
  3436. box-shadow:none;
  3437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3438. font-weight:400;
  3439. font-style:normal;
  3440. font-size:14px;
  3441. color:#D9001B;
  3442. }
  3443. #u2771 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:636px;
  3447. top:242px;
  3448. width:176px;
  3449. height:30px;
  3450. display:flex;
  3451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:14px;
  3455. color:#D9001B;
  3456. }
  3457. #u2771 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:5px 0px 5px 0px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u2771_text {
  3465. border-width:0px;
  3466. white-space:nowrap;
  3467. text-transform:none;
  3468. }
  3469. #u2772_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:110px;
  3475. height:30px;
  3476. background:inherit;
  3477. background-color:rgba(255, 255, 255, 0);
  3478. border:none;
  3479. border-top:0px;
  3480. border-right:0px;
  3481. border-bottom:0px;
  3482. border-radius:0px;
  3483. border-top-left-radius:0px;
  3484. border-bottom-left-radius:0px;
  3485. -moz-box-shadow:none;
  3486. -webkit-box-shadow:none;
  3487. box-shadow:none;
  3488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3489. font-weight:400;
  3490. font-style:normal;
  3491. font-size:14px;
  3492. color:#D9001B;
  3493. }
  3494. #u2772 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:444px;
  3498. top:584px;
  3499. width:110px;
  3500. height:30px;
  3501. display:flex;
  3502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:14px;
  3506. color:#D9001B;
  3507. }
  3508. #u2772 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:5px 0px 5px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u2772_text {
  3516. border-width:0px;
  3517. white-space:nowrap;
  3518. text-transform:none;
  3519. }