styles.css 74 KB

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