styles.css 57 KB

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