styles.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-132px;
  6. width:1640px;
  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. #u125124 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u125125_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 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. #u125125 {
  53. border-width:0px;
  54. position:absolute;
  55. left:132px;
  56. top:49px;
  57. width:800px;
  58. height:1201px;
  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. #u125125 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u125125_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u125126_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:800px;
  87. height:60px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(242, 242, 242, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u125126 {
  107. border-width:0px;
  108. position:absolute;
  109. left:132px;
  110. top:49px;
  111. width:800px;
  112. height:60px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u125126 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u125126_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u125127_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:83px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u125127 {
  160. border-width:0px;
  161. position:absolute;
  162. left:163px;
  163. top:62px;
  164. width:83px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u125127 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u125127_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u125128_div {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:40px;
  190. height:40px;
  191. background:inherit;
  192. background-color:rgba(255, 255, 255, 0);
  193. border:none;
  194. border-top:0px;
  195. border-right:0px;
  196. border-bottom:0px;
  197. border-radius:0px;
  198. border-top-left-radius:0px;
  199. border-bottom-left-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  204. font-weight:500;
  205. font-style:normal;
  206. font-size:24px;
  207. text-align:center;
  208. }
  209. #u125128 {
  210. border-width:0px;
  211. position:absolute;
  212. left:882px;
  213. top:49px;
  214. width:40px;
  215. height:40px;
  216. display:flex;
  217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  218. font-weight:500;
  219. font-style:normal;
  220. font-size:24px;
  221. text-align:center;
  222. }
  223. #u125128 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:5px 10px 5px 0px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u125128_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. }
  235. #u125129_div {
  236. border-width:0px;
  237. position:absolute;
  238. left:0px;
  239. top:0px;
  240. width:800px;
  241. height:1020px;
  242. background:inherit;
  243. background-color:rgba(255, 255, 255, 1);
  244. box-sizing:border-box;
  245. border-width:1px;
  246. border-style:solid;
  247. border-color:rgba(242, 242, 242, 1);
  248. border-radius:0px;
  249. -moz-box-shadow:none;
  250. -webkit-box-shadow:none;
  251. box-shadow:none;
  252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  253. font-weight:400;
  254. font-style:normal;
  255. font-size:14px;
  256. color:#AAAAAA;
  257. text-align:center;
  258. line-height:30px;
  259. }
  260. #u125129 {
  261. border-width:0px;
  262. position:absolute;
  263. left:132px;
  264. top:230px;
  265. width:800px;
  266. height:1020px;
  267. display:flex;
  268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  269. font-weight:400;
  270. font-style:normal;
  271. font-size:14px;
  272. color:#AAAAAA;
  273. text-align:center;
  274. line-height:30px;
  275. }
  276. #u125129 .text {
  277. position:absolute;
  278. align-self:center;
  279. padding:5px 10px 5px 10px;
  280. box-sizing:border-box;
  281. width:100%;
  282. }
  283. #u125129_text {
  284. border-width:0px;
  285. word-wrap:break-word;
  286. text-transform:none;
  287. visibility:hidden;
  288. }
  289. #u125130_div {
  290. border-width:0px;
  291. position:absolute;
  292. left:0px;
  293. top:0px;
  294. width:800px;
  295. height:80px;
  296. background:inherit;
  297. background-color:rgba(255, 255, 255, 1);
  298. border:none;
  299. border-radius:0px;
  300. -moz-box-shadow:none;
  301. -webkit-box-shadow:none;
  302. box-shadow:none;
  303. }
  304. #u125130 {
  305. border-width:0px;
  306. position:absolute;
  307. left:132px;
  308. top:110px;
  309. width:800px;
  310. height:80px;
  311. display:flex;
  312. }
  313. #u125130 .text {
  314. position:absolute;
  315. align-self:center;
  316. padding:2px 2px 2px 2px;
  317. box-sizing:border-box;
  318. width:100%;
  319. }
  320. #u125130_text {
  321. border-width:0px;
  322. word-wrap:break-word;
  323. text-transform:none;
  324. visibility:hidden;
  325. }
  326. #u125131_div {
  327. border-width:0px;
  328. position:absolute;
  329. left:0px;
  330. top:0px;
  331. width:71px;
  332. height:40px;
  333. background:inherit;
  334. background-color:rgba(255, 255, 255, 0);
  335. box-sizing:border-box;
  336. border-width:2px;
  337. border-style:solid;
  338. border-color:rgba(24, 144, 255, 1);
  339. border-left:0px;
  340. border-top:0px;
  341. border-right:0px;
  342. border-radius:0px;
  343. border-bottom-right-radius:0px;
  344. border-bottom-left-radius:0px;
  345. -moz-box-shadow:none;
  346. -webkit-box-shadow:none;
  347. box-shadow:none;
  348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  349. font-weight:400;
  350. font-style:normal;
  351. font-size:12px;
  352. color:#1890FF;
  353. line-height:30px;
  354. }
  355. #u125131 {
  356. border-width:0px;
  357. position:absolute;
  358. left:153px;
  359. top:190px;
  360. width:71px;
  361. height:40px;
  362. display:flex;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:12px;
  367. color:#1890FF;
  368. line-height:30px;
  369. }
  370. #u125131 .text {
  371. position:absolute;
  372. align-self:center;
  373. padding:5px 10px 5px 0px;
  374. box-sizing:border-box;
  375. width:100%;
  376. }
  377. #u125131_text {
  378. border-width:0px;
  379. white-space:nowrap;
  380. text-transform:none;
  381. }
  382. #u125132 {
  383. border-width:0px;
  384. position:absolute;
  385. left:0px;
  386. top:0px;
  387. width:0px;
  388. height:0px;
  389. }
  390. #u125133_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:300px;
  396. height:40px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(201, 201, 201, 1);
  403. border-radius:4px;
  404. -moz-box-shadow:none;
  405. -webkit-box-shadow:none;
  406. box-shadow:none;
  407. font-family:'Microsoft YaHei', sans-serif;
  408. font-weight:400;
  409. font-style:normal;
  410. font-size:14px;
  411. color:#CCCCCC;
  412. text-align:left;
  413. }
  414. #u125133 {
  415. border-width:0px;
  416. position:absolute;
  417. left:164px;
  418. top:301px;
  419. width:300px;
  420. height:40px;
  421. display:flex;
  422. font-family:'Microsoft YaHei', sans-serif;
  423. font-weight:400;
  424. font-style:normal;
  425. font-size:14px;
  426. color:#CCCCCC;
  427. text-align:left;
  428. }
  429. #u125133 .text {
  430. position:absolute;
  431. align-self:center;
  432. padding:2px 8px 2px 8px;
  433. box-sizing:border-box;
  434. width:100%;
  435. }
  436. #u125133_text {
  437. border-width:0px;
  438. word-wrap:break-word;
  439. text-transform:none;
  440. visibility:hidden;
  441. }
  442. #u125134_input {
  443. position:absolute;
  444. left:0px;
  445. top:0px;
  446. width:278px;
  447. height:33px;
  448. padding:2px 2px 2px 2px;
  449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  450. font-weight:400;
  451. font-style:normal;
  452. font-size:14px;
  453. letter-spacing:normal;
  454. color:#000000;
  455. vertical-align:none;
  456. text-align:left;
  457. text-transform:none;
  458. background-color:transparent;
  459. border-color:transparent;
  460. }
  461. #u125134_input.disabled {
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:278px;
  466. height:33px;
  467. padding:2px 2px 2px 2px;
  468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  469. font-weight:400;
  470. font-style:normal;
  471. font-size:14px;
  472. letter-spacing:normal;
  473. color:#000000;
  474. vertical-align:none;
  475. text-align:left;
  476. text-transform:none;
  477. background-color:transparent;
  478. border-color:transparent;
  479. }
  480. #u125134_div {
  481. border-width:0px;
  482. position:absolute;
  483. left:0px;
  484. top:0px;
  485. width:278px;
  486. height:33px;
  487. background:inherit;
  488. background-color:rgba(255, 255, 255, 1);
  489. border:none;
  490. border-radius:0px;
  491. -moz-box-shadow:none;
  492. -webkit-box-shadow:none;
  493. box-shadow:none;
  494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  495. font-weight:400;
  496. font-style:normal;
  497. font-size:14px;
  498. }
  499. #u125134 {
  500. border-width:0px;
  501. position:absolute;
  502. left:172px;
  503. top:302px;
  504. width:278px;
  505. height:33px;
  506. display:flex;
  507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  508. font-weight:400;
  509. font-style:normal;
  510. font-size:14px;
  511. }
  512. #u125134 .text {
  513. position:absolute;
  514. align-self:center;
  515. padding:2px 2px 2px 2px;
  516. box-sizing:border-box;
  517. width:100%;
  518. }
  519. #u125134_div.disabled {
  520. border-width:0px;
  521. position:absolute;
  522. left:0px;
  523. top:0px;
  524. width:278px;
  525. height:33px;
  526. background:inherit;
  527. background-color:rgba(240, 240, 240, 1);
  528. border:none;
  529. border-radius:0px;
  530. -moz-box-shadow:none;
  531. -webkit-box-shadow:none;
  532. box-shadow:none;
  533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  534. font-weight:400;
  535. font-style:normal;
  536. font-size:14px;
  537. }
  538. #u125134.disabled {
  539. }
  540. #u125135_div {
  541. border-width:0px;
  542. position:absolute;
  543. left:0px;
  544. top:0px;
  545. width:46px;
  546. height:40px;
  547. background:inherit;
  548. background-color:rgba(255, 255, 255, 0);
  549. border:none;
  550. border-top:0px;
  551. border-right:0px;
  552. border-bottom:0px;
  553. border-radius:0px;
  554. border-top-left-radius:0px;
  555. border-bottom-left-radius:0px;
  556. -moz-box-shadow:none;
  557. -webkit-box-shadow:none;
  558. box-shadow:none;
  559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  560. font-weight:400;
  561. font-style:normal;
  562. font-size:14px;
  563. color:#7F7F7F;
  564. line-height:30px;
  565. }
  566. #u125135 {
  567. border-width:0px;
  568. position:absolute;
  569. left:164px;
  570. top:261px;
  571. width:46px;
  572. height:40px;
  573. display:flex;
  574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  575. font-weight:400;
  576. font-style:normal;
  577. font-size:14px;
  578. color:#7F7F7F;
  579. line-height:30px;
  580. }
  581. #u125135 .text {
  582. position:absolute;
  583. align-self:center;
  584. padding:5px 10px 5px 0px;
  585. box-sizing:border-box;
  586. width:100%;
  587. }
  588. #u125135_text {
  589. border-width:0px;
  590. white-space:nowrap;
  591. text-transform:none;
  592. }
  593. #u125136_div {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:71px;
  599. height:40px;
  600. background:inherit;
  601. background-color:rgba(255, 255, 255, 0);
  602. border:none;
  603. border-top:0px;
  604. border-right:0px;
  605. border-bottom:0px;
  606. border-radius:0px;
  607. border-top-left-radius:0px;
  608. border-bottom-left-radius:0px;
  609. -moz-box-shadow:none;
  610. -webkit-box-shadow:none;
  611. box-shadow:none;
  612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  613. font-weight:400;
  614. font-style:normal;
  615. font-size:12px;
  616. color:#7F7F7F;
  617. line-height:30px;
  618. }
  619. #u125136 {
  620. border-width:0px;
  621. position:absolute;
  622. left:254px;
  623. top:190px;
  624. width:71px;
  625. height:40px;
  626. display:flex;
  627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  628. font-weight:400;
  629. font-style:normal;
  630. font-size:12px;
  631. color:#7F7F7F;
  632. line-height:30px;
  633. }
  634. #u125136 .text {
  635. position:absolute;
  636. align-self:center;
  637. padding:5px 10px 5px 0px;
  638. box-sizing:border-box;
  639. width:100%;
  640. }
  641. #u125136_text {
  642. border-width:0px;
  643. white-space:nowrap;
  644. text-transform:none;
  645. }
  646. #u125137 {
  647. border-width:0px;
  648. position:absolute;
  649. left:0px;
  650. top:0px;
  651. width:0px;
  652. height:0px;
  653. }
  654. #u125138_div {
  655. border-width:0px;
  656. position:absolute;
  657. left:0px;
  658. top:0px;
  659. width:300px;
  660. height:40px;
  661. background:inherit;
  662. background-color:rgba(255, 255, 255, 1);
  663. box-sizing:border-box;
  664. border-width:1px;
  665. border-style:solid;
  666. border-color:rgba(201, 201, 201, 1);
  667. border-radius:4px;
  668. -moz-box-shadow:none;
  669. -webkit-box-shadow:none;
  670. box-shadow:none;
  671. font-family:'Microsoft YaHei', sans-serif;
  672. font-weight:400;
  673. font-style:normal;
  674. font-size:14px;
  675. color:#CCCCCC;
  676. text-align:left;
  677. }
  678. #u125138 {
  679. border-width:0px;
  680. position:absolute;
  681. left:500px;
  682. top:301px;
  683. width:300px;
  684. height:40px;
  685. display:flex;
  686. font-family:'Microsoft YaHei', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:14px;
  690. color:#CCCCCC;
  691. text-align:left;
  692. }
  693. #u125138 .text {
  694. position:absolute;
  695. align-self:center;
  696. padding:2px 8px 2px 8px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u125138_text {
  701. border-width:0px;
  702. word-wrap:break-word;
  703. text-transform:none;
  704. visibility:hidden;
  705. }
  706. #u125139_input {
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:278px;
  711. height:33px;
  712. padding:2px 2px 2px 2px;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:14px;
  717. letter-spacing:normal;
  718. color:#000000;
  719. vertical-align:none;
  720. text-align:left;
  721. text-transform:none;
  722. background-color:transparent;
  723. border-color:transparent;
  724. }
  725. #u125139_input.disabled {
  726. position:absolute;
  727. left:0px;
  728. top:0px;
  729. width:278px;
  730. height:33px;
  731. padding:2px 2px 2px 2px;
  732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  733. font-weight:400;
  734. font-style:normal;
  735. font-size:14px;
  736. letter-spacing:normal;
  737. color:#000000;
  738. vertical-align:none;
  739. text-align:left;
  740. text-transform:none;
  741. background-color:transparent;
  742. border-color:transparent;
  743. }
  744. #u125139_div {
  745. border-width:0px;
  746. position:absolute;
  747. left:0px;
  748. top:0px;
  749. width:278px;
  750. height:33px;
  751. background:inherit;
  752. background-color:rgba(255, 255, 255, 1);
  753. border:none;
  754. border-radius:0px;
  755. -moz-box-shadow:none;
  756. -webkit-box-shadow:none;
  757. box-shadow:none;
  758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  759. font-weight:400;
  760. font-style:normal;
  761. font-size:14px;
  762. }
  763. #u125139 {
  764. border-width:0px;
  765. position:absolute;
  766. left:508px;
  767. top:302px;
  768. width:278px;
  769. height:33px;
  770. display:flex;
  771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  772. font-weight:400;
  773. font-style:normal;
  774. font-size:14px;
  775. }
  776. #u125139 .text {
  777. position:absolute;
  778. align-self:center;
  779. padding:2px 2px 2px 2px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u125139_div.disabled {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:278px;
  789. height:33px;
  790. background:inherit;
  791. background-color:rgba(240, 240, 240, 1);
  792. border:none;
  793. border-radius:0px;
  794. -moz-box-shadow:none;
  795. -webkit-box-shadow:none;
  796. box-shadow:none;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:14px;
  801. }
  802. #u125139.disabled {
  803. }
  804. #u125140_div {
  805. border-width:0px;
  806. position:absolute;
  807. left:0px;
  808. top:0px;
  809. width:60px;
  810. height:40px;
  811. background:inherit;
  812. background-color:rgba(255, 255, 255, 0);
  813. border:none;
  814. border-top:0px;
  815. border-right:0px;
  816. border-bottom:0px;
  817. border-radius:0px;
  818. border-top-left-radius:0px;
  819. border-bottom-left-radius:0px;
  820. -moz-box-shadow:none;
  821. -webkit-box-shadow:none;
  822. box-shadow:none;
  823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  824. font-weight:400;
  825. font-style:normal;
  826. font-size:14px;
  827. color:#7F7F7F;
  828. line-height:30px;
  829. }
  830. #u125140 {
  831. border-width:0px;
  832. position:absolute;
  833. left:500px;
  834. top:261px;
  835. width:60px;
  836. height:40px;
  837. display:flex;
  838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  839. font-weight:400;
  840. font-style:normal;
  841. font-size:14px;
  842. color:#7F7F7F;
  843. line-height:30px;
  844. }
  845. #u125140 .text {
  846. position:absolute;
  847. align-self:center;
  848. padding:5px 10px 5px 0px;
  849. box-sizing:border-box;
  850. width:100%;
  851. }
  852. #u125140_text {
  853. border-width:0px;
  854. white-space:nowrap;
  855. text-transform:none;
  856. }
  857. #u125141_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:80px;
  863. height:40px;
  864. background:inherit;
  865. background-color:rgba(25, 140, 251, 0);
  866. border:none;
  867. border-radius:6px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:14px;
  875. color:#0099FF;
  876. text-align:center;
  877. line-height:30px;
  878. }
  879. #u125141 {
  880. border-width:0px;
  881. position:absolute;
  882. left:164px;
  883. top:448px;
  884. width:80px;
  885. height:40px;
  886. display:flex;
  887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  888. font-weight:400;
  889. font-style:normal;
  890. font-size:14px;
  891. color:#0099FF;
  892. text-align:center;
  893. line-height:30px;
  894. }
  895. #u125141 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:5px 0px 5px 0px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u125141_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. }
  907. #u125142 {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:0px;
  913. height:0px;
  914. }
  915. #u125143_div {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:300px;
  921. height:40px;
  922. background:inherit;
  923. background-color:rgba(255, 255, 255, 1);
  924. box-sizing:border-box;
  925. border-width:1px;
  926. border-style:solid;
  927. border-color:rgba(201, 201, 201, 1);
  928. border-radius:4px;
  929. -moz-box-shadow:none;
  930. -webkit-box-shadow:none;
  931. box-shadow:none;
  932. font-family:'Microsoft YaHei', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:14px;
  936. color:#CCCCCC;
  937. text-align:left;
  938. }
  939. #u125143 {
  940. border-width:0px;
  941. position:absolute;
  942. left:164px;
  943. top:391px;
  944. width:300px;
  945. height:40px;
  946. display:flex;
  947. font-family:'Microsoft YaHei', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:14px;
  951. color:#CCCCCC;
  952. text-align:left;
  953. }
  954. #u125143 .text {
  955. position:absolute;
  956. align-self:center;
  957. padding:2px 8px 2px 8px;
  958. box-sizing:border-box;
  959. width:100%;
  960. }
  961. #u125143_text {
  962. border-width:0px;
  963. word-wrap:break-word;
  964. text-transform:none;
  965. visibility:hidden;
  966. }
  967. #u125144_input {
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:278px;
  972. height:33px;
  973. padding:2px 2px 2px 2px;
  974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  975. font-weight:400;
  976. font-style:normal;
  977. font-size:14px;
  978. letter-spacing:normal;
  979. color:#000000;
  980. vertical-align:none;
  981. text-align:left;
  982. text-transform:none;
  983. background-color:transparent;
  984. border-color:transparent;
  985. }
  986. #u125144_input.disabled {
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:278px;
  991. height:33px;
  992. padding:2px 2px 2px 2px;
  993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  994. font-weight:400;
  995. font-style:normal;
  996. font-size:14px;
  997. letter-spacing:normal;
  998. color:#000000;
  999. vertical-align:none;
  1000. text-align:left;
  1001. text-transform:none;
  1002. background-color:transparent;
  1003. border-color:transparent;
  1004. }
  1005. #u125144_div {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:0px;
  1009. top:0px;
  1010. width:278px;
  1011. height:33px;
  1012. background:inherit;
  1013. background-color:rgba(255, 255, 255, 1);
  1014. border:none;
  1015. border-radius:0px;
  1016. -moz-box-shadow:none;
  1017. -webkit-box-shadow:none;
  1018. box-shadow:none;
  1019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1020. font-weight:400;
  1021. font-style:normal;
  1022. font-size:14px;
  1023. }
  1024. #u125144 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:172px;
  1028. top:392px;
  1029. width:278px;
  1030. height:33px;
  1031. display:flex;
  1032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1033. font-weight:400;
  1034. font-style:normal;
  1035. font-size:14px;
  1036. }
  1037. #u125144 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 2px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u125144_div.disabled {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:0px;
  1048. top:0px;
  1049. width:278px;
  1050. height:33px;
  1051. background:inherit;
  1052. background-color:rgba(240, 240, 240, 1);
  1053. border:none;
  1054. border-radius:0px;
  1055. -moz-box-shadow:none;
  1056. -webkit-box-shadow:none;
  1057. box-shadow:none;
  1058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1059. font-weight:400;
  1060. font-style:normal;
  1061. font-size:14px;
  1062. }
  1063. #u125144.disabled {
  1064. }
  1065. #u125145_div {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:0px;
  1069. top:0px;
  1070. width:46px;
  1071. height:40px;
  1072. background:inherit;
  1073. background-color:rgba(255, 255, 255, 0);
  1074. border:none;
  1075. border-top:0px;
  1076. border-right:0px;
  1077. border-bottom:0px;
  1078. border-radius:0px;
  1079. border-top-left-radius:0px;
  1080. border-bottom-left-radius:0px;
  1081. -moz-box-shadow:none;
  1082. -webkit-box-shadow:none;
  1083. box-shadow:none;
  1084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1085. font-weight:400;
  1086. font-style:normal;
  1087. font-size:14px;
  1088. color:#7F7F7F;
  1089. line-height:30px;
  1090. }
  1091. #u125145 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:164px;
  1095. top:351px;
  1096. width:46px;
  1097. height:40px;
  1098. display:flex;
  1099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1100. font-weight:400;
  1101. font-style:normal;
  1102. font-size:14px;
  1103. color:#7F7F7F;
  1104. line-height:30px;
  1105. }
  1106. #u125145 .text {
  1107. position:absolute;
  1108. align-self:center;
  1109. padding:5px 10px 5px 0px;
  1110. box-sizing:border-box;
  1111. width:100%;
  1112. }
  1113. #u125145_text {
  1114. border-width:0px;
  1115. white-space:nowrap;
  1116. text-transform:none;
  1117. }
  1118. #u125146 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:0px;
  1122. top:0px;
  1123. width:0px;
  1124. height:0px;
  1125. }
  1126. #u125147_div {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:300px;
  1132. height:40px;
  1133. background:inherit;
  1134. background-color:rgba(255, 255, 255, 1);
  1135. box-sizing:border-box;
  1136. border-width:1px;
  1137. border-style:solid;
  1138. border-color:rgba(201, 201, 201, 1);
  1139. border-radius:4px;
  1140. -moz-box-shadow:none;
  1141. -webkit-box-shadow:none;
  1142. box-shadow:none;
  1143. font-family:'Microsoft YaHei', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. font-size:14px;
  1147. color:#CCCCCC;
  1148. text-align:left;
  1149. }
  1150. #u125147 {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:500px;
  1154. top:391px;
  1155. width:300px;
  1156. height:40px;
  1157. display:flex;
  1158. font-family:'Microsoft YaHei', sans-serif;
  1159. font-weight:400;
  1160. font-style:normal;
  1161. font-size:14px;
  1162. color:#CCCCCC;
  1163. text-align:left;
  1164. }
  1165. #u125147 .text {
  1166. position:absolute;
  1167. align-self:center;
  1168. padding:2px 8px 2px 8px;
  1169. box-sizing:border-box;
  1170. width:100%;
  1171. }
  1172. #u125147_text {
  1173. border-width:0px;
  1174. word-wrap:break-word;
  1175. text-transform:none;
  1176. visibility:hidden;
  1177. }
  1178. #u125148_input {
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:278px;
  1183. height:33px;
  1184. padding:2px 2px 2px 2px;
  1185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1186. font-weight:400;
  1187. font-style:normal;
  1188. font-size:14px;
  1189. letter-spacing:normal;
  1190. color:#000000;
  1191. vertical-align:none;
  1192. text-align:left;
  1193. text-transform:none;
  1194. background-color:transparent;
  1195. border-color:transparent;
  1196. }
  1197. #u125148_input.disabled {
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:278px;
  1202. height:33px;
  1203. padding:2px 2px 2px 2px;
  1204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1205. font-weight:400;
  1206. font-style:normal;
  1207. font-size:14px;
  1208. letter-spacing:normal;
  1209. color:#000000;
  1210. vertical-align:none;
  1211. text-align:left;
  1212. text-transform:none;
  1213. background-color:transparent;
  1214. border-color:transparent;
  1215. }
  1216. #u125148_div {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:278px;
  1222. height:33px;
  1223. background:inherit;
  1224. background-color:rgba(255, 255, 255, 1);
  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. font-size:14px;
  1234. }
  1235. #u125148 {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:508px;
  1239. top:392px;
  1240. width:278px;
  1241. height:33px;
  1242. display:flex;
  1243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1244. font-weight:400;
  1245. font-style:normal;
  1246. font-size:14px;
  1247. }
  1248. #u125148 .text {
  1249. position:absolute;
  1250. align-self:center;
  1251. padding:2px 2px 2px 2px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u125148_div.disabled {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:0px;
  1259. top:0px;
  1260. width:278px;
  1261. height:33px;
  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. font-size:14px;
  1273. }
  1274. #u125148.disabled {
  1275. }
  1276. #u125149_div {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:60px;
  1282. height:40px;
  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. color:#7F7F7F;
  1300. line-height:30px;
  1301. }
  1302. #u125149 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:500px;
  1306. top:351px;
  1307. width:60px;
  1308. height:40px;
  1309. display:flex;
  1310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1311. font-weight:400;
  1312. font-style:normal;
  1313. font-size:14px;
  1314. color:#7F7F7F;
  1315. line-height:30px;
  1316. }
  1317. #u125149 .text {
  1318. position:absolute;
  1319. align-self:center;
  1320. padding:5px 10px 5px 0px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u125149_text {
  1325. border-width:0px;
  1326. white-space:nowrap;
  1327. text-transform:none;
  1328. }
  1329. #u125150_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:39px;
  1335. height:40px;
  1336. background:inherit;
  1337. background-color:rgba(255, 255, 255, 0);
  1338. border:none;
  1339. border-top:0px;
  1340. border-right:0px;
  1341. border-bottom:0px;
  1342. border-radius:0px;
  1343. border-top-left-radius:0px;
  1344. border-bottom-left-radius:0px;
  1345. -moz-box-shadow:none;
  1346. -webkit-box-shadow:none;
  1347. box-shadow:none;
  1348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1349. font-weight:400;
  1350. font-style:normal;
  1351. font-size:14px;
  1352. color:#1890FF;
  1353. line-height:30px;
  1354. }
  1355. #u125150 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:824px;
  1359. top:389px;
  1360. width:39px;
  1361. height:40px;
  1362. display:flex;
  1363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. color:#1890FF;
  1368. line-height:30px;
  1369. }
  1370. #u125150 .text {
  1371. position:absolute;
  1372. align-self:center;
  1373. padding:5px 10px 5px 0px;
  1374. box-sizing:border-box;
  1375. width:100%;
  1376. }
  1377. #u125150_text {
  1378. border-width:0px;
  1379. white-space:nowrap;
  1380. text-transform:none;
  1381. }
  1382. #u125151 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:0px;
  1386. top:0px;
  1387. width:0px;
  1388. height:0px;
  1389. }
  1390. #u125152_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:800px;
  1396. height:60px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 1);
  1399. box-sizing:border-box;
  1400. border-width:1px;
  1401. border-style:solid;
  1402. border-color:rgba(215, 215, 215, 1);
  1403. border-radius:0px;
  1404. -moz-box-shadow:none;
  1405. -webkit-box-shadow:none;
  1406. box-shadow:none;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:14px;
  1411. color:#AAAAAA;
  1412. text-align:center;
  1413. line-height:30px;
  1414. }
  1415. #u125152 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:132px;
  1419. top:1190px;
  1420. width:800px;
  1421. height:60px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. font-size:14px;
  1427. color:#AAAAAA;
  1428. text-align:center;
  1429. line-height:30px;
  1430. }
  1431. #u125152 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:5px 10px 5px 10px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u125152_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. visibility:hidden;
  1443. }
  1444. #u125153_div {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:80px;
  1450. height:30px;
  1451. background:inherit;
  1452. background-color:rgba(24, 144, 255, 1);
  1453. border:none;
  1454. border-radius:4px;
  1455. -moz-box-shadow:none;
  1456. -webkit-box-shadow:none;
  1457. box-shadow:none;
  1458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:14px;
  1462. color:#FFFFFF;
  1463. }
  1464. #u125153 {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:812px;
  1468. top:1205px;
  1469. width:80px;
  1470. height:30px;
  1471. display:flex;
  1472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1473. font-weight:400;
  1474. font-style:normal;
  1475. font-size:14px;
  1476. color:#FFFFFF;
  1477. }
  1478. #u125153 .text {
  1479. position:absolute;
  1480. align-self:center;
  1481. padding:2px 2px 2px 2px;
  1482. box-sizing:border-box;
  1483. width:100%;
  1484. }
  1485. #u125153_text {
  1486. border-width:0px;
  1487. word-wrap:break-word;
  1488. text-transform:none;
  1489. }
  1490. #u125154_div {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:0px;
  1494. top:0px;
  1495. width:80px;
  1496. height:30px;
  1497. background:inherit;
  1498. background-color:rgba(255, 255, 255, 1);
  1499. box-sizing:border-box;
  1500. border-width:1px;
  1501. border-style:solid;
  1502. border-color:rgba(170, 170, 170, 1);
  1503. border-radius:4px;
  1504. -moz-box-shadow:none;
  1505. -webkit-box-shadow:none;
  1506. box-shadow:none;
  1507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:14px;
  1511. }
  1512. #u125154 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:722px;
  1516. top:1205px;
  1517. width:80px;
  1518. height:30px;
  1519. display:flex;
  1520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1521. font-weight:400;
  1522. font-style:normal;
  1523. font-size:14px;
  1524. }
  1525. #u125154 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u125154_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. }
  1537. #u125155_div {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:199px;
  1543. height:30px;
  1544. background:inherit;
  1545. background-color:rgba(255, 255, 255, 0);
  1546. border:none;
  1547. border-radius:0px;
  1548. -moz-box-shadow:none;
  1549. -webkit-box-shadow:none;
  1550. box-shadow:none;
  1551. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1552. font-weight:500;
  1553. font-style:normal;
  1554. font-size:18px;
  1555. line-height:30px;
  1556. }
  1557. #u125155 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:164px;
  1561. top:135px;
  1562. width:199px;
  1563. height:30px;
  1564. display:flex;
  1565. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1566. font-weight:500;
  1567. font-style:normal;
  1568. font-size:18px;
  1569. line-height:30px;
  1570. }
  1571. #u125155 .text {
  1572. position:absolute;
  1573. align-self:flex-start;
  1574. padding:0px 0px 0px 0px;
  1575. box-sizing:border-box;
  1576. width:100%;
  1577. }
  1578. #u125155_text {
  1579. border-width:0px;
  1580. white-space:nowrap;
  1581. text-transform:none;
  1582. }
  1583. #u125156 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:0px;
  1589. height:0px;
  1590. }
  1591. #u125157_div {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:800px;
  1597. height:1201px;
  1598. background:inherit;
  1599. background-color:rgba(242, 242, 242, 1);
  1600. box-sizing:border-box;
  1601. border-width:1px;
  1602. border-style:solid;
  1603. border-color:rgba(215, 215, 215, 1);
  1604. border-radius:0px;
  1605. -moz-box-shadow:none;
  1606. -webkit-box-shadow:none;
  1607. box-shadow:none;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:14px;
  1612. color:#AAAAAA;
  1613. text-align:center;
  1614. line-height:30px;
  1615. }
  1616. #u125157 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:972px;
  1620. top:49px;
  1621. width:800px;
  1622. height:1201px;
  1623. display:flex;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:14px;
  1628. color:#AAAAAA;
  1629. text-align:center;
  1630. line-height:30px;
  1631. }
  1632. #u125157 .text {
  1633. position:absolute;
  1634. align-self:center;
  1635. padding:5px 10px 5px 10px;
  1636. box-sizing:border-box;
  1637. width:100%;
  1638. }
  1639. #u125157_text {
  1640. border-width:0px;
  1641. word-wrap:break-word;
  1642. text-transform:none;
  1643. visibility:hidden;
  1644. }
  1645. #u125158_div {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:0px;
  1649. top:0px;
  1650. width:800px;
  1651. height:60px;
  1652. background:inherit;
  1653. background-color:rgba(255, 255, 255, 1);
  1654. box-sizing:border-box;
  1655. border-width:1px;
  1656. border-style:solid;
  1657. border-color:rgba(242, 242, 242, 1);
  1658. border-radius:0px;
  1659. -moz-box-shadow:none;
  1660. -webkit-box-shadow:none;
  1661. box-shadow:none;
  1662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1663. font-weight:400;
  1664. font-style:normal;
  1665. font-size:14px;
  1666. color:#AAAAAA;
  1667. text-align:center;
  1668. line-height:30px;
  1669. }
  1670. #u125158 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:972px;
  1674. top:49px;
  1675. width:800px;
  1676. height:60px;
  1677. display:flex;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:14px;
  1682. color:#AAAAAA;
  1683. text-align:center;
  1684. line-height:30px;
  1685. }
  1686. #u125158 .text {
  1687. position:absolute;
  1688. align-self:center;
  1689. padding:5px 10px 5px 10px;
  1690. box-sizing:border-box;
  1691. width:100%;
  1692. }
  1693. #u125158_text {
  1694. border-width:0px;
  1695. word-wrap:break-word;
  1696. text-transform:none;
  1697. visibility:hidden;
  1698. }
  1699. #u125159_div {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:83px;
  1705. height:35px;
  1706. background:inherit;
  1707. background-color:rgba(255, 255, 255, 0);
  1708. border:none;
  1709. border-top:0px;
  1710. border-right:0px;
  1711. border-bottom:0px;
  1712. border-radius:0px;
  1713. border-top-left-radius:0px;
  1714. border-bottom-left-radius:0px;
  1715. -moz-box-shadow:none;
  1716. -webkit-box-shadow:none;
  1717. box-shadow:none;
  1718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1719. font-weight:500;
  1720. font-style:normal;
  1721. font-size:18px;
  1722. }
  1723. #u125159 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:1003px;
  1727. top:62px;
  1728. width:83px;
  1729. height:35px;
  1730. display:flex;
  1731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1732. font-weight:500;
  1733. font-style:normal;
  1734. font-size:18px;
  1735. }
  1736. #u125159 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:5px 10px 5px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u125159_text {
  1744. border-width:0px;
  1745. white-space:nowrap;
  1746. text-transform:none;
  1747. }
  1748. #u125160_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:40px;
  1754. height:40px;
  1755. background:inherit;
  1756. background-color:rgba(255, 255, 255, 0);
  1757. border:none;
  1758. border-top:0px;
  1759. border-right:0px;
  1760. border-bottom:0px;
  1761. border-radius:0px;
  1762. border-top-left-radius:0px;
  1763. border-bottom-left-radius:0px;
  1764. -moz-box-shadow:none;
  1765. -webkit-box-shadow:none;
  1766. box-shadow:none;
  1767. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1768. font-weight:500;
  1769. font-style:normal;
  1770. font-size:24px;
  1771. text-align:center;
  1772. }
  1773. #u125160 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:1722px;
  1777. top:49px;
  1778. width:40px;
  1779. height:40px;
  1780. display:flex;
  1781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1782. font-weight:500;
  1783. font-style:normal;
  1784. font-size:24px;
  1785. text-align:center;
  1786. }
  1787. #u125160 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:5px 10px 5px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u125160_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u125161_div {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:800px;
  1805. height:1020px;
  1806. background:inherit;
  1807. background-color:rgba(255, 255, 255, 1);
  1808. box-sizing:border-box;
  1809. border-width:1px;
  1810. border-style:solid;
  1811. border-color:rgba(242, 242, 242, 1);
  1812. border-radius:0px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:14px;
  1820. color:#AAAAAA;
  1821. text-align:center;
  1822. line-height:30px;
  1823. }
  1824. #u125161 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:972px;
  1828. top:230px;
  1829. width:800px;
  1830. height:1020px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:14px;
  1836. color:#AAAAAA;
  1837. text-align:center;
  1838. line-height:30px;
  1839. }
  1840. #u125161 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:5px 10px 5px 10px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u125161_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. visibility:hidden;
  1852. }
  1853. #u125162_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:800px;
  1859. height:80px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 1);
  1862. border:none;
  1863. border-radius:0px;
  1864. -moz-box-shadow:none;
  1865. -webkit-box-shadow:none;
  1866. box-shadow:none;
  1867. }
  1868. #u125162 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:972px;
  1872. top:110px;
  1873. width:800px;
  1874. height:80px;
  1875. display:flex;
  1876. }
  1877. #u125162 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 2px 2px 2px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u125162_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. visibility:hidden;
  1889. }
  1890. #u125163_div {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:199px;
  1896. height:40px;
  1897. background:inherit;
  1898. background-color:rgba(255, 255, 255, 0);
  1899. border:none;
  1900. border-left:0px;
  1901. border-top:0px;
  1902. border-right:0px;
  1903. border-radius:0px;
  1904. border-bottom-right-radius:0px;
  1905. border-bottom-left-radius:0px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1910. font-weight:500;
  1911. font-style:normal;
  1912. font-size:18px;
  1913. line-height:30px;
  1914. }
  1915. #u125163 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:1003px;
  1919. top:128px;
  1920. width:199px;
  1921. height:40px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1924. font-weight:500;
  1925. font-style:normal;
  1926. font-size:18px;
  1927. line-height:30px;
  1928. }
  1929. #u125163 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:0px 0px 0px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u125163_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u125164_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:71px;
  1947. height:40px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 0);
  1950. border:none;
  1951. border-left:0px;
  1952. border-top:0px;
  1953. border-right:0px;
  1954. border-radius:0px;
  1955. border-bottom-right-radius:0px;
  1956. border-bottom-left-radius:0px;
  1957. -moz-box-shadow:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:12px;
  1964. line-height:30px;
  1965. }
  1966. #u125164 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:993px;
  1970. top:190px;
  1971. width:71px;
  1972. height:40px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:12px;
  1978. line-height:30px;
  1979. }
  1980. #u125164 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:5px 10px 5px 0px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u125164_text {
  1988. border-width:0px;
  1989. white-space:nowrap;
  1990. text-transform:none;
  1991. }
  1992. #u125165_div {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:71px;
  1998. height:40px;
  1999. background:inherit;
  2000. background-color:rgba(255, 255, 255, 0);
  2001. box-sizing:border-box;
  2002. border-width:2px;
  2003. border-style:solid;
  2004. border-color:rgba(24, 144, 255, 1);
  2005. border-left:0px;
  2006. border-top:0px;
  2007. border-right:0px;
  2008. border-radius:0px;
  2009. border-bottom-right-radius:0px;
  2010. border-bottom-left-radius:0px;
  2011. -moz-box-shadow:none;
  2012. -webkit-box-shadow:none;
  2013. box-shadow:none;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:12px;
  2018. color:#1890FF;
  2019. line-height:30px;
  2020. }
  2021. #u125165 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:1094px;
  2025. top:190px;
  2026. width:71px;
  2027. height:40px;
  2028. display:flex;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. font-size:12px;
  2033. color:#1890FF;
  2034. line-height:30px;
  2035. }
  2036. #u125165 .text {
  2037. position:absolute;
  2038. align-self:center;
  2039. padding:5px 10px 5px 0px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u125165_text {
  2044. border-width:0px;
  2045. white-space:nowrap;
  2046. text-transform:none;
  2047. }
  2048. #u125166 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:0px;
  2054. height:0px;
  2055. }
  2056. #u125167_div {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:800px;
  2062. height:60px;
  2063. background:inherit;
  2064. background-color:rgba(255, 255, 255, 1);
  2065. box-sizing:border-box;
  2066. border-width:1px;
  2067. border-style:solid;
  2068. border-color:rgba(215, 215, 215, 1);
  2069. border-radius:0px;
  2070. -moz-box-shadow:none;
  2071. -webkit-box-shadow:none;
  2072. box-shadow:none;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. color:#AAAAAA;
  2078. text-align:center;
  2079. line-height:30px;
  2080. }
  2081. #u125167 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:972px;
  2085. top:1190px;
  2086. width:800px;
  2087. height:60px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:14px;
  2093. color:#AAAAAA;
  2094. text-align:center;
  2095. line-height:30px;
  2096. }
  2097. #u125167 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:5px 10px 5px 10px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u125167_text {
  2105. border-width:0px;
  2106. word-wrap:break-word;
  2107. text-transform:none;
  2108. visibility:hidden;
  2109. }
  2110. #u125168_div {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:80px;
  2116. height:30px;
  2117. background:inherit;
  2118. background-color:rgba(255, 255, 255, 1);
  2119. box-sizing:border-box;
  2120. border-width:1px;
  2121. border-style:solid;
  2122. border-color:rgba(170, 170, 170, 1);
  2123. border-radius:4px;
  2124. -moz-box-shadow:none;
  2125. -webkit-box-shadow:none;
  2126. box-shadow:none;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:14px;
  2131. }
  2132. #u125168 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:1656px;
  2136. top:1205px;
  2137. width:80px;
  2138. height:30px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:14px;
  2144. }
  2145. #u125168 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u125168_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. }
  2157. #u125169_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:378px;
  2163. height:493px;
  2164. background:inherit;
  2165. background-color:rgba(242, 242, 242, 1);
  2166. box-sizing:border-box;
  2167. border-width:1px;
  2168. border-style:solid;
  2169. border-color:rgba(242, 242, 242, 1);
  2170. border-radius:0px;
  2171. -moz-box-shadow:none;
  2172. -webkit-box-shadow:none;
  2173. box-shadow:none;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:14px;
  2178. color:#AAAAAA;
  2179. text-align:center;
  2180. line-height:30px;
  2181. }
  2182. #u125169 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:1188px;
  2186. top:286px;
  2187. width:378px;
  2188. height:493px;
  2189. display:flex;
  2190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:14px;
  2194. color:#AAAAAA;
  2195. text-align:center;
  2196. line-height:30px;
  2197. }
  2198. #u125169 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:5px 10px 5px 10px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u125169_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. visibility:hidden;
  2210. }
  2211. #u125170_div {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:191px;
  2217. height:70px;
  2218. background:inherit;
  2219. background-color:rgba(255, 255, 255, 0);
  2220. border:none;
  2221. border-top:0px;
  2222. border-right:0px;
  2223. border-bottom:0px;
  2224. border-radius:0px;
  2225. border-top-left-radius:0px;
  2226. border-bottom-left-radius:0px;
  2227. -moz-box-shadow:none;
  2228. -webkit-box-shadow:none;
  2229. box-shadow:none;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-style:normal;
  2232. text-align:center;
  2233. line-height:30px;
  2234. }
  2235. #u125170 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:1282px;
  2239. top:314px;
  2240. width:191px;
  2241. height:70px;
  2242. display:flex;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-style:normal;
  2245. text-align:center;
  2246. line-height:30px;
  2247. }
  2248. #u125170 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:5px 10px 5px 0px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u125170_text {
  2256. border-width:0px;
  2257. white-space:nowrap;
  2258. text-transform:none;
  2259. }
  2260. #u125171_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:255px;
  2266. height:264px;
  2267. }
  2268. #u125171 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:1250px;
  2272. top:413px;
  2273. width:255px;
  2274. height:264px;
  2275. display:flex;
  2276. }
  2277. #u125171 .text {
  2278. position:absolute;
  2279. align-self:center;
  2280. padding:2px 2px 2px 2px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u125171_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. visibility:hidden;
  2289. }
  2290. #u125172_div {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:207px;
  2296. height:40px;
  2297. background:inherit;
  2298. background-color:rgba(255, 255, 255, 0);
  2299. border:none;
  2300. border-top:0px;
  2301. border-right:0px;
  2302. border-bottom:0px;
  2303. border-radius:0px;
  2304. border-top-left-radius:0px;
  2305. border-bottom-left-radius:0px;
  2306. -moz-box-shadow:none;
  2307. -webkit-box-shadow:none;
  2308. box-shadow:none;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:14px;
  2313. color:#555555;
  2314. text-align:center;
  2315. line-height:30px;
  2316. }
  2317. #u125172 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:1274px;
  2321. top:699px;
  2322. width:207px;
  2323. height:40px;
  2324. display:flex;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:14px;
  2329. color:#555555;
  2330. text-align:center;
  2331. line-height:30px;
  2332. }
  2333. #u125172 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:5px 10px 5px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u125172_text {
  2341. border-width:0px;
  2342. white-space:nowrap;
  2343. text-transform:none;
  2344. }
  2345. #u125173_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:154px;
  2351. height:30px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 1);
  2354. box-sizing:border-box;
  2355. border-width:1px;
  2356. border-style:solid;
  2357. border-color:rgba(170, 170, 170, 1);
  2358. border-radius:4px;
  2359. -moz-box-shadow:none;
  2360. -webkit-box-shadow:none;
  2361. box-shadow:none;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:14px;
  2366. }
  2367. #u125173 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:1218px;
  2371. top:810px;
  2372. width:154px;
  2373. height:30px;
  2374. display:flex;
  2375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:14px;
  2379. }
  2380. #u125173 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 2px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u125173_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. }
  2392. #u125174 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:0px;
  2398. height:0px;
  2399. }
  2400. #u125175 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:0px;
  2406. height:0px;
  2407. }
  2408. #u125176_div {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:240px;
  2414. height:40px;
  2415. background:inherit;
  2416. background-color:rgba(255, 255, 255, 1);
  2417. box-sizing:border-box;
  2418. border-width:1px;
  2419. border-style:solid;
  2420. border-color:rgba(215, 215, 215, 1);
  2421. border-radius:4px;
  2422. -moz-box-shadow:none;
  2423. -webkit-box-shadow:none;
  2424. box-shadow:none;
  2425. font-size:14px;
  2426. }
  2427. #u125176 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:1152px;
  2431. top:920px;
  2432. width:240px;
  2433. height:40px;
  2434. display:flex;
  2435. font-size:14px;
  2436. }
  2437. #u125176 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 2px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u125176_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u125177_input {
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:229px;
  2455. height:31px;
  2456. padding:2px 2px 2px 2px;
  2457. font-family:'ArialMT', 'Arial', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:14px;
  2461. letter-spacing:normal;
  2462. color:#AAAAAA;
  2463. vertical-align:none;
  2464. text-align:left;
  2465. text-transform:none;
  2466. background-color:transparent;
  2467. border-color:transparent;
  2468. }
  2469. #u125177_input.disabled {
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:229px;
  2474. height:31px;
  2475. padding:2px 2px 2px 2px;
  2476. font-family:'ArialMT', 'Arial', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:14px;
  2480. letter-spacing:normal;
  2481. color:#AAAAAA;
  2482. vertical-align:none;
  2483. text-align:left;
  2484. text-transform:none;
  2485. background-color:transparent;
  2486. border-color:transparent;
  2487. }
  2488. #u125177_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:229px;
  2494. height:31px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 1);
  2497. border:none;
  2498. border-radius:0px;
  2499. -moz-box-shadow:none;
  2500. -webkit-box-shadow:none;
  2501. box-shadow:none;
  2502. font-size:14px;
  2503. color:#AAAAAA;
  2504. }
  2505. #u125177 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:1159px;
  2509. top:923px;
  2510. width:229px;
  2511. height:31px;
  2512. display:flex;
  2513. font-size:14px;
  2514. color:#AAAAAA;
  2515. }
  2516. #u125177 .text {
  2517. position:absolute;
  2518. align-self:flex-start;
  2519. padding:2px 2px 2px 2px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u125177_div.disabled {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:229px;
  2529. height:31px;
  2530. background:inherit;
  2531. background-color:rgba(240, 240, 240, 1);
  2532. border:none;
  2533. border-radius:0px;
  2534. -moz-box-shadow:none;
  2535. -webkit-box-shadow:none;
  2536. box-shadow:none;
  2537. font-size:14px;
  2538. color:#AAAAAA;
  2539. }
  2540. #u125177.disabled {
  2541. }
  2542. .u125177_input_option {
  2543. font-size:14px;
  2544. }
  2545. #u125178_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:469px;
  2551. height:50px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-left:0px;
  2556. border-top:0px;
  2557. border-right:0px;
  2558. border-radius:0px;
  2559. border-bottom-right-radius:0px;
  2560. border-bottom-left-radius:0px;
  2561. -moz-box-shadow:none;
  2562. -webkit-box-shadow:none;
  2563. box-shadow:none;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. color:#555555;
  2569. }
  2570. #u125178 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:1152px;
  2574. top:870px;
  2575. width:469px;
  2576. height:50px;
  2577. display:flex;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:12px;
  2582. color:#555555;
  2583. }
  2584. #u125178 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:5px 0px 5px 0px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u125178_text {
  2592. border-width:0px;
  2593. white-space:nowrap;
  2594. text-transform:none;
  2595. }
  2596. #u125179_div {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:154px;
  2602. height:30px;
  2603. background:inherit;
  2604. background-color:rgba(255, 255, 255, 1);
  2605. box-sizing:border-box;
  2606. border-width:1px;
  2607. border-style:solid;
  2608. border-color:rgba(170, 170, 170, 1);
  2609. border-radius:4px;
  2610. -moz-box-shadow:none;
  2611. -webkit-box-shadow:none;
  2612. box-shadow:none;
  2613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:14px;
  2617. }
  2618. #u125179 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:1393px;
  2622. top:810px;
  2623. width:154px;
  2624. height:30px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. }
  2631. #u125179 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u125179_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. }
  2643. #u125180_div {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:154px;
  2649. height:40px;
  2650. background:inherit;
  2651. background-color:rgba(0, 153, 255, 1);
  2652. border:none;
  2653. border-radius:4px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:14px;
  2661. color:#FFFFFF;
  2662. }
  2663. #u125180 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:1418px;
  2667. top:923px;
  2668. width:154px;
  2669. height:40px;
  2670. display:flex;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:14px;
  2675. color:#FFFFFF;
  2676. }
  2677. #u125180 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 2px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u125180_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. }