styles.css 48 KB

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