styles.css 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u25321_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u25321 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u25321 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u25321_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u25322_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u25322 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u25322 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u25322_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u25323_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u25323 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u25323 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u25323_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u25324 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u25325_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u25325 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u25325 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u25325_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u25326_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u25326 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u25326 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u25326_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u25327_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u25327 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u25327 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u25327_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u25328 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u25329_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u25329 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u25329 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u25329_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u25330_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u25330 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u25330 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u25330_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u25331 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u25332_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u25332 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u25332 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u25332_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u25333_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u25333 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u25333 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u25333_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u25334 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u25335_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u25335 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u25335 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u25335_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u25336_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u25336 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u25336 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u25336_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u25337 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u25338_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u25338 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u25338 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u25338_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u25339_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u25339 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u25339 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u25339_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u25340 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u25341_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u25341 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u25341 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u25341_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u25342_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u25342 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u25342 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u25342_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u25343 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u25344_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u25344 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u25344 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u25344_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u25345_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u25345 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u25345 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u25345_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u25346 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u25347_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u25347 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u25347 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u25347_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u25348_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u25348 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u25348 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u25348_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u25349 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u25350_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u25350 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u25350 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u25350_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u25351_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u25351 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u25351 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u25351_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u25352 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u25353_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u25353 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u25353 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u25353_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u25354_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u25354 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u25354 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u25354_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u25355 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u25356_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u25356 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u25356 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u25356_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u25357_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u25357 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u25357 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u25357_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u25358 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u25359_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u25359 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u25359 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u25359_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u25360_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u25360 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u25360 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u25360_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u25361 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u25362_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u25362_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u25362_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u25362 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u25362 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u25362_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u25362.disabled {
  1276. }
  1277. .u25362_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u25363_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u25363 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u25363 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u25363_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u25364_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u25364 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u25364 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u25364_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u25365_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u25365 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u25365 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u25365_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u25366 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u25367_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u25367 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u25367 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u25367_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u25368_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u25368 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u25368 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u25368_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u25369_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u25369 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u25369 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u25369_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u25370_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u25370 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u25370 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u25370_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u25371_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u25371 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u25371 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u25371_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u25372 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u25373_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u25373 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u25373 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u25373_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u25374_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u25374 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u25374 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u25374_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u25375_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1480px;
  1648. height:1200px;
  1649. background:inherit;
  1650. background-color:rgba(242, 242, 242, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u25375 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:120px;
  1661. top:50px;
  1662. width:1480px;
  1663. height:1200px;
  1664. display:flex;
  1665. }
  1666. #u25375 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u25375_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u25376_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:1258px;
  1685. height:1180px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 1);
  1688. box-sizing:border-box;
  1689. border-width:1px;
  1690. border-style:solid;
  1691. border-color:rgba(242, 242, 242, 1);
  1692. border-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. }
  1697. #u25376 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:331px;
  1701. top:50px;
  1702. width:1258px;
  1703. height:1180px;
  1704. display:flex;
  1705. }
  1706. #u25376 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u25376_text {
  1714. border-width:0px;
  1715. word-wrap:break-word;
  1716. text-transform:none;
  1717. visibility:hidden;
  1718. }
  1719. #u25377_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:60px;
  1725. height:30px;
  1726. background:inherit;
  1727. background-color:rgba(24, 144, 255, 1);
  1728. border:none;
  1729. border-radius:4px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:14px;
  1737. color:#FFFFFF;
  1738. }
  1739. #u25377 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:650px;
  1743. top:323px;
  1744. width:60px;
  1745. height:30px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:14px;
  1751. color:#FFFFFF;
  1752. }
  1753. #u25377 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 2px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u25377_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. }
  1765. #u25378_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:85px;
  1771. height:40px;
  1772. background:inherit;
  1773. background-color:rgba(255, 255, 255, 0);
  1774. border:none;
  1775. border-left:0px;
  1776. border-top:0px;
  1777. border-right:0px;
  1778. border-radius:0px;
  1779. border-bottom-right-radius:0px;
  1780. border-bottom-left-radius:0px;
  1781. -moz-box-shadow:none;
  1782. -webkit-box-shadow:none;
  1783. box-shadow:none;
  1784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:14px;
  1788. color:#000000;
  1789. line-height:40px;
  1790. }
  1791. #u25378 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:650px;
  1795. top:119px;
  1796. width:85px;
  1797. height:40px;
  1798. display:flex;
  1799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1800. font-weight:400;
  1801. font-style:normal;
  1802. font-size:14px;
  1803. color:#000000;
  1804. line-height:40px;
  1805. }
  1806. #u25378 .text {
  1807. position:absolute;
  1808. align-self:flex-start;
  1809. padding:0px 0px 0px 0px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u25378_text {
  1814. border-width:0px;
  1815. white-space:nowrap;
  1816. text-transform:none;
  1817. }
  1818. #u25379_div {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:109px;
  1824. height:40px;
  1825. background:inherit;
  1826. background-color:rgba(255, 255, 255, 0);
  1827. border:none;
  1828. border-top:0px;
  1829. border-right:0px;
  1830. border-bottom:0px;
  1831. border-radius:0px;
  1832. border-top-left-radius:0px;
  1833. border-bottom-left-radius:0px;
  1834. -moz-box-shadow:none;
  1835. -webkit-box-shadow:none;
  1836. box-shadow:none;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:14px;
  1841. color:#7F7F7F;
  1842. }
  1843. #u25379 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:650px;
  1847. top:163px;
  1848. width:109px;
  1849. height:40px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. color:#7F7F7F;
  1856. }
  1857. #u25379 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:5px 10px 5px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u25379_text {
  1865. border-width:0px;
  1866. white-space:nowrap;
  1867. text-transform:none;
  1868. }
  1869. #u25380 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:0px;
  1875. height:0px;
  1876. }
  1877. #u25381_div {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:543px;
  1883. height:40px;
  1884. background:inherit;
  1885. background-color:rgba(255, 255, 255, 1);
  1886. box-sizing:border-box;
  1887. border-width:1px;
  1888. border-style:solid;
  1889. border-color:rgba(215, 215, 215, 1);
  1890. border-radius:4px;
  1891. -moz-box-shadow:none;
  1892. -webkit-box-shadow:none;
  1893. box-shadow:none;
  1894. font-size:14px;
  1895. }
  1896. #u25381 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:759px;
  1900. top:163px;
  1901. width:543px;
  1902. height:40px;
  1903. display:flex;
  1904. font-size:14px;
  1905. }
  1906. #u25381 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 2px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u25381_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. visibility:hidden;
  1918. }
  1919. #u25382_input {
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:519px;
  1924. height:31px;
  1925. padding:2px 2px 2px 2px;
  1926. font-family:'ArialMT', 'Arial', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:14px;
  1930. letter-spacing:normal;
  1931. color:#AAAAAA;
  1932. vertical-align:none;
  1933. text-align:left;
  1934. text-transform:none;
  1935. background-color:transparent;
  1936. border-color:transparent;
  1937. }
  1938. #u25382_input.disabled {
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:519px;
  1943. height:31px;
  1944. padding:2px 2px 2px 2px;
  1945. font-family:'ArialMT', 'Arial', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:14px;
  1949. letter-spacing:normal;
  1950. color:#AAAAAA;
  1951. vertical-align:none;
  1952. text-align:left;
  1953. text-transform:none;
  1954. background-color:transparent;
  1955. border-color:transparent;
  1956. }
  1957. #u25382_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:519px;
  1963. height:31px;
  1964. background:inherit;
  1965. background-color:rgba(255, 255, 255, 1);
  1966. border:none;
  1967. border-radius:0px;
  1968. -moz-box-shadow:none;
  1969. -webkit-box-shadow:none;
  1970. box-shadow:none;
  1971. font-size:14px;
  1972. color:#AAAAAA;
  1973. }
  1974. #u25382 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:773px;
  1978. top:166px;
  1979. width:519px;
  1980. height:31px;
  1981. display:flex;
  1982. font-size:14px;
  1983. color:#AAAAAA;
  1984. }
  1985. #u25382 .text {
  1986. position:absolute;
  1987. align-self:flex-start;
  1988. padding:2px 2px 2px 2px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u25382_div.disabled {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:519px;
  1998. height:31px;
  1999. background:inherit;
  2000. background-color:rgba(240, 240, 240, 1);
  2001. border:none;
  2002. border-radius:0px;
  2003. -moz-box-shadow:none;
  2004. -webkit-box-shadow:none;
  2005. box-shadow:none;
  2006. font-size:14px;
  2007. color:#AAAAAA;
  2008. }
  2009. #u25382.disabled {
  2010. }
  2011. .u25382_input_option {
  2012. font-size:14px;
  2013. }
  2014. #u25383_div {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:151px;
  2020. height:40px;
  2021. background:inherit;
  2022. background-color:rgba(255, 255, 255, 0);
  2023. border:none;
  2024. border-top:0px;
  2025. border-right:0px;
  2026. border-bottom:0px;
  2027. border-radius:0px;
  2028. border-top-left-radius:0px;
  2029. border-bottom-left-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:14px;
  2037. color:#7F7F7F;
  2038. }
  2039. #u25383 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:1311px;
  2043. top:163px;
  2044. width:151px;
  2045. height:40px;
  2046. display:flex;
  2047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2048. font-weight:400;
  2049. font-style:normal;
  2050. font-size:14px;
  2051. color:#7F7F7F;
  2052. }
  2053. #u25383 .text {
  2054. position:absolute;
  2055. align-self:center;
  2056. padding:5px 10px 5px 0px;
  2057. box-sizing:border-box;
  2058. width:100%;
  2059. }
  2060. #u25383_text {
  2061. border-width:0px;
  2062. white-space:nowrap;
  2063. text-transform:none;
  2064. }
  2065. #u25384 label {
  2066. left:0px;
  2067. width:100%;
  2068. }
  2069. #u25384_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:3px;
  2074. width:12px;
  2075. height:12px;
  2076. }
  2077. #u25384 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:768px;
  2081. top:274px;
  2082. width:162px;
  2083. height:18px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. }
  2089. #u25384 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:0px 2px 0px 2px;
  2093. box-sizing:border-box;
  2094. }
  2095. #u25384_img.selected {
  2096. }
  2097. #u25384.selected {
  2098. }
  2099. #u25384_img.disabled {
  2100. }
  2101. #u25384.disabled {
  2102. }
  2103. #u25384_img.selectedDisabled {
  2104. }
  2105. #u25384.selectedDisabled {
  2106. }
  2107. #u25384_text {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:14px;
  2111. top:0px;
  2112. width:146px;
  2113. word-wrap:break-word;
  2114. text-transform:none;
  2115. }
  2116. #u25384_input {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:0px;
  2122. height:0px;
  2123. opacity:0;
  2124. }
  2125. #u25385_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:85px;
  2131. height:40px;
  2132. background:inherit;
  2133. background-color:rgba(255, 255, 255, 0);
  2134. border:none;
  2135. border-left:0px;
  2136. border-top:0px;
  2137. border-right:0px;
  2138. border-radius:0px;
  2139. border-bottom-right-radius:0px;
  2140. border-bottom-left-radius:0px;
  2141. -moz-box-shadow:none;
  2142. -webkit-box-shadow:none;
  2143. box-shadow:none;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:14px;
  2148. color:#000000;
  2149. line-height:40px;
  2150. }
  2151. #u25385 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:650px;
  2155. top:223px;
  2156. width:85px;
  2157. height:40px;
  2158. display:flex;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:14px;
  2163. color:#000000;
  2164. line-height:40px;
  2165. }
  2166. #u25385 .text {
  2167. position:absolute;
  2168. align-self:flex-start;
  2169. padding:0px 0px 0px 0px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u25385_text {
  2174. border-width:0px;
  2175. white-space:nowrap;
  2176. text-transform:none;
  2177. }
  2178. #u25386_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:95px;
  2184. height:40px;
  2185. background:inherit;
  2186. background-color:rgba(255, 255, 255, 0);
  2187. border:none;
  2188. border-top:0px;
  2189. border-right:0px;
  2190. border-bottom:0px;
  2191. border-radius:0px;
  2192. border-top-left-radius:0px;
  2193. border-bottom-left-radius:0px;
  2194. -moz-box-shadow:none;
  2195. -webkit-box-shadow:none;
  2196. box-shadow:none;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:14px;
  2201. color:#7F7F7F;
  2202. }
  2203. #u25386 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:650px;
  2207. top:263px;
  2208. width:95px;
  2209. height:40px;
  2210. display:flex;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:14px;
  2215. color:#7F7F7F;
  2216. }
  2217. #u25386 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:5px 10px 5px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u25386_text {
  2225. border-width:0px;
  2226. white-space:nowrap;
  2227. text-transform:none;
  2228. }
  2229. #u25387_div {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:85px;
  2235. height:50px;
  2236. background:inherit;
  2237. background-color:rgba(255, 255, 255, 0);
  2238. border:none;
  2239. border-left:0px;
  2240. border-top:0px;
  2241. border-right:0px;
  2242. border-radius:0px;
  2243. border-bottom-right-radius:0px;
  2244. border-bottom-left-radius:0px;
  2245. -moz-box-shadow:none;
  2246. -webkit-box-shadow:none;
  2247. box-shadow:none;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:14px;
  2252. line-height:40px;
  2253. }
  2254. #u25387 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:860px;
  2258. top:-307px;
  2259. width:85px;
  2260. height:50px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:14px;
  2266. line-height:40px;
  2267. }
  2268. #u25387 .text {
  2269. position:absolute;
  2270. align-self:center;
  2271. padding:0px 0px 0px 0px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u25387_text {
  2276. border-width:0px;
  2277. white-space:nowrap;
  2278. text-transform:none;
  2279. }
  2280. #u25388_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:359px;
  2286. height:27px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 0);
  2289. border:none;
  2290. border-top:0px;
  2291. border-right:0px;
  2292. border-bottom:0px;
  2293. border-radius:0px;
  2294. border-top-left-radius:0px;
  2295. border-bottom-left-radius:0px;
  2296. -moz-box-shadow:none;
  2297. -webkit-box-shadow:none;
  2298. box-shadow:none;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:12px;
  2303. color:#1890FF;
  2304. }
  2305. #u25388 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:1044px;
  2309. top:-207px;
  2310. width:359px;
  2311. height:27px;
  2312. display:flex;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:12px;
  2317. color:#1890FF;
  2318. }
  2319. #u25388 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:5px 10px 5px 0px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u25388_text {
  2327. border-width:0px;
  2328. white-space:nowrap;
  2329. text-transform:none;
  2330. }
  2331. #u25389 label {
  2332. left:0px;
  2333. width:100%;
  2334. }
  2335. #u25389_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:3px;
  2340. width:12px;
  2341. height:12px;
  2342. }
  2343. #u25389 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:993px;
  2347. top:-203px;
  2348. width:162px;
  2349. height:18px;
  2350. display:flex;
  2351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. }
  2355. #u25389 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:0px 2px 0px 2px;
  2359. box-sizing:border-box;
  2360. }
  2361. #u25389_img.selected {
  2362. }
  2363. #u25389.selected {
  2364. }
  2365. #u25389_img.disabled {
  2366. }
  2367. #u25389.disabled {
  2368. }
  2369. #u25389_img.selectedDisabled {
  2370. }
  2371. #u25389.selectedDisabled {
  2372. }
  2373. #u25389_text {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:14px;
  2377. top:0px;
  2378. width:146px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u25389_input {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:0px;
  2388. height:0px;
  2389. opacity:0;
  2390. }
  2391. #u25390_div {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:85px;
  2397. height:40px;
  2398. background:inherit;
  2399. background-color:rgba(255, 255, 255, 0);
  2400. border:none;
  2401. border-left:0px;
  2402. border-top:0px;
  2403. border-right:0px;
  2404. border-radius:0px;
  2405. border-bottom-right-radius:0px;
  2406. border-bottom-left-radius:0px;
  2407. -moz-box-shadow:none;
  2408. -webkit-box-shadow:none;
  2409. box-shadow:none;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:14px;
  2414. color:#000000;
  2415. line-height:40px;
  2416. }
  2417. #u25390 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:869px;
  2421. top:-254px;
  2422. width:85px;
  2423. height:40px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:14px;
  2429. color:#000000;
  2430. line-height:40px;
  2431. }
  2432. #u25390 .text {
  2433. position:absolute;
  2434. align-self:flex-start;
  2435. padding:0px 0px 0px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u25390_text {
  2440. border-width:0px;
  2441. white-space:nowrap;
  2442. text-transform:none;
  2443. }
  2444. #u25391_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:123px;
  2450. height:40px;
  2451. background:inherit;
  2452. background-color:rgba(255, 255, 255, 0);
  2453. border:none;
  2454. border-top:0px;
  2455. border-right:0px;
  2456. border-bottom:0px;
  2457. border-radius:0px;
  2458. border-top-left-radius:0px;
  2459. border-bottom-left-radius:0px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. color:#7F7F7F;
  2468. }
  2469. #u25391 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:875px;
  2473. top:-214px;
  2474. width:123px;
  2475. height:40px;
  2476. display:flex;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:14px;
  2481. color:#7F7F7F;
  2482. }
  2483. #u25391 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:5px 10px 5px 0px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u25391_text {
  2491. border-width:0px;
  2492. white-space:nowrap;
  2493. text-transform:none;
  2494. }
  2495. #u25393_div {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:200px;
  2501. height:1180px;
  2502. background:inherit;
  2503. background-color:rgba(255, 255, 255, 1);
  2504. border:none;
  2505. border-radius:0px;
  2506. -moz-box-shadow:none;
  2507. -webkit-box-shadow:none;
  2508. box-shadow:none;
  2509. }
  2510. #u25393 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:120px;
  2514. top:50px;
  2515. width:200px;
  2516. height:1180px;
  2517. display:flex;
  2518. }
  2519. #u25393 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:2px 2px 2px 2px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u25393_text {
  2527. border-width:0px;
  2528. word-wrap:break-word;
  2529. text-transform:none;
  2530. visibility:hidden;
  2531. }
  2532. #u25394_div {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:200px;
  2538. height:60px;
  2539. background:inherit;
  2540. background-color:rgba(224, 231, 247, 1);
  2541. border:none;
  2542. border-radius:0px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2547. font-weight:500;
  2548. font-style:normal;
  2549. font-size:18px;
  2550. }
  2551. #u25394 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:120px;
  2555. top:50px;
  2556. width:200px;
  2557. height:60px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2560. font-weight:500;
  2561. font-style:normal;
  2562. font-size:18px;
  2563. }
  2564. #u25394 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:0px 0px 0px 20px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u25394_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. }
  2576. #u25395_div {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:65px;
  2582. height:22px;
  2583. background:inherit;
  2584. background-color:rgba(255, 255, 255, 0);
  2585. border:none;
  2586. border-radius:0px;
  2587. -moz-box-shadow:none;
  2588. -webkit-box-shadow:none;
  2589. box-shadow:none;
  2590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2591. font-weight:400;
  2592. font-style:normal;
  2593. font-size:16px;
  2594. }
  2595. #u25395 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:147px;
  2599. top:310px;
  2600. width:65px;
  2601. height:22px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:16px;
  2607. }
  2608. #u25395 .text {
  2609. position:absolute;
  2610. align-self:flex-start;
  2611. padding:0px 0px 0px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u25395_text {
  2616. border-width:0px;
  2617. white-space:nowrap;
  2618. text-transform:none;
  2619. }
  2620. #u25396_div {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:65px;
  2626. height:22px;
  2627. background:inherit;
  2628. background-color:rgba(255, 255, 255, 0);
  2629. border:none;
  2630. border-radius:0px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:16px;
  2638. }
  2639. #u25396 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:147px;
  2643. top:352px;
  2644. width:65px;
  2645. height:22px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:16px;
  2651. }
  2652. #u25396 .text {
  2653. position:absolute;
  2654. align-self:flex-start;
  2655. padding:0px 0px 0px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u25396_text {
  2660. border-width:0px;
  2661. white-space:nowrap;
  2662. text-transform:none;
  2663. }
  2664. #u25397_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:65px;
  2670. height:22px;
  2671. background:inherit;
  2672. background-color:rgba(255, 255, 255, 0);
  2673. border:none;
  2674. border-radius:0px;
  2675. -moz-box-shadow:none;
  2676. -webkit-box-shadow:none;
  2677. box-shadow:none;
  2678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2679. font-weight:400;
  2680. font-style:normal;
  2681. font-size:16px;
  2682. }
  2683. #u25397 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:147px;
  2687. top:170px;
  2688. width:65px;
  2689. height:22px;
  2690. display:flex;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:16px;
  2695. }
  2696. #u25397 .text {
  2697. position:absolute;
  2698. align-self:flex-start;
  2699. padding:0px 0px 0px 0px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u25397_text {
  2704. border-width:0px;
  2705. white-space:nowrap;
  2706. text-transform:none;
  2707. }
  2708. #u25398_div {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:65px;
  2714. height:22px;
  2715. background:inherit;
  2716. background-color:rgba(255, 255, 255, 0);
  2717. border:none;
  2718. border-radius:0px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:16px;
  2726. }
  2727. #u25398 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:147px;
  2731. top:212px;
  2732. width:65px;
  2733. height:22px;
  2734. display:flex;
  2735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. font-size:16px;
  2739. }
  2740. #u25398 .text {
  2741. position:absolute;
  2742. align-self:flex-start;
  2743. padding:0px 0px 0px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u25398_text {
  2748. border-width:0px;
  2749. white-space:nowrap;
  2750. text-transform:none;
  2751. }
  2752. #u25399_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:201px;
  2758. height:2px;
  2759. }
  2760. #u25399 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:120px;
  2764. top:253px;
  2765. width:200px;
  2766. height:1px;
  2767. display:flex;
  2768. }
  2769. #u25399 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u25399_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u25400_div {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:49px;
  2788. height:17px;
  2789. background:inherit;
  2790. background-color:rgba(255, 255, 255, 0);
  2791. border:none;
  2792. border-radius:0px;
  2793. -moz-box-shadow:none;
  2794. -webkit-box-shadow:none;
  2795. box-shadow:none;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:12px;
  2800. color:#AAAAAA;
  2801. }
  2802. #u25400 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:147px;
  2806. top:130px;
  2807. width:49px;
  2808. height:17px;
  2809. display:flex;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. color:#AAAAAA;
  2815. }
  2816. #u25400 .text {
  2817. position:absolute;
  2818. align-self:flex-start;
  2819. padding:0px 0px 0px 0px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u25400_text {
  2824. border-width:0px;
  2825. white-space:nowrap;
  2826. text-transform:none;
  2827. }
  2828. #u25401_div {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:97px;
  2834. height:22px;
  2835. background:inherit;
  2836. background-color:rgba(255, 255, 255, 0);
  2837. border:none;
  2838. border-radius:0px;
  2839. -moz-box-shadow:none;
  2840. -webkit-box-shadow:none;
  2841. box-shadow:none;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:16px;
  2846. }
  2847. #u25401 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:147px;
  2851. top:455px;
  2852. width:97px;
  2853. height:22px;
  2854. display:flex;
  2855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:16px;
  2859. }
  2860. #u25401 .text {
  2861. position:absolute;
  2862. align-self:flex-start;
  2863. padding:0px 0px 0px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u25401_text {
  2868. border-width:0px;
  2869. white-space:nowrap;
  2870. text-transform:none;
  2871. }
  2872. #u25402_div {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:65px;
  2878. height:22px;
  2879. background:inherit;
  2880. background-color:rgba(255, 255, 255, 0);
  2881. border:none;
  2882. border-radius:0px;
  2883. -moz-box-shadow:none;
  2884. -webkit-box-shadow:none;
  2885. box-shadow:none;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:16px;
  2890. }
  2891. #u25402 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:147px;
  2895. top:497px;
  2896. width:65px;
  2897. height:22px;
  2898. display:flex;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:16px;
  2903. }
  2904. #u25402 .text {
  2905. position:absolute;
  2906. align-self:flex-start;
  2907. padding:0px 0px 0px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u25402_text {
  2912. border-width:0px;
  2913. white-space:nowrap;
  2914. text-transform:none;
  2915. }
  2916. #u25403_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:201px;
  2922. height:2px;
  2923. }
  2924. #u25403 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:120px;
  2928. top:394px;
  2929. width:200px;
  2930. height:1px;
  2931. display:flex;
  2932. }
  2933. #u25403 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u25403_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u25404_div {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:49px;
  2952. height:17px;
  2953. background:inherit;
  2954. background-color:rgba(255, 255, 255, 0);
  2955. border:none;
  2956. border-radius:0px;
  2957. -moz-box-shadow:none;
  2958. -webkit-box-shadow:none;
  2959. box-shadow:none;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:12px;
  2964. color:#AAAAAA;
  2965. }
  2966. #u25404 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:147px;
  2970. top:415px;
  2971. width:49px;
  2972. height:17px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#AAAAAA;
  2979. }
  2980. #u25404 .text {
  2981. position:absolute;
  2982. align-self:flex-start;
  2983. padding:0px 0px 0px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u25404_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u25405_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:49px;
  2998. height:17px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 0);
  3001. border:none;
  3002. border-radius:0px;
  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:12px;
  3010. color:#AAAAAA;
  3011. }
  3012. #u25405 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:147px;
  3016. top:273px;
  3017. width:49px;
  3018. height:17px;
  3019. display:flex;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:12px;
  3024. color:#AAAAAA;
  3025. }
  3026. #u25405 .text {
  3027. position:absolute;
  3028. align-self:flex-start;
  3029. padding:0px 0px 0px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u25405_text {
  3034. border-width:0px;
  3035. white-space:nowrap;
  3036. text-transform:none;
  3037. }
  3038. #u25406_div {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:80px;
  3044. height:40px;
  3045. background:inherit;
  3046. background-color:rgba(255, 255, 255, 0);
  3047. border:none;
  3048. border-left:0px;
  3049. border-top:0px;
  3050. border-right:0px;
  3051. border-radius:0px;
  3052. border-bottom-right-radius:0px;
  3053. border-bottom-left-radius:0px;
  3054. -moz-box-shadow:none;
  3055. -webkit-box-shadow:none;
  3056. box-shadow:none;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:18px;
  3061. color:#000000;
  3062. line-height:40px;
  3063. }
  3064. #u25406 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:650px;
  3068. top:70px;
  3069. width:80px;
  3070. height:40px;
  3071. display:flex;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:18px;
  3076. color:#000000;
  3077. line-height:40px;
  3078. }
  3079. #u25406 .text {
  3080. position:absolute;
  3081. align-self:flex-start;
  3082. padding:0px 0px 0px 0px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u25406_text {
  3087. border-width:0px;
  3088. white-space:nowrap;
  3089. text-transform:none;
  3090. }
  3091. #u25407 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:0px;
  3097. height:0px;
  3098. }
  3099. #u25408_div {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:300px;
  3105. height:1180px;
  3106. background:inherit;
  3107. background-color:rgba(240, 242, 245, 1);
  3108. border:none;
  3109. border-radius:0px;
  3110. -moz-box-shadow:none;
  3111. -webkit-box-shadow:none;
  3112. box-shadow:none;
  3113. }
  3114. #u25408 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:330px;
  3118. top:50px;
  3119. width:300px;
  3120. height:1180px;
  3121. display:flex;
  3122. }
  3123. #u25408 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 2px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u25408_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u25409 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:0px;
  3142. height:0px;
  3143. }
  3144. #u25410_div {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:260px;
  3150. height:40px;
  3151. background:inherit;
  3152. background-color:rgba(255, 255, 255, 1);
  3153. box-sizing:border-box;
  3154. border-width:1px;
  3155. border-style:solid;
  3156. border-color:rgba(242, 242, 242, 1);
  3157. border-radius:4px;
  3158. -moz-box-shadow:none;
  3159. -webkit-box-shadow:none;
  3160. box-shadow:none;
  3161. font-family:'Microsoft YaHei', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. font-size:14px;
  3165. color:#CCCCCC;
  3166. text-align:left;
  3167. }
  3168. #u25410 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:350px;
  3172. top:130px;
  3173. width:260px;
  3174. height:40px;
  3175. display:flex;
  3176. font-family:'Microsoft YaHei', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:14px;
  3180. color:#CCCCCC;
  3181. text-align:left;
  3182. }
  3183. #u25410 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 8px 2px 8px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u25410_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. visibility:hidden;
  3195. }
  3196. #u25411_input {
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:217px;
  3201. height:33px;
  3202. padding:2px 2px 2px 2px;
  3203. font-family:'Microsoft YaHei', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:14px;
  3207. letter-spacing:normal;
  3208. color:#000000;
  3209. vertical-align:none;
  3210. text-align:left;
  3211. text-transform:none;
  3212. background-color:transparent;
  3213. border-color:transparent;
  3214. }
  3215. #u25411_input.disabled {
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:217px;
  3220. height:33px;
  3221. padding:2px 2px 2px 2px;
  3222. font-family:'Microsoft YaHei', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. letter-spacing:normal;
  3227. color:#000000;
  3228. vertical-align:none;
  3229. text-align:left;
  3230. text-transform:none;
  3231. background-color:transparent;
  3232. border-color:transparent;
  3233. }
  3234. #u25411_div {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:217px;
  3240. height:33px;
  3241. background:inherit;
  3242. background-color:rgba(255, 255, 255, 1);
  3243. border:none;
  3244. border-radius:0px;
  3245. -moz-box-shadow:none;
  3246. -webkit-box-shadow:none;
  3247. box-shadow:none;
  3248. font-family:'Microsoft YaHei', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:14px;
  3252. }
  3253. #u25411 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:358px;
  3257. top:131px;
  3258. width:217px;
  3259. height:33px;
  3260. display:flex;
  3261. font-family:'Microsoft YaHei', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:14px;
  3265. }
  3266. #u25411 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 2px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u25411_div.disabled {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:217px;
  3279. height:33px;
  3280. background:inherit;
  3281. background-color:rgba(240, 240, 240, 1);
  3282. border:none;
  3283. border-radius:0px;
  3284. -moz-box-shadow:none;
  3285. -webkit-box-shadow:none;
  3286. box-shadow:none;
  3287. font-family:'Microsoft YaHei', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:14px;
  3291. }
  3292. #u25411.disabled {
  3293. }
  3294. #u25412_img {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:14px;
  3300. height:14px;
  3301. }
  3302. #u25412 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:582px;
  3306. top:142px;
  3307. width:14px;
  3308. height:14px;
  3309. display:flex;
  3310. }
  3311. #u25412 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 2px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u25412_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u25413 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:0px;
  3330. height:0px;
  3331. }
  3332. #u25414_div {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:260px;
  3338. height:60px;
  3339. background:inherit;
  3340. background-color:rgba(0, 153, 255, 0.0980392156862745);
  3341. border:none;
  3342. border-radius:4px;
  3343. -moz-box-shadow:none;
  3344. -webkit-box-shadow:none;
  3345. box-shadow:none;
  3346. font-family:'Microsoft YaHei', sans-serif;
  3347. font-weight:400;
  3348. font-style:normal;
  3349. font-size:14px;
  3350. color:#CCCCCC;
  3351. text-align:left;
  3352. }
  3353. #u25414 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:350px;
  3357. top:190px;
  3358. width:260px;
  3359. height:60px;
  3360. display:flex;
  3361. font-family:'Microsoft YaHei', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:14px;
  3365. color:#CCCCCC;
  3366. text-align:left;
  3367. }
  3368. #u25414 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 8px 2px 8px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u25414_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u25415_div {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:63px;
  3387. height:20px;
  3388. background:inherit;
  3389. background-color:rgba(51, 51, 51, 0);
  3390. border:none;
  3391. border-radius:4px;
  3392. -moz-box-shadow:none;
  3393. -webkit-box-shadow:none;
  3394. box-shadow:none;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:14px;
  3399. text-align:left;
  3400. }
  3401. #u25415 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:367px;
  3405. top:213px;
  3406. width:63px;
  3407. height:20px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:14px;
  3413. text-align:left;
  3414. }
  3415. #u25415 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:0px 0px 0px 0px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u25415_text {
  3423. border-width:0px;
  3424. white-space:nowrap;
  3425. text-transform:none;
  3426. }
  3427. #u25416 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:0px;
  3433. height:0px;
  3434. }
  3435. #u25417_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:260px;
  3441. height:60px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3444. border:none;
  3445. border-radius:4px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. font-family:'Microsoft YaHei', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:14px;
  3453. color:#CCCCCC;
  3454. text-align:left;
  3455. }
  3456. #u25417 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:350px;
  3460. top:370px;
  3461. width:260px;
  3462. height:60px;
  3463. display:flex;
  3464. font-family:'Microsoft YaHei', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:14px;
  3468. color:#CCCCCC;
  3469. text-align:left;
  3470. }
  3471. #u25417 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 8px 2px 8px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u25417_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u25418_div {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:65px;
  3490. height:20px;
  3491. background:inherit;
  3492. background-color:rgba(51, 51, 51, 0);
  3493. border:none;
  3494. border-radius:4px;
  3495. -moz-box-shadow:none;
  3496. -webkit-box-shadow:none;
  3497. box-shadow:none;
  3498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:14px;
  3502. text-align:left;
  3503. }
  3504. #u25418 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:365px;
  3508. top:393px;
  3509. width:65px;
  3510. height:20px;
  3511. display:flex;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:14px;
  3516. text-align:left;
  3517. }
  3518. #u25418 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:0px 0px 0px 0px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u25418_text {
  3526. border-width:0px;
  3527. white-space:nowrap;
  3528. text-transform:none;
  3529. }
  3530. #u25419 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:0px;
  3536. height:0px;
  3537. }
  3538. #u25420_div {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:260px;
  3544. height:60px;
  3545. background:inherit;
  3546. background-color:rgba(0, 153, 255, 0);
  3547. border:none;
  3548. border-radius:4px;
  3549. -moz-box-shadow:none;
  3550. -webkit-box-shadow:none;
  3551. box-shadow:none;
  3552. font-family:'Microsoft YaHei', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:14px;
  3556. color:#CCCCCC;
  3557. text-align:left;
  3558. }
  3559. #u25420 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:350px;
  3563. top:250px;
  3564. width:260px;
  3565. height:60px;
  3566. display:flex;
  3567. font-family:'Microsoft YaHei', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:14px;
  3571. color:#CCCCCC;
  3572. text-align:left;
  3573. }
  3574. #u25420 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 8px 2px 8px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u25420_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u25421_div {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:65px;
  3593. height:20px;
  3594. background:inherit;
  3595. background-color:rgba(51, 51, 51, 0);
  3596. border:none;
  3597. border-radius:4px;
  3598. -moz-box-shadow:none;
  3599. -webkit-box-shadow:none;
  3600. box-shadow:none;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:14px;
  3605. text-align:left;
  3606. }
  3607. #u25421 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:365px;
  3611. top:273px;
  3612. width:65px;
  3613. height:20px;
  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. text-align:left;
  3620. }
  3621. #u25421 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:0px 0px 0px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u25421_text {
  3629. border-width:0px;
  3630. white-space:nowrap;
  3631. text-transform:none;
  3632. }
  3633. #u25422 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:0px;
  3639. height:0px;
  3640. }
  3641. #u25423_div {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:260px;
  3647. height:60px;
  3648. background:inherit;
  3649. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3650. border:none;
  3651. border-radius:4px;
  3652. -moz-box-shadow:none;
  3653. -webkit-box-shadow:none;
  3654. box-shadow:none;
  3655. font-family:'Microsoft YaHei', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:14px;
  3659. color:#CCCCCC;
  3660. text-align:left;
  3661. }
  3662. #u25423 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:350px;
  3666. top:310px;
  3667. width:260px;
  3668. height:60px;
  3669. display:flex;
  3670. font-family:'Microsoft YaHei', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:14px;
  3674. color:#CCCCCC;
  3675. text-align:left;
  3676. }
  3677. #u25423 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:2px 8px 2px 8px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u25423_text {
  3685. border-width:0px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u25424_div {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:65px;
  3696. height:20px;
  3697. background:inherit;
  3698. background-color:rgba(51, 51, 51, 0);
  3699. border:none;
  3700. border-radius:4px;
  3701. -moz-box-shadow:none;
  3702. -webkit-box-shadow:none;
  3703. box-shadow:none;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:14px;
  3708. text-align:left;
  3709. }
  3710. #u25424 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:365px;
  3714. top:333px;
  3715. width:65px;
  3716. height:20px;
  3717. display:flex;
  3718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:14px;
  3722. text-align:left;
  3723. }
  3724. #u25424 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:0px 0px 0px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u25424_text {
  3732. border-width:0px;
  3733. white-space:nowrap;
  3734. text-transform:none;
  3735. }
  3736. #u25425_div {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:109px;
  3742. height:25px;
  3743. background:inherit;
  3744. background-color:rgba(255, 255, 255, 0);
  3745. border:none;
  3746. border-radius:0px;
  3747. -moz-box-shadow:none;
  3748. -webkit-box-shadow:none;
  3749. box-shadow:none;
  3750. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3751. font-weight:500;
  3752. font-style:normal;
  3753. font-size:18px;
  3754. }
  3755. #u25425 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:350px;
  3759. top:77px;
  3760. width:109px;
  3761. height:25px;
  3762. display:flex;
  3763. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3764. font-weight:500;
  3765. font-style:normal;
  3766. font-size:18px;
  3767. }
  3768. #u25425 .text {
  3769. position:absolute;
  3770. align-self:flex-start;
  3771. padding:0px 0px 0px 0px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u25425_text {
  3776. border-width:0px;
  3777. white-space:nowrap;
  3778. text-transform:none;
  3779. }
  3780. #u25426 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:0px;
  3786. height:0px;
  3787. }
  3788. #u25427 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:0px;
  3794. height:0px;
  3795. }
  3796. #u25428_div {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:380px;
  3802. height:164px;
  3803. background:inherit;
  3804. background-color:rgba(255, 255, 255, 1);
  3805. box-sizing:border-box;
  3806. border-width:1px;
  3807. border-style:solid;
  3808. border-color:rgba(204, 204, 204, 1);
  3809. border-radius:4px;
  3810. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3811. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3812. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3813. font-family:'Microsoft YaHei', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. }
  3817. #u25428 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:705px;
  3821. top:404px;
  3822. width:380px;
  3823. height:164px;
  3824. display:flex;
  3825. font-family:'Microsoft YaHei', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. }
  3829. #u25428 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u25428_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u25429_div {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:299px;
  3848. height:44px;
  3849. background:inherit;
  3850. background-color:rgba(255, 255, 255, 0);
  3851. border:none;
  3852. border-radius:0px;
  3853. -moz-box-shadow:none;
  3854. -webkit-box-shadow:none;
  3855. box-shadow:none;
  3856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:14px;
  3860. color:#666666;
  3861. line-height:22px;
  3862. }
  3863. #u25429 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:765px;
  3867. top:459px;
  3868. width:299px;
  3869. height:44px;
  3870. display:flex;
  3871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:14px;
  3875. color:#666666;
  3876. line-height:22px;
  3877. }
  3878. #u25429 .text {
  3879. position:absolute;
  3880. align-self:flex-start;
  3881. padding:0px 0px 0px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u25429_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. }
  3890. #u25430_div {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:127px;
  3896. height:21px;
  3897. background:inherit;
  3898. background-color:rgba(255, 255, 255, 0);
  3899. border:none;
  3900. border-radius:0px;
  3901. -moz-box-shadow:none;
  3902. -webkit-box-shadow:none;
  3903. box-shadow:none;
  3904. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3905. font-weight:650;
  3906. font-style:normal;
  3907. font-size:18px;
  3908. color:#000000;
  3909. line-height:22px;
  3910. }
  3911. #u25430 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:765px;
  3915. top:429px;
  3916. width:127px;
  3917. height:21px;
  3918. display:flex;
  3919. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3920. font-weight:650;
  3921. font-style:normal;
  3922. font-size:18px;
  3923. color:#000000;
  3924. line-height:22px;
  3925. }
  3926. #u25430 .text {
  3927. position:absolute;
  3928. align-self:flex-start;
  3929. padding:0px 0px 0px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u25430_text {
  3934. border-width:0px;
  3935. white-space:nowrap;
  3936. text-transform:none;
  3937. }
  3938. #u25431_div {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:61px;
  3944. height:30px;
  3945. background:inherit;
  3946. background-color:rgba(24, 144, 255, 1);
  3947. border:none;
  3948. border-radius:4px;
  3949. -moz-box-shadow:none;
  3950. -webkit-box-shadow:none;
  3951. box-shadow:none;
  3952. font-family:'Microsoft YaHei', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:14px;
  3956. color:#FFFFFF;
  3957. }
  3958. #u25431 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:1007px;
  3962. top:519px;
  3963. width:61px;
  3964. height:30px;
  3965. display:flex;
  3966. font-family:'Microsoft YaHei', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:14px;
  3970. color:#FFFFFF;
  3971. }
  3972. #u25431 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 16px 2px 16px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u25431_text {
  3980. border-width:0px;
  3981. white-space:nowrap;
  3982. text-transform:none;
  3983. }
  3984. #u25432_div {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:66px;
  3990. height:30px;
  3991. background:inherit;
  3992. background-color:rgba(255, 255, 255, 1);
  3993. box-sizing:border-box;
  3994. border-width:1px;
  3995. border-style:solid;
  3996. border-color:rgba(217, 217, 217, 1);
  3997. border-radius:4px;
  3998. -moz-box-shadow:none;
  3999. -webkit-box-shadow:none;
  4000. box-shadow:none;
  4001. font-family:'Microsoft YaHei', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. font-size:14px;
  4005. color:rgba(0, 0, 0, 0.647058823529412);
  4006. line-height:21px;
  4007. }
  4008. #u25432 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:925px;
  4012. top:519px;
  4013. width:66px;
  4014. height:30px;
  4015. display:flex;
  4016. font-family:'Microsoft YaHei', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:14px;
  4020. color:rgba(0, 0, 0, 0.647058823529412);
  4021. line-height:21px;
  4022. }
  4023. #u25432 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 16px 2px 16px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u25432_text {
  4031. border-width:0px;
  4032. white-space:nowrap;
  4033. text-transform:none;
  4034. }
  4035. #u25433_img {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:20px;
  4041. height:20px;
  4042. }
  4043. #u25433 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:734px;
  4047. top:433px;
  4048. width:20px;
  4049. height:20px;
  4050. display:flex;
  4051. }
  4052. #u25433 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 2px 2px 2px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u25433_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u25434_div {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:600px;
  4071. height:36px;
  4072. background:inherit;
  4073. background-color:rgba(255, 255, 255, 0);
  4074. border:none;
  4075. border-radius:0px;
  4076. -moz-box-shadow:none;
  4077. -webkit-box-shadow:none;
  4078. box-shadow:none;
  4079. color:#D9001B;
  4080. }
  4081. #u25434 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:768px;
  4085. top:119px;
  4086. width:600px;
  4087. height:36px;
  4088. display:flex;
  4089. color:#D9001B;
  4090. }
  4091. #u25434 .text {
  4092. position:absolute;
  4093. align-self:flex-start;
  4094. padding:0px 0px 0px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u25434_text {
  4099. border-width:0px;
  4100. white-space:nowrap;
  4101. text-transform:none;
  4102. }
  4103. #u25435_div {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:692px;
  4109. height:18px;
  4110. background:inherit;
  4111. background-color:rgba(255, 255, 255, 0);
  4112. border:none;
  4113. border-radius:0px;
  4114. -moz-box-shadow:none;
  4115. -webkit-box-shadow:none;
  4116. box-shadow:none;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. color:#D9001B;
  4121. }
  4122. #u25435 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:768px;
  4126. top:302px;
  4127. width:692px;
  4128. height:18px;
  4129. display:flex;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. color:#D9001B;
  4134. }
  4135. #u25435 .text {
  4136. position:absolute;
  4137. align-self:flex-start;
  4138. padding:0px 0px 0px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u25435_text {
  4143. border-width:0px;
  4144. white-space:nowrap;
  4145. text-transform:none;
  4146. }