styles.css 78 KB

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