styles.css 57 KB

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