styles.css 66 KB

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