styles.css 60 KB

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