styles.css 56 KB

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