styles.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-112px;
  6. width:1000px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u113233_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1000px;
  25. height:1201px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(215, 215, 215, 1);
  32. border-radius:0px;
  33. -moz-box-shadow:none;
  34. -webkit-box-shadow:none;
  35. box-shadow:none;
  36. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  37. font-weight:400;
  38. font-style:normal;
  39. font-size:14px;
  40. color:#AAAAAA;
  41. text-align:center;
  42. line-height:30px;
  43. }
  44. #u113233 {
  45. border-width:0px;
  46. position:absolute;
  47. left:112px;
  48. top:44px;
  49. width:1000px;
  50. height:1201px;
  51. display:flex;
  52. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  53. font-weight:400;
  54. font-style:normal;
  55. font-size:14px;
  56. color:#AAAAAA;
  57. text-align:center;
  58. line-height:30px;
  59. }
  60. #u113233 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:5px 10px 5px 10px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u113233_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u113234_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:1000px;
  79. height:200px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 1);
  82. box-sizing:border-box;
  83. border-width:1px;
  84. border-style:solid;
  85. border-color:rgba(215, 215, 215, 1);
  86. border-radius:0px;
  87. -moz-box-shadow:none;
  88. -webkit-box-shadow:none;
  89. box-shadow:none;
  90. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  91. font-weight:400;
  92. font-style:normal;
  93. font-size:14px;
  94. color:#AAAAAA;
  95. text-align:center;
  96. line-height:30px;
  97. }
  98. #u113234 {
  99. border-width:0px;
  100. position:absolute;
  101. left:112px;
  102. top:44px;
  103. width:1000px;
  104. height:200px;
  105. display:flex;
  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. #u113234 .text {
  115. position:absolute;
  116. align-self:center;
  117. padding:5px 10px 5px 10px;
  118. box-sizing:border-box;
  119. width:100%;
  120. }
  121. #u113234_text {
  122. border-width:0px;
  123. word-wrap:break-word;
  124. text-transform:none;
  125. visibility:hidden;
  126. }
  127. #u113235_div {
  128. border-width:0px;
  129. position:absolute;
  130. left:0px;
  131. top:0px;
  132. width:101px;
  133. height:35px;
  134. background:inherit;
  135. background-color:rgba(255, 255, 255, 0);
  136. border:none;
  137. border-top:0px;
  138. border-right:0px;
  139. border-bottom:0px;
  140. border-radius:0px;
  141. border-top-left-radius:0px;
  142. border-bottom-left-radius:0px;
  143. -moz-box-shadow:none;
  144. -webkit-box-shadow:none;
  145. box-shadow:none;
  146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  147. font-weight:500;
  148. font-style:normal;
  149. font-size:18px;
  150. }
  151. #u113235 {
  152. border-width:0px;
  153. position:absolute;
  154. left:132px;
  155. top:62px;
  156. width:101px;
  157. height:35px;
  158. display:flex;
  159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  160. font-weight:500;
  161. font-style:normal;
  162. font-size:18px;
  163. }
  164. #u113235 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:5px 10px 5px 0px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u113235_text {
  172. border-width:0px;
  173. white-space:nowrap;
  174. text-transform:none;
  175. }
  176. #u113236 {
  177. border-width:0px;
  178. position:absolute;
  179. left:0px;
  180. top:0px;
  181. width:0px;
  182. height:0px;
  183. }
  184. #u113237_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:14px;
  207. text-align:center;
  208. }
  209. #u113237 {
  210. border-width:0px;
  211. position:absolute;
  212. left:1072px;
  213. top:44px;
  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:14px;
  221. text-align:center;
  222. }
  223. #u113237 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:5px 10px 5px 0px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u113237_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. }
  235. #u113238_img {
  236. border-width:0px;
  237. position:absolute;
  238. left:0px;
  239. top:0px;
  240. width:13px;
  241. height:13px;
  242. }
  243. #u113238 {
  244. border-width:0px;
  245. position:absolute;
  246. left:1060px;
  247. top:60px;
  248. width:13px;
  249. height:13px;
  250. display:flex;
  251. font-size:14px;
  252. }
  253. #u113238 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u113238_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u113239_div {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:227px;
  272. height:43px;
  273. background:inherit;
  274. background-color:rgba(255, 255, 255, 0);
  275. border:none;
  276. border-top:0px;
  277. border-right:0px;
  278. border-bottom:0px;
  279. border-radius:0px;
  280. border-top-left-radius:0px;
  281. border-bottom-left-radius:0px;
  282. -moz-box-shadow:none;
  283. -webkit-box-shadow:none;
  284. box-shadow:none;
  285. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  286. font-weight:500;
  287. font-style:normal;
  288. font-size:24px;
  289. }
  290. #u113239 {
  291. border-width:0px;
  292. position:absolute;
  293. left:142px;
  294. top:113px;
  295. width:227px;
  296. height:43px;
  297. display:flex;
  298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  299. font-weight:500;
  300. font-style:normal;
  301. font-size:24px;
  302. }
  303. #u113239 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:5px 10px 5px 0px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u113239_text {
  311. border-width:0px;
  312. white-space:nowrap;
  313. text-transform:none;
  314. }
  315. #u113240_div {
  316. border-width:0px;
  317. position:absolute;
  318. left:0px;
  319. top:0px;
  320. width:1000px;
  321. height:299px;
  322. background:inherit;
  323. background-color:rgba(255, 255, 255, 1);
  324. box-sizing:border-box;
  325. border-width:1px;
  326. border-style:solid;
  327. border-color:rgba(215, 215, 215, 1);
  328. border-radius:0px;
  329. -moz-box-shadow:none;
  330. -webkit-box-shadow:none;
  331. box-shadow:none;
  332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  333. font-weight:400;
  334. font-style:normal;
  335. font-size:14px;
  336. color:#AAAAAA;
  337. text-align:center;
  338. line-height:30px;
  339. }
  340. #u113240 {
  341. border-width:0px;
  342. position:absolute;
  343. left:112px;
  344. top:254px;
  345. width:1000px;
  346. height:299px;
  347. display:flex;
  348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  349. font-weight:400;
  350. font-style:normal;
  351. font-size:14px;
  352. color:#AAAAAA;
  353. text-align:center;
  354. line-height:30px;
  355. }
  356. #u113240 .text {
  357. position:absolute;
  358. align-self:center;
  359. padding:5px 10px 5px 10px;
  360. box-sizing:border-box;
  361. width:100%;
  362. }
  363. #u113240_text {
  364. border-width:0px;
  365. word-wrap:break-word;
  366. text-transform:none;
  367. visibility:hidden;
  368. }
  369. #u113241_img {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:108px;
  375. height:108px;
  376. }
  377. #u113241 {
  378. border-width:0px;
  379. position:absolute;
  380. left:962px;
  381. top:114px;
  382. width:108px;
  383. height:108px;
  384. display:flex;
  385. -webkit-transform:rotate(315deg);
  386. -moz-transform:rotate(315deg);
  387. -ms-transform:rotate(315deg);
  388. transform:rotate(315deg);
  389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  390. font-weight:400;
  391. font-style:normal;
  392. font-size:28px;
  393. color:#F59A23;
  394. }
  395. #u113241 .text {
  396. position:absolute;
  397. align-self:center;
  398. padding:2px 2px 2px 2px;
  399. box-sizing:border-box;
  400. width:100%;
  401. }
  402. #u113241_text {
  403. border-width:0px;
  404. word-wrap:break-word;
  405. text-transform:none;
  406. }
  407. #u113242 {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:0px;
  413. height:0px;
  414. }
  415. #u113243_div {
  416. border-width:0px;
  417. position:absolute;
  418. left:0px;
  419. top:0px;
  420. width:1000px;
  421. height:60px;
  422. background:inherit;
  423. background-color:rgba(255, 255, 255, 1);
  424. box-sizing:border-box;
  425. border-width:1px;
  426. border-style:solid;
  427. border-color:rgba(215, 215, 215, 1);
  428. border-radius:0px;
  429. -moz-box-shadow:none;
  430. -webkit-box-shadow:none;
  431. box-shadow:none;
  432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  433. font-weight:400;
  434. font-style:normal;
  435. font-size:14px;
  436. color:#AAAAAA;
  437. text-align:center;
  438. line-height:30px;
  439. }
  440. #u113243 {
  441. border-width:0px;
  442. position:absolute;
  443. left:112px;
  444. top:1185px;
  445. width:1000px;
  446. height:60px;
  447. display:flex;
  448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  449. font-weight:400;
  450. font-style:normal;
  451. font-size:14px;
  452. color:#AAAAAA;
  453. text-align:center;
  454. line-height:30px;
  455. }
  456. #u113243 .text {
  457. position:absolute;
  458. align-self:center;
  459. padding:5px 10px 5px 10px;
  460. box-sizing:border-box;
  461. width:100%;
  462. }
  463. #u113243_text {
  464. border-width:0px;
  465. word-wrap:break-word;
  466. text-transform:none;
  467. visibility:hidden;
  468. }
  469. #u113244_div {
  470. border-width:0px;
  471. position:absolute;
  472. left:0px;
  473. top:0px;
  474. width:80px;
  475. height:30px;
  476. background:inherit;
  477. background-color:rgba(24, 144, 255, 1);
  478. border:none;
  479. border-radius:4px;
  480. -moz-box-shadow:none;
  481. -webkit-box-shadow:none;
  482. box-shadow:none;
  483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  484. font-weight:400;
  485. font-style:normal;
  486. font-size:14px;
  487. color:#FFFFFF;
  488. }
  489. #u113244 {
  490. border-width:0px;
  491. position:absolute;
  492. left:1006px;
  493. top:1200px;
  494. width:80px;
  495. height:30px;
  496. display:flex;
  497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  498. font-weight:400;
  499. font-style:normal;
  500. font-size:14px;
  501. color:#FFFFFF;
  502. }
  503. #u113244 .text {
  504. position:absolute;
  505. align-self:center;
  506. padding:2px 2px 2px 2px;
  507. box-sizing:border-box;
  508. width:100%;
  509. }
  510. #u113244_text {
  511. border-width:0px;
  512. word-wrap:break-word;
  513. text-transform:none;
  514. }
  515. #u113245_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:80px;
  521. height:30px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 1);
  524. box-sizing:border-box;
  525. border-width:1px;
  526. border-style:solid;
  527. border-color:rgba(170, 170, 170, 1);
  528. border-radius:4px;
  529. -moz-box-shadow:none;
  530. -webkit-box-shadow:none;
  531. box-shadow:none;
  532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  533. font-weight:400;
  534. font-style:normal;
  535. font-size:14px;
  536. }
  537. #u113245 {
  538. border-width:0px;
  539. position:absolute;
  540. left:916px;
  541. top:1200px;
  542. width:80px;
  543. height:30px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:14px;
  549. }
  550. #u113245 .text {
  551. position:absolute;
  552. align-self:center;
  553. padding:2px 2px 2px 2px;
  554. box-sizing:border-box;
  555. width:100%;
  556. }
  557. #u113245_text {
  558. border-width:0px;
  559. word-wrap:break-word;
  560. text-transform:none;
  561. }
  562. #u113246_div {
  563. border-width:0px;
  564. position:absolute;
  565. left:0px;
  566. top:0px;
  567. width:1000px;
  568. height:622px;
  569. background:inherit;
  570. background-color:rgba(255, 255, 255, 1);
  571. box-sizing:border-box;
  572. border-width:1px;
  573. border-style:solid;
  574. border-color:rgba(215, 215, 215, 1);
  575. border-radius:0px;
  576. -moz-box-shadow:none;
  577. -webkit-box-shadow:none;
  578. box-shadow:none;
  579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  580. font-weight:400;
  581. font-style:normal;
  582. font-size:14px;
  583. color:#AAAAAA;
  584. text-align:center;
  585. line-height:30px;
  586. }
  587. #u113246 {
  588. border-width:0px;
  589. position:absolute;
  590. left:112px;
  591. top:563px;
  592. width:1000px;
  593. height:622px;
  594. display:flex;
  595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  596. font-weight:400;
  597. font-style:normal;
  598. font-size:14px;
  599. color:#AAAAAA;
  600. text-align:center;
  601. line-height:30px;
  602. }
  603. #u113246 .text {
  604. position:absolute;
  605. align-self:center;
  606. padding:5px 10px 5px 10px;
  607. box-sizing:border-box;
  608. width:100%;
  609. }
  610. #u113246_text {
  611. border-width:0px;
  612. word-wrap:break-word;
  613. text-transform:none;
  614. visibility:hidden;
  615. }
  616. #u113247_div {
  617. border-width:0px;
  618. position:absolute;
  619. left:0px;
  620. top:0px;
  621. width:67px;
  622. height:30px;
  623. background:inherit;
  624. background-color:rgba(255, 255, 255, 0);
  625. border:none;
  626. border-top:0px;
  627. border-right:0px;
  628. border-bottom:0px;
  629. border-radius:0px;
  630. border-top-left-radius:0px;
  631. border-bottom-left-radius:0px;
  632. -moz-box-shadow:none;
  633. -webkit-box-shadow:none;
  634. box-shadow:none;
  635. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  636. font-weight:500;
  637. font-style:normal;
  638. font-size:14px;
  639. }
  640. #u113247 {
  641. border-width:0px;
  642. position:absolute;
  643. left:142px;
  644. top:589px;
  645. width:67px;
  646. height:30px;
  647. display:flex;
  648. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  649. font-weight:500;
  650. font-style:normal;
  651. font-size:14px;
  652. }
  653. #u113247 .text {
  654. position:absolute;
  655. align-self:center;
  656. padding:5px 10px 5px 0px;
  657. box-sizing:border-box;
  658. width:100%;
  659. }
  660. #u113247_text {
  661. border-width:0px;
  662. white-space:nowrap;
  663. text-transform:none;
  664. }
  665. #u113248_div {
  666. border-width:0px;
  667. position:absolute;
  668. left:0px;
  669. top:0px;
  670. width:88px;
  671. height:40px;
  672. background:inherit;
  673. background-color:rgba(255, 255, 255, 0);
  674. border:none;
  675. border-top:0px;
  676. border-right:0px;
  677. border-bottom:0px;
  678. border-radius:0px;
  679. border-top-left-radius:0px;
  680. border-bottom-left-radius:0px;
  681. -moz-box-shadow:none;
  682. -webkit-box-shadow:none;
  683. box-shadow:none;
  684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  685. font-weight:400;
  686. font-style:normal;
  687. font-size:14px;
  688. color:#7F7F7F;
  689. text-align:right;
  690. }
  691. #u113248 {
  692. border-width:0px;
  693. position:absolute;
  694. left:142px;
  695. top:629px;
  696. width:88px;
  697. height:40px;
  698. display:flex;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:14px;
  703. color:#7F7F7F;
  704. text-align:right;
  705. }
  706. #u113248 .text {
  707. position:absolute;
  708. align-self:center;
  709. padding:5px 10px 5px 0px;
  710. box-sizing:border-box;
  711. width:100%;
  712. }
  713. #u113248_text {
  714. border-width:0px;
  715. white-space:nowrap;
  716. text-transform:none;
  717. }
  718. #u113249 {
  719. border-width:0px;
  720. position:absolute;
  721. left:0px;
  722. top:0px;
  723. width:0px;
  724. height:0px;
  725. }
  726. #u113250_div {
  727. border-width:0px;
  728. position:absolute;
  729. left:0px;
  730. top:0px;
  731. width:300px;
  732. height:40px;
  733. background:inherit;
  734. background-color:rgba(255, 255, 255, 1);
  735. box-sizing:border-box;
  736. border-width:1px;
  737. border-style:solid;
  738. border-color:rgba(215, 215, 215, 1);
  739. border-radius:4px;
  740. -moz-box-shadow:none;
  741. -webkit-box-shadow:none;
  742. box-shadow:none;
  743. font-size:14px;
  744. }
  745. #u113250 {
  746. border-width:0px;
  747. position:absolute;
  748. left:240px;
  749. top:629px;
  750. width:300px;
  751. height:40px;
  752. display:flex;
  753. font-size:14px;
  754. }
  755. #u113250 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u113250_text {
  763. border-width:0px;
  764. word-wrap:break-word;
  765. text-transform:none;
  766. visibility:hidden;
  767. }
  768. #u113251_input {
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:286px;
  773. height:31px;
  774. padding:2px 2px 2px 2px;
  775. font-family:'ArialMT', 'Arial', sans-serif;
  776. font-weight:400;
  777. font-style:normal;
  778. font-size:14px;
  779. letter-spacing:normal;
  780. color:#AAAAAA;
  781. vertical-align:none;
  782. text-align:left;
  783. text-transform:none;
  784. background-color:transparent;
  785. border-color:transparent;
  786. }
  787. #u113251_input.disabled {
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:286px;
  792. height:31px;
  793. padding:2px 2px 2px 2px;
  794. font-family:'ArialMT', 'Arial', sans-serif;
  795. font-weight:400;
  796. font-style:normal;
  797. font-size:14px;
  798. letter-spacing:normal;
  799. color:#AAAAAA;
  800. vertical-align:none;
  801. text-align:left;
  802. text-transform:none;
  803. background-color:transparent;
  804. border-color:transparent;
  805. }
  806. #u113251_div {
  807. border-width:0px;
  808. position:absolute;
  809. left:0px;
  810. top:0px;
  811. width:286px;
  812. height:31px;
  813. background:inherit;
  814. background-color:rgba(255, 255, 255, 1);
  815. border:none;
  816. border-radius:0px;
  817. -moz-box-shadow:none;
  818. -webkit-box-shadow:none;
  819. box-shadow:none;
  820. font-size:14px;
  821. color:#AAAAAA;
  822. }
  823. #u113251 {
  824. border-width:0px;
  825. position:absolute;
  826. left:248px;
  827. top:632px;
  828. width:286px;
  829. height:31px;
  830. display:flex;
  831. font-size:14px;
  832. color:#AAAAAA;
  833. }
  834. #u113251 .text {
  835. position:absolute;
  836. align-self:flex-start;
  837. padding:2px 2px 2px 2px;
  838. box-sizing:border-box;
  839. width:100%;
  840. }
  841. #u113251_div.disabled {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:286px;
  847. height:31px;
  848. background:inherit;
  849. background-color:rgba(240, 240, 240, 1);
  850. border:none;
  851. border-radius:0px;
  852. -moz-box-shadow:none;
  853. -webkit-box-shadow:none;
  854. box-shadow:none;
  855. font-size:14px;
  856. color:#AAAAAA;
  857. }
  858. #u113251.disabled {
  859. }
  860. .u113251_input_option {
  861. font-size:14px;
  862. }
  863. #u113252_div {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:88px;
  869. height:40px;
  870. background:inherit;
  871. background-color:rgba(255, 255, 255, 0);
  872. border:none;
  873. border-top:0px;
  874. border-right:0px;
  875. border-bottom:0px;
  876. border-radius:0px;
  877. border-top-left-radius:0px;
  878. border-bottom-left-radius:0px;
  879. -moz-box-shadow:none;
  880. -webkit-box-shadow:none;
  881. box-shadow:none;
  882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  883. font-weight:400;
  884. font-style:normal;
  885. font-size:14px;
  886. color:#7F7F7F;
  887. text-align:right;
  888. }
  889. #u113252 {
  890. border-width:0px;
  891. position:absolute;
  892. left:582px;
  893. top:629px;
  894. width:88px;
  895. height:40px;
  896. display:flex;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:14px;
  901. color:#7F7F7F;
  902. text-align:right;
  903. }
  904. #u113252 .text {
  905. position:absolute;
  906. align-self:center;
  907. padding:5px 10px 5px 0px;
  908. box-sizing:border-box;
  909. width:100%;
  910. }
  911. #u113252_text {
  912. border-width:0px;
  913. white-space:nowrap;
  914. text-transform:none;
  915. }
  916. #u113253 {
  917. border-width:0px;
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:0px;
  922. height:0px;
  923. }
  924. #u113254_div {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:300px;
  930. height:40px;
  931. background:inherit;
  932. background-color:rgba(255, 255, 255, 1);
  933. box-sizing:border-box;
  934. border-width:1px;
  935. border-style:solid;
  936. border-color:rgba(215, 215, 215, 1);
  937. border-radius:4px;
  938. -moz-box-shadow:none;
  939. -webkit-box-shadow:none;
  940. box-shadow:none;
  941. font-size:14px;
  942. }
  943. #u113254 {
  944. border-width:0px;
  945. position:absolute;
  946. left:680px;
  947. top:629px;
  948. width:300px;
  949. height:40px;
  950. display:flex;
  951. font-size:14px;
  952. }
  953. #u113254 .text {
  954. position:absolute;
  955. align-self:center;
  956. padding:2px 2px 2px 2px;
  957. box-sizing:border-box;
  958. width:100%;
  959. }
  960. #u113254_text {
  961. border-width:0px;
  962. word-wrap:break-word;
  963. text-transform:none;
  964. visibility:hidden;
  965. }
  966. #u113255_input {
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:286px;
  971. height:31px;
  972. padding:2px 2px 2px 2px;
  973. font-family:'ArialMT', 'Arial', sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:14px;
  977. letter-spacing:normal;
  978. color:#AAAAAA;
  979. vertical-align:none;
  980. text-align:left;
  981. text-transform:none;
  982. background-color:transparent;
  983. border-color:transparent;
  984. }
  985. #u113255_input.disabled {
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:286px;
  990. height:31px;
  991. padding:2px 2px 2px 2px;
  992. font-family:'ArialMT', 'Arial', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. letter-spacing:normal;
  997. color:#AAAAAA;
  998. vertical-align:none;
  999. text-align:left;
  1000. text-transform:none;
  1001. background-color:transparent;
  1002. border-color:transparent;
  1003. }
  1004. #u113255_div {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:0px;
  1008. top:0px;
  1009. width:286px;
  1010. height:31px;
  1011. background:inherit;
  1012. background-color:rgba(255, 255, 255, 1);
  1013. border:none;
  1014. border-radius:0px;
  1015. -moz-box-shadow:none;
  1016. -webkit-box-shadow:none;
  1017. box-shadow:none;
  1018. font-size:14px;
  1019. color:#AAAAAA;
  1020. }
  1021. #u113255 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:688px;
  1025. top:632px;
  1026. width:286px;
  1027. height:31px;
  1028. display:flex;
  1029. font-size:14px;
  1030. color:#AAAAAA;
  1031. }
  1032. #u113255 .text {
  1033. position:absolute;
  1034. align-self:flex-start;
  1035. padding:2px 2px 2px 2px;
  1036. box-sizing:border-box;
  1037. width:100%;
  1038. }
  1039. #u113255_div.disabled {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:286px;
  1045. height:31px;
  1046. background:inherit;
  1047. background-color:rgba(240, 240, 240, 1);
  1048. border:none;
  1049. border-radius:0px;
  1050. -moz-box-shadow:none;
  1051. -webkit-box-shadow:none;
  1052. box-shadow:none;
  1053. font-size:14px;
  1054. color:#AAAAAA;
  1055. }
  1056. #u113255.disabled {
  1057. }
  1058. .u113255_input_option {
  1059. font-size:14px;
  1060. }
  1061. #u113256_div {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:0px;
  1065. top:0px;
  1066. width:88px;
  1067. height:40px;
  1068. background:inherit;
  1069. background-color:rgba(255, 255, 255, 0);
  1070. border:none;
  1071. border-top:0px;
  1072. border-right:0px;
  1073. border-bottom:0px;
  1074. border-radius:0px;
  1075. border-top-left-radius:0px;
  1076. border-bottom-left-radius:0px;
  1077. -moz-box-shadow:none;
  1078. -webkit-box-shadow:none;
  1079. box-shadow:none;
  1080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1081. font-weight:400;
  1082. font-style:normal;
  1083. font-size:14px;
  1084. color:#7F7F7F;
  1085. text-align:right;
  1086. }
  1087. #u113256 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:142px;
  1091. top:679px;
  1092. width:88px;
  1093. height:40px;
  1094. display:flex;
  1095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1096. font-weight:400;
  1097. font-style:normal;
  1098. font-size:14px;
  1099. color:#7F7F7F;
  1100. text-align:right;
  1101. }
  1102. #u113256 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:5px 10px 5px 0px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u113256_text {
  1110. border-width:0px;
  1111. white-space:nowrap;
  1112. text-transform:none;
  1113. }
  1114. #u113257 {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:0px;
  1120. height:0px;
  1121. }
  1122. #u113258_div {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:0px;
  1126. top:0px;
  1127. width:300px;
  1128. height:40px;
  1129. background:inherit;
  1130. background-color:rgba(255, 255, 255, 1);
  1131. box-sizing:border-box;
  1132. border-width:1px;
  1133. border-style:solid;
  1134. border-color:rgba(215, 215, 215, 1);
  1135. border-radius:4px;
  1136. -moz-box-shadow:none;
  1137. -webkit-box-shadow:none;
  1138. box-shadow:none;
  1139. font-size:14px;
  1140. }
  1141. #u113258 {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:240px;
  1145. top:679px;
  1146. width:300px;
  1147. height:40px;
  1148. display:flex;
  1149. font-size:14px;
  1150. }
  1151. #u113258 .text {
  1152. position:absolute;
  1153. align-self:center;
  1154. padding:2px 2px 2px 2px;
  1155. box-sizing:border-box;
  1156. width:100%;
  1157. }
  1158. #u113258_text {
  1159. border-width:0px;
  1160. word-wrap:break-word;
  1161. text-transform:none;
  1162. visibility:hidden;
  1163. }
  1164. #u113259_input {
  1165. position:absolute;
  1166. left:0px;
  1167. top:0px;
  1168. width:286px;
  1169. height:31px;
  1170. padding:2px 2px 2px 2px;
  1171. font-family:'ArialMT', 'Arial', sans-serif;
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:14px;
  1175. letter-spacing:normal;
  1176. color:#AAAAAA;
  1177. vertical-align:none;
  1178. text-align:left;
  1179. text-transform:none;
  1180. background-color:transparent;
  1181. border-color:transparent;
  1182. }
  1183. #u113259_input.disabled {
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:286px;
  1188. height:31px;
  1189. padding:2px 2px 2px 2px;
  1190. font-family:'ArialMT', 'Arial', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:14px;
  1194. letter-spacing:normal;
  1195. color:#AAAAAA;
  1196. vertical-align:none;
  1197. text-align:left;
  1198. text-transform:none;
  1199. background-color:transparent;
  1200. border-color:transparent;
  1201. }
  1202. #u113259_div {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:0px;
  1207. width:286px;
  1208. height:31px;
  1209. background:inherit;
  1210. background-color:rgba(255, 255, 255, 1);
  1211. border:none;
  1212. border-radius:0px;
  1213. -moz-box-shadow:none;
  1214. -webkit-box-shadow:none;
  1215. box-shadow:none;
  1216. font-size:14px;
  1217. color:#AAAAAA;
  1218. }
  1219. #u113259 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:248px;
  1223. top:682px;
  1224. width:286px;
  1225. height:31px;
  1226. display:flex;
  1227. font-size:14px;
  1228. color:#AAAAAA;
  1229. }
  1230. #u113259 .text {
  1231. position:absolute;
  1232. align-self:flex-start;
  1233. padding:2px 2px 2px 2px;
  1234. box-sizing:border-box;
  1235. width:100%;
  1236. }
  1237. #u113259_div.disabled {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:286px;
  1243. height:31px;
  1244. background:inherit;
  1245. background-color:rgba(240, 240, 240, 1);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. font-size:14px;
  1252. color:#AAAAAA;
  1253. }
  1254. #u113259.disabled {
  1255. }
  1256. .u113259_input_option {
  1257. font-size:14px;
  1258. }
  1259. #u113260_div {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:88px;
  1265. height:40px;
  1266. background:inherit;
  1267. background-color:rgba(255, 255, 255, 0);
  1268. border:none;
  1269. border-top:0px;
  1270. border-right:0px;
  1271. border-bottom:0px;
  1272. border-radius:0px;
  1273. border-top-left-radius:0px;
  1274. border-bottom-left-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1279. font-weight:400;
  1280. font-style:normal;
  1281. font-size:14px;
  1282. color:#7F7F7F;
  1283. text-align:right;
  1284. }
  1285. #u113260 {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:582px;
  1289. top:679px;
  1290. width:88px;
  1291. height:40px;
  1292. display:flex;
  1293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1294. font-weight:400;
  1295. font-style:normal;
  1296. font-size:14px;
  1297. color:#7F7F7F;
  1298. text-align:right;
  1299. }
  1300. #u113260 .text {
  1301. position:absolute;
  1302. align-self:center;
  1303. padding:5px 10px 5px 0px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u113260_text {
  1308. border-width:0px;
  1309. white-space:nowrap;
  1310. text-transform:none;
  1311. }
  1312. #u113261 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:0px;
  1318. height:0px;
  1319. }
  1320. #u113262_div {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:300px;
  1326. height:40px;
  1327. background:inherit;
  1328. background-color:rgba(255, 255, 255, 1);
  1329. box-sizing:border-box;
  1330. border-width:1px;
  1331. border-style:solid;
  1332. border-color:rgba(215, 215, 215, 1);
  1333. border-radius:4px;
  1334. -moz-box-shadow:none;
  1335. -webkit-box-shadow:none;
  1336. box-shadow:none;
  1337. font-size:14px;
  1338. }
  1339. #u113262 {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:680px;
  1343. top:679px;
  1344. width:300px;
  1345. height:40px;
  1346. display:flex;
  1347. font-size:14px;
  1348. }
  1349. #u113262 .text {
  1350. position:absolute;
  1351. align-self:center;
  1352. padding:2px 2px 2px 2px;
  1353. box-sizing:border-box;
  1354. width:100%;
  1355. }
  1356. #u113262_text {
  1357. border-width:0px;
  1358. word-wrap:break-word;
  1359. text-transform:none;
  1360. visibility:hidden;
  1361. }
  1362. #u113263_input {
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:286px;
  1367. height:31px;
  1368. padding:2px 2px 2px 2px;
  1369. font-family:'ArialMT', 'Arial', sans-serif;
  1370. font-weight:400;
  1371. font-style:normal;
  1372. font-size:14px;
  1373. letter-spacing:normal;
  1374. color:#AAAAAA;
  1375. vertical-align:none;
  1376. text-align:left;
  1377. text-transform:none;
  1378. background-color:transparent;
  1379. border-color:transparent;
  1380. }
  1381. #u113263_input.disabled {
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:286px;
  1386. height:31px;
  1387. padding:2px 2px 2px 2px;
  1388. font-family:'ArialMT', 'Arial', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:14px;
  1392. letter-spacing:normal;
  1393. color:#AAAAAA;
  1394. vertical-align:none;
  1395. text-align:left;
  1396. text-transform:none;
  1397. background-color:transparent;
  1398. border-color:transparent;
  1399. }
  1400. #u113263_div {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:286px;
  1406. height:31px;
  1407. background:inherit;
  1408. background-color:rgba(255, 255, 255, 1);
  1409. border:none;
  1410. border-radius:0px;
  1411. -moz-box-shadow:none;
  1412. -webkit-box-shadow:none;
  1413. box-shadow:none;
  1414. font-size:14px;
  1415. color:#AAAAAA;
  1416. }
  1417. #u113263 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:688px;
  1421. top:682px;
  1422. width:286px;
  1423. height:31px;
  1424. display:flex;
  1425. font-size:14px;
  1426. color:#AAAAAA;
  1427. }
  1428. #u113263 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:2px 2px 2px 2px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u113263_div.disabled {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:286px;
  1441. height:31px;
  1442. background:inherit;
  1443. background-color:rgba(240, 240, 240, 1);
  1444. border:none;
  1445. border-radius:0px;
  1446. -moz-box-shadow:none;
  1447. -webkit-box-shadow:none;
  1448. box-shadow:none;
  1449. font-size:14px;
  1450. color:#AAAAAA;
  1451. }
  1452. #u113263.disabled {
  1453. }
  1454. .u113263_input_option {
  1455. font-size:14px;
  1456. }
  1457. #u113264_div {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:0px;
  1461. top:0px;
  1462. width:74px;
  1463. height:40px;
  1464. background:inherit;
  1465. background-color:rgba(255, 255, 255, 0);
  1466. border:none;
  1467. border-top:0px;
  1468. border-right:0px;
  1469. border-bottom:0px;
  1470. border-radius:0px;
  1471. border-top-left-radius:0px;
  1472. border-bottom-left-radius:0px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. font-size:14px;
  1480. color:#7F7F7F;
  1481. text-align:right;
  1482. }
  1483. #u113264 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:156px;
  1487. top:729px;
  1488. width:74px;
  1489. height:40px;
  1490. display:flex;
  1491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1492. font-weight:400;
  1493. font-style:normal;
  1494. font-size:14px;
  1495. color:#7F7F7F;
  1496. text-align:right;
  1497. }
  1498. #u113264 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:5px 10px 5px 0px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u113264_text {
  1506. border-width:0px;
  1507. white-space:nowrap;
  1508. text-transform:none;
  1509. }
  1510. #u113265 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:0px;
  1516. height:0px;
  1517. }
  1518. #u113266_div {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:300px;
  1524. height:40px;
  1525. background:inherit;
  1526. background-color:rgba(255, 255, 255, 1);
  1527. box-sizing:border-box;
  1528. border-width:1px;
  1529. border-style:solid;
  1530. border-color:rgba(215, 215, 215, 1);
  1531. border-radius:4px;
  1532. -moz-box-shadow:none;
  1533. -webkit-box-shadow:none;
  1534. box-shadow:none;
  1535. font-size:14px;
  1536. }
  1537. #u113266 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:240px;
  1541. top:729px;
  1542. width:300px;
  1543. height:40px;
  1544. display:flex;
  1545. font-size:14px;
  1546. }
  1547. #u113266 .text {
  1548. position:absolute;
  1549. align-self:center;
  1550. padding:2px 2px 2px 2px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u113266_text {
  1555. border-width:0px;
  1556. word-wrap:break-word;
  1557. text-transform:none;
  1558. visibility:hidden;
  1559. }
  1560. #u113267_input {
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:286px;
  1565. height:31px;
  1566. padding:2px 2px 2px 2px;
  1567. font-family:'ArialMT', 'Arial', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:14px;
  1571. letter-spacing:normal;
  1572. color:#AAAAAA;
  1573. vertical-align:none;
  1574. text-align:left;
  1575. text-transform:none;
  1576. background-color:transparent;
  1577. border-color:transparent;
  1578. }
  1579. #u113267_input.disabled {
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:286px;
  1584. height:31px;
  1585. padding:2px 2px 2px 2px;
  1586. font-family:'ArialMT', 'Arial', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. font-size:14px;
  1590. letter-spacing:normal;
  1591. color:#AAAAAA;
  1592. vertical-align:none;
  1593. text-align:left;
  1594. text-transform:none;
  1595. background-color:transparent;
  1596. border-color:transparent;
  1597. }
  1598. #u113267_div {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:286px;
  1604. height:31px;
  1605. background:inherit;
  1606. background-color:rgba(255, 255, 255, 1);
  1607. border:none;
  1608. border-radius:0px;
  1609. -moz-box-shadow:none;
  1610. -webkit-box-shadow:none;
  1611. box-shadow:none;
  1612. font-size:14px;
  1613. color:#AAAAAA;
  1614. }
  1615. #u113267 {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:248px;
  1619. top:732px;
  1620. width:286px;
  1621. height:31px;
  1622. display:flex;
  1623. font-size:14px;
  1624. color:#AAAAAA;
  1625. }
  1626. #u113267 .text {
  1627. position:absolute;
  1628. align-self:flex-start;
  1629. padding:2px 2px 2px 2px;
  1630. box-sizing:border-box;
  1631. width:100%;
  1632. }
  1633. #u113267_div.disabled {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:286px;
  1639. height:31px;
  1640. background:inherit;
  1641. background-color:rgba(240, 240, 240, 1);
  1642. border:none;
  1643. border-radius:0px;
  1644. -moz-box-shadow:none;
  1645. -webkit-box-shadow:none;
  1646. box-shadow:none;
  1647. font-size:14px;
  1648. color:#AAAAAA;
  1649. }
  1650. #u113267.disabled {
  1651. }
  1652. .u113267_input_option {
  1653. font-size:14px;
  1654. }
  1655. #u113268_div {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:88px;
  1661. height:40px;
  1662. background:inherit;
  1663. background-color:rgba(255, 255, 255, 0);
  1664. border:none;
  1665. border-top:0px;
  1666. border-right:0px;
  1667. border-bottom:0px;
  1668. border-radius:0px;
  1669. border-top-left-radius:0px;
  1670. border-bottom-left-radius:0px;
  1671. -moz-box-shadow:none;
  1672. -webkit-box-shadow:none;
  1673. box-shadow:none;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:14px;
  1678. color:#7F7F7F;
  1679. text-align:right;
  1680. }
  1681. #u113268 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:582px;
  1685. top:729px;
  1686. width:88px;
  1687. height:40px;
  1688. display:flex;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. color:#7F7F7F;
  1694. text-align:right;
  1695. }
  1696. #u113268 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:5px 10px 5px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u113268_text {
  1704. border-width:0px;
  1705. white-space:nowrap;
  1706. text-transform:none;
  1707. }
  1708. #u113269 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u113270_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:300px;
  1722. height:40px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 1);
  1725. box-sizing:border-box;
  1726. border-width:1px;
  1727. border-style:solid;
  1728. border-color:rgba(215, 215, 215, 1);
  1729. border-radius:4px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-size:14px;
  1734. }
  1735. #u113270 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:680px;
  1739. top:729px;
  1740. width:300px;
  1741. height:40px;
  1742. display:flex;
  1743. font-size:14px;
  1744. }
  1745. #u113270 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 2px 2px 2px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u113270_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. visibility:hidden;
  1757. }
  1758. #u113271_input {
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:286px;
  1763. height:31px;
  1764. padding:2px 2px 2px 2px;
  1765. font-family:'ArialMT', 'Arial', sans-serif;
  1766. font-weight:400;
  1767. font-style:normal;
  1768. font-size:14px;
  1769. letter-spacing:normal;
  1770. color:#AAAAAA;
  1771. vertical-align:none;
  1772. text-align:left;
  1773. text-transform:none;
  1774. background-color:transparent;
  1775. border-color:transparent;
  1776. }
  1777. #u113271_input.disabled {
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:286px;
  1782. height:31px;
  1783. padding:2px 2px 2px 2px;
  1784. font-family:'ArialMT', 'Arial', sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:14px;
  1788. letter-spacing:normal;
  1789. color:#AAAAAA;
  1790. vertical-align:none;
  1791. text-align:left;
  1792. text-transform:none;
  1793. background-color:transparent;
  1794. border-color:transparent;
  1795. }
  1796. #u113271_div {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:286px;
  1802. height:31px;
  1803. background:inherit;
  1804. background-color:rgba(255, 255, 255, 1);
  1805. border:none;
  1806. border-radius:0px;
  1807. -moz-box-shadow:none;
  1808. -webkit-box-shadow:none;
  1809. box-shadow:none;
  1810. font-size:14px;
  1811. color:#AAAAAA;
  1812. }
  1813. #u113271 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:688px;
  1817. top:732px;
  1818. width:286px;
  1819. height:31px;
  1820. display:flex;
  1821. font-size:14px;
  1822. color:#AAAAAA;
  1823. }
  1824. #u113271 .text {
  1825. position:absolute;
  1826. align-self:flex-start;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u113271_div.disabled {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:286px;
  1837. height:31px;
  1838. background:inherit;
  1839. background-color:rgba(240, 240, 240, 1);
  1840. border:none;
  1841. border-radius:0px;
  1842. -moz-box-shadow:none;
  1843. -webkit-box-shadow:none;
  1844. box-shadow:none;
  1845. font-size:14px;
  1846. color:#AAAAAA;
  1847. }
  1848. #u113271.disabled {
  1849. }
  1850. .u113271_input_option {
  1851. font-size:14px;
  1852. }
  1853. #u113272_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:81px;
  1859. height:40px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 0);
  1862. border:none;
  1863. border-top:0px;
  1864. border-right:0px;
  1865. border-bottom:0px;
  1866. border-radius:0px;
  1867. border-top-left-radius:0px;
  1868. border-bottom-left-radius:0px;
  1869. -moz-box-shadow:none;
  1870. -webkit-box-shadow:none;
  1871. box-shadow:none;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:14px;
  1876. color:#7F7F7F;
  1877. text-align:right;
  1878. }
  1879. #u113272 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:149px;
  1883. top:779px;
  1884. width:81px;
  1885. height:40px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:14px;
  1891. color:#7F7F7F;
  1892. text-align:right;
  1893. }
  1894. #u113272 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:5px 10px 5px 0px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u113272_text {
  1902. border-width:0px;
  1903. white-space:nowrap;
  1904. text-transform:none;
  1905. }
  1906. #u113273 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:0px;
  1912. height:0px;
  1913. }
  1914. #u113274_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:740px;
  1920. height:80px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 1);
  1923. box-sizing:border-box;
  1924. border-width:1px;
  1925. border-style:solid;
  1926. border-color:rgba(201, 201, 201, 1);
  1927. border-radius:4px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. font-family:'Microsoft YaHei', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. color:#CCCCCC;
  1936. text-align:left;
  1937. }
  1938. #u113274 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:240px;
  1942. top:780px;
  1943. width:740px;
  1944. height:80px;
  1945. display:flex;
  1946. font-family:'Microsoft YaHei', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:14px;
  1950. color:#CCCCCC;
  1951. text-align:left;
  1952. }
  1953. #u113274 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 8px 2px 8px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u113274_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u113275_input {
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:710px;
  1971. height:38px;
  1972. padding:2px 2px 2px 2px;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:14px;
  1977. letter-spacing:normal;
  1978. color:#000000;
  1979. vertical-align:none;
  1980. text-align:left;
  1981. text-transform:none;
  1982. background-color:transparent;
  1983. border-color:transparent;
  1984. }
  1985. #u113275_input.disabled {
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:710px;
  1990. height:38px;
  1991. padding:2px 2px 2px 2px;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:14px;
  1996. letter-spacing:normal;
  1997. color:#000000;
  1998. vertical-align:none;
  1999. text-align:left;
  2000. text-transform:none;
  2001. background-color:transparent;
  2002. border-color:transparent;
  2003. }
  2004. #u113275_div {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:710px;
  2010. height:38px;
  2011. background:inherit;
  2012. background-color:rgba(255, 255, 255, 1);
  2013. border:none;
  2014. border-radius:0px;
  2015. -moz-box-shadow:none;
  2016. -webkit-box-shadow:none;
  2017. box-shadow:none;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:14px;
  2022. }
  2023. #u113275 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:248px;
  2027. top:781px;
  2028. width:710px;
  2029. height:38px;
  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. }
  2036. #u113275 .text {
  2037. position:absolute;
  2038. align-self:center;
  2039. padding:2px 2px 2px 2px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u113275_div.disabled {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:710px;
  2049. height:38px;
  2050. background:inherit;
  2051. background-color:rgba(240, 240, 240, 1);
  2052. border:none;
  2053. border-radius:0px;
  2054. -moz-box-shadow:none;
  2055. -webkit-box-shadow:none;
  2056. box-shadow:none;
  2057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:14px;
  2061. }
  2062. #u113275.disabled {
  2063. }
  2064. #u113276_div {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:325px;
  2070. height:60px;
  2071. background:inherit;
  2072. background-color:rgba(255, 255, 255, 0);
  2073. border:none;
  2074. border-left:0px;
  2075. border-top:0px;
  2076. border-right:0px;
  2077. border-radius:0px;
  2078. border-bottom-right-radius:0px;
  2079. border-bottom-left-radius:0px;
  2080. -moz-box-shadow:none;
  2081. -webkit-box-shadow:none;
  2082. box-shadow:none;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:14px;
  2087. line-height:30px;
  2088. }
  2089. #u113276 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:142px;
  2093. top:166px;
  2094. width:325px;
  2095. height:60px;
  2096. display:flex;
  2097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:14px;
  2101. line-height:30px;
  2102. }
  2103. #u113276 .text {
  2104. position:absolute;
  2105. align-self:flex-start;
  2106. padding:0px 0px 0px 0px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u113276_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. }
  2115. #u113277_img {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:120px;
  2121. height:80px;
  2122. }
  2123. #u113277 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:142px;
  2127. top:459px;
  2128. width:120px;
  2129. height:80px;
  2130. display:flex;
  2131. }
  2132. #u113277 .text {
  2133. position:absolute;
  2134. align-self:center;
  2135. padding:2px 2px 2px 2px;
  2136. box-sizing:border-box;
  2137. width:100%;
  2138. }
  2139. #u113277_text {
  2140. border-width:0px;
  2141. word-wrap:break-word;
  2142. text-transform:none;
  2143. }
  2144. #u113278_img {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:120px;
  2150. height:80px;
  2151. }
  2152. #u113278 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:284px;
  2156. top:459px;
  2157. width:120px;
  2158. height:80px;
  2159. display:flex;
  2160. }
  2161. #u113278 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 2px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u113278_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u113279_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:320px;
  2179. height:180px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 0);
  2182. border:none;
  2183. border-left:0px;
  2184. border-top:0px;
  2185. border-right:0px;
  2186. border-radius:0px;
  2187. border-bottom-right-radius:0px;
  2188. border-bottom-left-radius:0px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:14px;
  2196. line-height:30px;
  2197. }
  2198. #u113279 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:142px;
  2202. top:276px;
  2203. width:320px;
  2204. height:180px;
  2205. display:flex;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:14px;
  2210. line-height:30px;
  2211. }
  2212. #u113279 .text {
  2213. position:absolute;
  2214. align-self:flex-start;
  2215. padding:0px 0px 0px 0px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u113279_text {
  2220. border-width:0px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. }
  2224. #u113280_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:320px;
  2230. height:120px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 0);
  2233. border:none;
  2234. border-left:0px;
  2235. border-top:0px;
  2236. border-right:0px;
  2237. border-radius:0px;
  2238. border-bottom-right-radius:0px;
  2239. border-bottom-left-radius:0px;
  2240. -moz-box-shadow:none;
  2241. -webkit-box-shadow:none;
  2242. box-shadow:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:14px;
  2247. line-height:30px;
  2248. }
  2249. #u113280 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:462px;
  2253. top:276px;
  2254. width:320px;
  2255. height:120px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:14px;
  2261. line-height:30px;
  2262. }
  2263. #u113280 .text {
  2264. position:absolute;
  2265. align-self:flex-start;
  2266. padding:0px 0px 0px 0px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u113280_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. }
  2275. #u113281_div {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:320px;
  2281. height:120px;
  2282. background:inherit;
  2283. background-color:rgba(255, 255, 255, 0);
  2284. border:none;
  2285. border-left:0px;
  2286. border-top:0px;
  2287. border-right:0px;
  2288. border-radius:0px;
  2289. border-bottom-right-radius:0px;
  2290. border-bottom-left-radius:0px;
  2291. -moz-box-shadow:none;
  2292. -webkit-box-shadow:none;
  2293. box-shadow:none;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:14px;
  2298. line-height:30px;
  2299. }
  2300. #u113281 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:782px;
  2304. top:276px;
  2305. width:320px;
  2306. height:120px;
  2307. display:flex;
  2308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:14px;
  2312. line-height:30px;
  2313. }
  2314. #u113281 .text {
  2315. position:absolute;
  2316. align-self:flex-start;
  2317. padding:0px 0px 0px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u113281_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. }