styles.css 63 KB

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