styles.css 73 KB

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