styles.css 73 KB

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