styles.css 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u5_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1197px;
  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. #u5 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1197px;
  41. display:flex;
  42. }
  43. #u5 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u5_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u6_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. #u6 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u6 .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. #u6_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u7_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. #u7 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u7 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u7_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u8 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u9_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u9 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u9 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u9_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u10_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. #u10 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u10 .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. #u10_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u11_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. #u11 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u11 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u11_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u12 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u13_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. #u13_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. #u13_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. #u13 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u13 .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. #u13_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. #u13.disabled {
  356. }
  357. .u13_input_option {
  358. font-size:14px;
  359. }
  360. #u14_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u14 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u14 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u14_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u15_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. #u15 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  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. #u15 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u15_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u16_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. #u16 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  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. #u16 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u16_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u17 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u18_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. #u18 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  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. #u18 .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. #u18_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u19_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u19 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u19 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u19_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u20 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u21_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. #u21 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  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. #u21 .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. #u21_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u22_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u22 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u22 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u22_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u23 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u24_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. #u24 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:397px;
  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. #u24 .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. #u24_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u25_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u25 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:401px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u25 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u25_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u26 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u27_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. #u27 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  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. #u27 .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. #u27_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u28_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u28 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u28 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u28_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u29 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u30_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. #u30 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:439px;
  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. #u30 .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. #u30_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u31_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u31 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:443px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u31 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u31_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u32 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u33_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. #u33 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:313px;
  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. #u33 .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. #u33_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u34_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u34 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:317px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u34 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u34_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u35 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u36_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. #u36 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  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. #u36 .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. #u36_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u37_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u37 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u37 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u37_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u38 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u39_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. #u39 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:355px;
  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. #u39 .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. #u39_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u40_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u40 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:359px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u40 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u40_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u41 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u42_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. #u42 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:481px;
  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. #u42 .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. #u42_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u43_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u43 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:485px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u43 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u43_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u44 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u45_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. #u45 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:523px;
  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. #u45 .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. #u45_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u46_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u46 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:527px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u46 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u46_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u47_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. #u47 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  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. #u47 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u47_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u48_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u48 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u48 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u48_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u49_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. #u49 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  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. #u49 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u49_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u50_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u50 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u50 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u50_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u51 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u52_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. #u52 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  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. #u52 .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. #u52_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u53_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u53 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u53 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u53_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u54 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u55_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. #u55 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  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. #u55 .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. #u55_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u56_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u56 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u56 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u56_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u57 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u58_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  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-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u58 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:273px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u58 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u58_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u59_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u59 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:277px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u59 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u59_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u60_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. }
  1737. #u60 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:329px;
  1741. top:50px;
  1742. width:1260px;
  1743. height:1180px;
  1744. display:flex;
  1745. }
  1746. #u60 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u60_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u61_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:1260px;
  1765. height:1180px;
  1766. }
  1767. #u61 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:329px;
  1771. top:50px;
  1772. width:1260px;
  1773. height:1180px;
  1774. display:flex;
  1775. }
  1776. #u61 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u61_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. visibility:hidden;
  1788. }
  1789. #u62_div {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:275px;
  1795. height:320px;
  1796. background:inherit;
  1797. background-color:rgba(51, 51, 51, 1);
  1798. border:none;
  1799. border-radius:4px;
  1800. -moz-box-shadow:none;
  1801. -webkit-box-shadow:none;
  1802. box-shadow:none;
  1803. }
  1804. #u62 {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:1265px;
  1808. top:354px;
  1809. width:275px;
  1810. height:320px;
  1811. display:flex;
  1812. }
  1813. #u62 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 2px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u62_text {
  1821. border-width:0px;
  1822. word-wrap:break-word;
  1823. text-transform:none;
  1824. visibility:hidden;
  1825. }
  1826. #u63_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:20px;
  1832. height:30px;
  1833. }
  1834. #u63 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:519px;
  1838. top:272px;
  1839. width:20px;
  1840. height:30px;
  1841. display:flex;
  1842. }
  1843. #u63 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u63_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u64 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:0px;
  1862. height:0px;
  1863. }
  1864. #u65_div {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:180px;
  1870. height:53px;
  1871. background:inherit;
  1872. background-color:rgba(255, 255, 255, 1);
  1873. border:none;
  1874. border-radius:2px;
  1875. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1876. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1877. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1879. font-weight:400;
  1880. font-style:normal;
  1881. font-size:12px;
  1882. color:#FFFFFF;
  1883. text-align:center;
  1884. }
  1885. #u65 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:529px;
  1889. top:229px;
  1890. width:180px;
  1891. height:53px;
  1892. display:flex;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:12px;
  1897. color:#FFFFFF;
  1898. text-align:center;
  1899. }
  1900. #u65 .text {
  1901. position:absolute;
  1902. align-self:flex-start;
  1903. padding:2px 2px 2px 2px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u65_text {
  1908. border-width:0px;
  1909. word-wrap:break-word;
  1910. text-transform:none;
  1911. visibility:hidden;
  1912. }
  1913. #u66 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:0px;
  1919. height:0px;
  1920. }
  1921. #u67_div {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:20px;
  1927. height:18px;
  1928. background:inherit;
  1929. background-color:rgba(245, 154, 35, 1);
  1930. border:none;
  1931. border-right:0px;
  1932. border-radius:2px;
  1933. border-top-right-radius:0px;
  1934. border-bottom-right-radius:0px;
  1935. -moz-box-shadow:none;
  1936. -webkit-box-shadow:none;
  1937. box-shadow:none;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:10px;
  1942. color:#FFFFFF;
  1943. text-align:center;
  1944. }
  1945. #u67 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:597px;
  1949. top:257px;
  1950. width:20px;
  1951. height:18px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:10px;
  1957. color:#FFFFFF;
  1958. text-align:center;
  1959. }
  1960. #u67 .text {
  1961. position:absolute;
  1962. align-self:center;
  1963. padding:2px 2px 2px 2px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u67_text {
  1968. border-width:0px;
  1969. word-wrap:break-word;
  1970. text-transform:none;
  1971. }
  1972. #u68_div {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:35px;
  1978. height:18px;
  1979. background:inherit;
  1980. background-color:rgba(255, 255, 255, 1);
  1981. box-sizing:border-box;
  1982. border-width:1px;
  1983. border-style:solid;
  1984. border-color:rgba(245, 154, 35, 1);
  1985. border-left:0px;
  1986. border-radius:2px;
  1987. border-top-left-radius:0px;
  1988. border-bottom-left-radius:0px;
  1989. -moz-box-shadow:none;
  1990. -webkit-box-shadow:none;
  1991. box-shadow:none;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:10px;
  1996. color:#AAAAAA;
  1997. }
  1998. #u68 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:617px;
  2002. top:257px;
  2003. width:35px;
  2004. height:18px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:10px;
  2010. color:#AAAAAA;
  2011. }
  2012. #u68 .text {
  2013. position:absolute;
  2014. align-self:center;
  2015. padding:2px 2px 2px 2px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u68_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. }
  2024. #u69 {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:0px;
  2030. height:0px;
  2031. }
  2032. #u70_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:20px;
  2038. height:18px;
  2039. background:inherit;
  2040. background-color:rgba(0, 191, 191, 1);
  2041. border:none;
  2042. border-right:0px;
  2043. border-radius:2px;
  2044. border-top-right-radius:0px;
  2045. border-bottom-right-radius:0px;
  2046. -moz-box-shadow:none;
  2047. -webkit-box-shadow:none;
  2048. box-shadow:none;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:10px;
  2053. color:#FFFFFF;
  2054. text-align:center;
  2055. }
  2056. #u70 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:537px;
  2060. top:257px;
  2061. width:20px;
  2062. height:18px;
  2063. display:flex;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:10px;
  2068. color:#FFFFFF;
  2069. text-align:center;
  2070. }
  2071. #u70 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 2px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u70_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u71_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:35px;
  2089. height:18px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 1);
  2092. box-sizing:border-box;
  2093. border-width:1px;
  2094. border-style:solid;
  2095. border-color:rgba(0, 191, 191, 1);
  2096. border-left:0px;
  2097. border-radius:2px;
  2098. border-top-left-radius:0px;
  2099. border-bottom-left-radius:0px;
  2100. -moz-box-shadow:none;
  2101. -webkit-box-shadow:none;
  2102. box-shadow:none;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:10px;
  2107. color:#AAAAAA;
  2108. }
  2109. #u71 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:557px;
  2113. top:257px;
  2114. width:35px;
  2115. height:18px;
  2116. display:flex;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:10px;
  2121. color:#AAAAAA;
  2122. }
  2123. #u71 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 2px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u71_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. }
  2135. #u72_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:109px;
  2141. height:17px;
  2142. background:inherit;
  2143. background-color:rgba(255, 255, 255, 0);
  2144. border:none;
  2145. border-radius:0px;
  2146. -moz-box-shadow:none;
  2147. -webkit-box-shadow:none;
  2148. box-shadow:none;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:12px;
  2153. }
  2154. #u72 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:537px;
  2158. top:235px;
  2159. width:109px;
  2160. height:17px;
  2161. display:flex;
  2162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:12px;
  2166. }
  2167. #u72 .text {
  2168. position:absolute;
  2169. align-self:flex-start;
  2170. padding:0px 0px 0px 0px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u72_text {
  2175. border-width:0px;
  2176. white-space:nowrap;
  2177. text-transform:none;
  2178. }
  2179. #u73_div {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:36px;
  2185. height:17px;
  2186. background:inherit;
  2187. background-color:rgba(255, 255, 255, 0);
  2188. border:none;
  2189. border-radius:0px;
  2190. -moz-box-shadow:none;
  2191. -webkit-box-shadow:none;
  2192. box-shadow:none;
  2193. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2194. font-weight:500;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. text-align:right;
  2198. }
  2199. #u73 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:660px;
  2203. top:235px;
  2204. width:36px;
  2205. height:17px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2208. font-weight:500;
  2209. font-style:normal;
  2210. font-size:12px;
  2211. text-align:right;
  2212. }
  2213. #u73 .text {
  2214. position:absolute;
  2215. align-self:flex-start;
  2216. padding:0px 0px 0px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u73_text {
  2221. border-width:0px;
  2222. white-space:nowrap;
  2223. text-transform:none;
  2224. }
  2225. #u74_img {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:5px;
  2231. height:8px;
  2232. }
  2233. #u74 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:699px;
  2237. top:240px;
  2238. width:5px;
  2239. height:8px;
  2240. display:flex;
  2241. -webkit-transform:rotate(180deg);
  2242. -moz-transform:rotate(180deg);
  2243. -ms-transform:rotate(180deg);
  2244. transform:rotate(180deg);
  2245. }
  2246. #u74 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u74_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u75 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:0px;
  2265. height:0px;
  2266. }
  2267. #u76_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:20px;
  2273. height:30px;
  2274. }
  2275. #u76 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:575px;
  2279. top:483px;
  2280. width:20px;
  2281. height:30px;
  2282. display:flex;
  2283. }
  2284. #u76 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u76_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. visibility:hidden;
  2296. }
  2297. #u77_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:50px;
  2303. height:20px;
  2304. background:inherit;
  2305. background-color:rgba(51, 51, 51, 1);
  2306. border:none;
  2307. border-radius:2px;
  2308. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2309. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2310. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:12px;
  2315. color:#FFFFFF;
  2316. text-align:center;
  2317. }
  2318. #u77 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:585px;
  2322. top:471px;
  2323. width:50px;
  2324. height:20px;
  2325. display:flex;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. color:#FFFFFF;
  2331. text-align:center;
  2332. }
  2333. #u77 .text {
  2334. position:absolute;
  2335. align-self:flex-start;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u77_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u78_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:275px;
  2351. height:480px;
  2352. background:inherit;
  2353. background-color:rgba(51, 51, 51, 1);
  2354. border:none;
  2355. border-radius:4px;
  2356. -moz-box-shadow:none;
  2357. -webkit-box-shadow:none;
  2358. box-shadow:none;
  2359. }
  2360. #u78 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:1265px;
  2364. top:688px;
  2365. width:275px;
  2366. height:480px;
  2367. display:flex;
  2368. }
  2369. #u78 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u78_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. visibility:hidden;
  2381. }
  2382. #u79_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:110px;
  2388. height:40px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2391. border:none;
  2392. border-left:0px;
  2393. border-top:0px;
  2394. border-right:0px;
  2395. border-radius:0px;
  2396. border-bottom-right-radius:0px;
  2397. border-bottom-left-radius:0px;
  2398. -moz-box-shadow:none;
  2399. -webkit-box-shadow:none;
  2400. box-shadow:none;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-style:normal;
  2403. color:#FFFFFF;
  2404. text-align:center;
  2405. line-height:40px;
  2406. }
  2407. #u79 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:1283px;
  2411. top:409px;
  2412. width:110px;
  2413. height:40px;
  2414. display:flex;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-style:normal;
  2417. color:#FFFFFF;
  2418. text-align:center;
  2419. line-height:40px;
  2420. }
  2421. #u79 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u79_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. }
  2433. #u80_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:122px;
  2439. height:40px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0);
  2442. border:none;
  2443. border-left:0px;
  2444. border-top:0px;
  2445. border-right:0px;
  2446. border-radius:0px;
  2447. border-bottom-right-radius:0px;
  2448. border-bottom-left-radius:0px;
  2449. -moz-box-shadow:none;
  2450. -webkit-box-shadow:none;
  2451. box-shadow:none;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:14px;
  2456. color:#FFFFFF;
  2457. line-height:40px;
  2458. }
  2459. #u80 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:1308px;
  2463. top:460px;
  2464. width:122px;
  2465. height:40px;
  2466. display:flex;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:14px;
  2471. color:#FFFFFF;
  2472. line-height:40px;
  2473. }
  2474. #u80 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:0px 0px 0px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u80_text {
  2482. border-width:0px;
  2483. white-space:nowrap;
  2484. text-transform:none;
  2485. }
  2486. #u81_div {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:121px;
  2492. height:40px;
  2493. background:inherit;
  2494. background-color:rgba(255, 255, 255, 0);
  2495. border:none;
  2496. border-left:0px;
  2497. border-top:0px;
  2498. border-right:0px;
  2499. border-radius:0px;
  2500. border-bottom-right-radius:0px;
  2501. border-bottom-left-radius:0px;
  2502. -moz-box-shadow:none;
  2503. -webkit-box-shadow:none;
  2504. box-shadow:none;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:14px;
  2509. color:#FFFFFF;
  2510. line-height:40px;
  2511. }
  2512. #u81 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:1308px;
  2516. top:500px;
  2517. width:121px;
  2518. height:40px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:14px;
  2524. color:#FFFFFF;
  2525. line-height:40px;
  2526. }
  2527. #u81 .text {
  2528. position:absolute;
  2529. align-self:center;
  2530. padding:0px 0px 0px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u81_text {
  2535. border-width:0px;
  2536. white-space:nowrap;
  2537. text-transform:none;
  2538. }
  2539. #u82_div {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:121px;
  2545. height:40px;
  2546. background:inherit;
  2547. background-color:rgba(255, 255, 255, 0);
  2548. border:none;
  2549. border-left:0px;
  2550. border-top:0px;
  2551. border-right:0px;
  2552. border-radius:0px;
  2553. border-bottom-right-radius:0px;
  2554. border-bottom-left-radius:0px;
  2555. -moz-box-shadow:none;
  2556. -webkit-box-shadow:none;
  2557. box-shadow:none;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:14px;
  2562. color:#FFFFFF;
  2563. line-height:40px;
  2564. }
  2565. #u82 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:1308px;
  2569. top:540px;
  2570. width:121px;
  2571. height:40px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:14px;
  2577. color:#FFFFFF;
  2578. line-height:40px;
  2579. }
  2580. #u82 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:0px 0px 0px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u82_text {
  2588. border-width:0px;
  2589. white-space:nowrap;
  2590. text-transform:none;
  2591. }
  2592. #u83_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:121px;
  2598. height:40px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border:none;
  2602. border-left:0px;
  2603. border-top:0px;
  2604. border-right:0px;
  2605. border-radius:0px;
  2606. border-bottom-right-radius:0px;
  2607. border-bottom-left-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. color:#FFFFFF;
  2616. line-height:40px;
  2617. }
  2618. #u83 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:1308px;
  2622. top:580px;
  2623. width:121px;
  2624. height:40px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. color:#FFFFFF;
  2631. line-height:40px;
  2632. }
  2633. #u83 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:0px 0px 0px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u83_text {
  2641. border-width:0px;
  2642. white-space:nowrap;
  2643. text-transform:none;
  2644. }
  2645. #u84_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:110px;
  2651. height:40px;
  2652. background:inherit;
  2653. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2654. border:none;
  2655. border-left:0px;
  2656. border-top:0px;
  2657. border-right:0px;
  2658. border-radius:0px;
  2659. border-bottom-right-radius:0px;
  2660. border-bottom-left-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2665. font-style:normal;
  2666. color:#FFFFFF;
  2667. text-align:center;
  2668. line-height:40px;
  2669. }
  2670. #u84 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:1413px;
  2674. top:409px;
  2675. width:110px;
  2676. height:40px;
  2677. display:flex;
  2678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2679. font-style:normal;
  2680. color:#FFFFFF;
  2681. text-align:center;
  2682. line-height:40px;
  2683. }
  2684. #u84 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:0px 0px 0px 0px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u84_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. }
  2696. #u85_div {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:26px;
  2702. height:11px;
  2703. background:inherit;
  2704. background-color:rgba(0, 191, 191, 1);
  2705. border:none;
  2706. border-radius:4px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:8px;
  2714. color:#FFFFFF;
  2715. text-align:center;
  2716. }
  2717. #u85 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:1276px;
  2721. top:475px;
  2722. width:26px;
  2723. height:11px;
  2724. display:flex;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:8px;
  2729. color:#FFFFFF;
  2730. text-align:center;
  2731. }
  2732. #u85 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:0px 0px 0px 0px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u85_text {
  2740. border-width:0px;
  2741. word-wrap:break-word;
  2742. text-transform:none;
  2743. }
  2744. #u86_div {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:26px;
  2750. height:11px;
  2751. background:inherit;
  2752. background-color:rgba(0, 191, 191, 1);
  2753. border:none;
  2754. border-radius:4px;
  2755. -moz-box-shadow:none;
  2756. -webkit-box-shadow:none;
  2757. box-shadow:none;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:8px;
  2762. color:#FFFFFF;
  2763. text-align:center;
  2764. }
  2765. #u86 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:1276px;
  2769. top:514px;
  2770. width:26px;
  2771. height:11px;
  2772. display:flex;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:8px;
  2777. color:#FFFFFF;
  2778. text-align:center;
  2779. }
  2780. #u86 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:0px 0px 0px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u86_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. }
  2792. #u87_div {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:26px;
  2798. height:11px;
  2799. background:inherit;
  2800. background-color:rgba(0, 191, 191, 1);
  2801. border:none;
  2802. border-radius:4px;
  2803. -moz-box-shadow:none;
  2804. -webkit-box-shadow:none;
  2805. box-shadow:none;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:8px;
  2810. color:#FFFFFF;
  2811. text-align:center;
  2812. }
  2813. #u87 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:1276px;
  2817. top:554px;
  2818. width:26px;
  2819. height:11px;
  2820. display:flex;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:8px;
  2825. color:#FFFFFF;
  2826. text-align:center;
  2827. }
  2828. #u87 .text {
  2829. position:absolute;
  2830. align-self:center;
  2831. padding:0px 0px 0px 0px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u87_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. }
  2840. #u88_div {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:121px;
  2846. height:40px;
  2847. background:inherit;
  2848. background-color:rgba(255, 255, 255, 0);
  2849. border:none;
  2850. border-left:0px;
  2851. border-top:0px;
  2852. border-right:0px;
  2853. border-radius:0px;
  2854. border-bottom-right-radius:0px;
  2855. border-bottom-left-radius:0px;
  2856. -moz-box-shadow:none;
  2857. -webkit-box-shadow:none;
  2858. box-shadow:none;
  2859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2860. font-weight:400;
  2861. font-style:normal;
  2862. font-size:14px;
  2863. color:#FFFFFF;
  2864. line-height:40px;
  2865. }
  2866. #u88 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:1308px;
  2870. top:620px;
  2871. width:121px;
  2872. height:40px;
  2873. display:flex;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:14px;
  2878. color:#FFFFFF;
  2879. line-height:40px;
  2880. }
  2881. #u88 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:0px 0px 0px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u88_text {
  2889. border-width:0px;
  2890. white-space:nowrap;
  2891. text-transform:none;
  2892. }
  2893. #u89_div {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:26px;
  2899. height:11px;
  2900. background:inherit;
  2901. background-color:rgba(127, 127, 127, 1);
  2902. border:none;
  2903. border-radius:4px;
  2904. -moz-box-shadow:none;
  2905. -webkit-box-shadow:none;
  2906. box-shadow:none;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:8px;
  2911. color:#FFFFFF;
  2912. text-align:center;
  2913. }
  2914. #u89 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:1276px;
  2918. top:633px;
  2919. width:26px;
  2920. height:11px;
  2921. display:flex;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:8px;
  2926. color:#FFFFFF;
  2927. text-align:center;
  2928. }
  2929. #u89 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:0px 0px 0px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u89_text {
  2937. border-width:0px;
  2938. word-wrap:break-word;
  2939. text-transform:none;
  2940. }
  2941. #u90_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:26px;
  2947. height:11px;
  2948. background:inherit;
  2949. background-color:rgba(0, 191, 191, 1);
  2950. border:none;
  2951. border-radius:4px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:8px;
  2959. color:#FFFFFF;
  2960. text-align:center;
  2961. }
  2962. #u90 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:1276px;
  2966. top:595px;
  2967. width:26px;
  2968. height:11px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:8px;
  2974. color:#FFFFFF;
  2975. text-align:center;
  2976. }
  2977. #u90 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:0px 0px 0px 0px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u90_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. }
  2989. #u91_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:13px;
  2995. height:20px;
  2996. }
  2997. #u91 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:1510px;
  3001. top:463px;
  3002. width:13px;
  3003. height:20px;
  3004. display:flex;
  3005. }
  3006. #u91 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 2px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u91_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u92_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:13px;
  3025. height:20px;
  3026. }
  3027. #u92 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:1510px;
  3031. top:505px;
  3032. width:13px;
  3033. height:20px;
  3034. display:flex;
  3035. }
  3036. #u92 .text {
  3037. position:absolute;
  3038. align-self:center;
  3039. padding:2px 2px 2px 2px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u92_text {
  3044. border-width:0px;
  3045. word-wrap:break-word;
  3046. text-transform:none;
  3047. visibility:hidden;
  3048. }
  3049. #u93_img {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:13px;
  3055. height:20px;
  3056. }
  3057. #u93 {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:1510px;
  3061. top:545px;
  3062. width:13px;
  3063. height:20px;
  3064. display:flex;
  3065. }
  3066. #u93 .text {
  3067. position:absolute;
  3068. align-self:center;
  3069. padding:2px 2px 2px 2px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u93_text {
  3074. border-width:0px;
  3075. word-wrap:break-word;
  3076. text-transform:none;
  3077. visibility:hidden;
  3078. }
  3079. #u94_img {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:13px;
  3085. height:20px;
  3086. }
  3087. #u94 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:1510px;
  3091. top:586px;
  3092. width:13px;
  3093. height:20px;
  3094. display:flex;
  3095. }
  3096. #u94 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 2px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u94_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u95_img {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:13px;
  3115. height:20px;
  3116. }
  3117. #u95 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:1510px;
  3121. top:624px;
  3122. width:13px;
  3123. height:20px;
  3124. display:flex;
  3125. }
  3126. #u95 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 2px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u95_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u96_div {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:75px;
  3145. height:150px;
  3146. background:inherit;
  3147. background-color:rgba(255, 255, 255, 0);
  3148. border:none;
  3149. border-left:0px;
  3150. border-top:0px;
  3151. border-right:0px;
  3152. border-radius:0px;
  3153. border-bottom-right-radius:0px;
  3154. border-bottom-left-radius:0px;
  3155. -moz-box-shadow:none;
  3156. -webkit-box-shadow:none;
  3157. box-shadow:none;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:12px;
  3162. color:#FFFFFF;
  3163. line-height:30px;
  3164. }
  3165. #u96 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1442px;
  3169. top:743px;
  3170. width:75px;
  3171. height:150px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:12px;
  3177. color:#FFFFFF;
  3178. line-height:30px;
  3179. }
  3180. #u96 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:0px 0px 0px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u96_text {
  3188. border-width:0px;
  3189. white-space:nowrap;
  3190. text-transform:none;
  3191. }
  3192. #u97 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:0px;
  3198. height:0px;
  3199. }
  3200. #u98_img {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:140px;
  3206. height:140px;
  3207. }
  3208. #u98 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:1281px;
  3212. top:751px;
  3213. width:140px;
  3214. height:140px;
  3215. display:flex;
  3216. }
  3217. #u98 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 2px 2px 2px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u98_text {
  3225. border-width:0px;
  3226. word-wrap:break-word;
  3227. text-transform:none;
  3228. visibility:hidden;
  3229. }
  3230. #u99_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:102px;
  3236. height:102px;
  3237. }
  3238. #u99 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1300px;
  3242. top:770px;
  3243. width:102px;
  3244. height:102px;
  3245. display:flex;
  3246. }
  3247. #u99 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 2px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u99_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. }
  3259. #u100_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:49px;
  3265. height:36px;
  3266. background:inherit;
  3267. background-color:rgba(255, 255, 255, 0);
  3268. border:none;
  3269. border-left:0px;
  3270. border-top:0px;
  3271. border-right:0px;
  3272. border-radius:0px;
  3273. border-bottom-right-radius:0px;
  3274. border-bottom-left-radius:0px;
  3275. -moz-box-shadow:none;
  3276. -webkit-box-shadow:none;
  3277. box-shadow:none;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:10px;
  3282. color:#AAAAAA;
  3283. line-height:30px;
  3284. }
  3285. #u100 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:1331px;
  3289. top:745px;
  3290. width:49px;
  3291. height:36px;
  3292. display:flex;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:10px;
  3297. color:#AAAAAA;
  3298. line-height:30px;
  3299. }
  3300. #u100 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:0px 0px 0px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u100_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. }
  3312. #u101_div {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:85px;
  3318. height:40px;
  3319. background:inherit;
  3320. background-color:rgba(255, 255, 255, 0);
  3321. border:none;
  3322. border-left:0px;
  3323. border-top:0px;
  3324. border-right:0px;
  3325. border-radius:0px;
  3326. border-bottom-right-radius:0px;
  3327. border-bottom-left-radius:0px;
  3328. -moz-box-shadow:none;
  3329. -webkit-box-shadow:none;
  3330. box-shadow:none;
  3331. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3332. font-weight:500;
  3333. font-style:normal;
  3334. font-size:14px;
  3335. color:#FFFFFF;
  3336. line-height:40px;
  3337. }
  3338. #u101 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:1281px;
  3342. top:697px;
  3343. width:85px;
  3344. height:40px;
  3345. display:flex;
  3346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3347. font-weight:500;
  3348. font-style:normal;
  3349. font-size:14px;
  3350. color:#FFFFFF;
  3351. line-height:40px;
  3352. }
  3353. #u101 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:0px 0px 0px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u101_text {
  3361. border-width:0px;
  3362. white-space:nowrap;
  3363. text-transform:none;
  3364. }
  3365. #u102_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:25px;
  3371. height:40px;
  3372. background:inherit;
  3373. background-color:rgba(255, 255, 255, 0);
  3374. box-sizing:border-box;
  3375. border-width:3px;
  3376. border-style:solid;
  3377. border-color:rgba(41, 143, 255, 1);
  3378. border-left:0px;
  3379. border-top:0px;
  3380. border-right:0px;
  3381. border-radius:0px;
  3382. border-bottom-right-radius:0px;
  3383. border-bottom-left-radius:0px;
  3384. -moz-box-shadow:none;
  3385. -webkit-box-shadow:none;
  3386. box-shadow:none;
  3387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3388. font-weight:400;
  3389. font-style:normal;
  3390. font-size:12px;
  3391. color:#298FFF;
  3392. line-height:40px;
  3393. }
  3394. #u102 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:1281px;
  3398. top:913px;
  3399. width:25px;
  3400. height:40px;
  3401. display:flex;
  3402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3403. font-weight:400;
  3404. font-style:normal;
  3405. font-size:12px;
  3406. color:#298FFF;
  3407. line-height:40px;
  3408. }
  3409. #u102 .text {
  3410. position:absolute;
  3411. align-self:center;
  3412. padding:0px 0px 0px 0px;
  3413. box-sizing:border-box;
  3414. width:100%;
  3415. }
  3416. #u102_text {
  3417. border-width:0px;
  3418. white-space:nowrap;
  3419. text-transform:none;
  3420. }
  3421. #u103_div {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:57px;
  3427. height:40px;
  3428. background:inherit;
  3429. background-color:rgba(255, 255, 255, 0);
  3430. border:none;
  3431. border-left:0px;
  3432. border-top:0px;
  3433. border-right:0px;
  3434. border-radius:0px;
  3435. border-bottom-right-radius:0px;
  3436. border-bottom-left-radius:0px;
  3437. -moz-box-shadow:none;
  3438. -webkit-box-shadow:none;
  3439. box-shadow:none;
  3440. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3441. font-weight:500;
  3442. font-style:normal;
  3443. font-size:14px;
  3444. color:#FFFFFF;
  3445. line-height:40px;
  3446. }
  3447. #u103 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:1281px;
  3451. top:364px;
  3452. width:57px;
  3453. height:40px;
  3454. display:flex;
  3455. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3456. font-weight:500;
  3457. font-style:normal;
  3458. font-size:14px;
  3459. color:#FFFFFF;
  3460. line-height:40px;
  3461. }
  3462. #u103 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:0px 0px 0px 0px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u103_text {
  3470. border-width:0px;
  3471. white-space:nowrap;
  3472. text-transform:none;
  3473. }
  3474. #u104_div {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:111px;
  3480. height:40px;
  3481. background:inherit;
  3482. background-color:rgba(255, 255, 255, 0);
  3483. border:none;
  3484. border-left:0px;
  3485. border-top:0px;
  3486. border-right:0px;
  3487. border-radius:0px;
  3488. border-bottom-right-radius:0px;
  3489. border-bottom-left-radius:0px;
  3490. -moz-box-shadow:none;
  3491. -webkit-box-shadow:none;
  3492. box-shadow:none;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:14px;
  3497. color:#FFFFFF;
  3498. line-height:40px;
  3499. }
  3500. #u104 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:1281px;
  3504. top:953px;
  3505. width:111px;
  3506. height:40px;
  3507. display:flex;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:14px;
  3512. color:#FFFFFF;
  3513. line-height:40px;
  3514. }
  3515. #u104 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:0px 0px 0px 0px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u104_text {
  3523. border-width:0px;
  3524. white-space:nowrap;
  3525. text-transform:none;
  3526. }
  3527. #u105_div {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:21px;
  3533. height:11px;
  3534. background:inherit;
  3535. background-color:rgba(0, 191, 191, 1);
  3536. border:none;
  3537. border-radius:4px;
  3538. -moz-box-shadow:none;
  3539. -webkit-box-shadow:none;
  3540. box-shadow:none;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:8px;
  3545. color:#FFFFFF;
  3546. text-align:center;
  3547. }
  3548. #u105 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:1398px;
  3552. top:968px;
  3553. width:21px;
  3554. height:11px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:8px;
  3560. color:#FFFFFF;
  3561. text-align:center;
  3562. }
  3563. #u105 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:0px 0px 0px 0px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u105_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. }
  3575. #u106_div {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:111px;
  3581. height:40px;
  3582. background:inherit;
  3583. background-color:rgba(255, 255, 255, 0);
  3584. border:none;
  3585. border-left:0px;
  3586. border-top:0px;
  3587. border-right:0px;
  3588. border-radius:0px;
  3589. border-bottom-right-radius:0px;
  3590. border-bottom-left-radius:0px;
  3591. -moz-box-shadow:none;
  3592. -webkit-box-shadow:none;
  3593. box-shadow:none;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:14px;
  3598. color:#FFFFFF;
  3599. line-height:40px;
  3600. }
  3601. #u106 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:1281px;
  3605. top:993px;
  3606. width:111px;
  3607. height:40px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:14px;
  3613. color:#FFFFFF;
  3614. line-height:40px;
  3615. }
  3616. #u106 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:0px 0px 0px 0px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u106_text {
  3624. border-width:0px;
  3625. white-space:nowrap;
  3626. text-transform:none;
  3627. }
  3628. #u107_div {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:21px;
  3634. height:11px;
  3635. background:inherit;
  3636. background-color:rgba(0, 191, 191, 1);
  3637. border:none;
  3638. border-radius:4px;
  3639. -moz-box-shadow:none;
  3640. -webkit-box-shadow:none;
  3641. box-shadow:none;
  3642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3643. font-weight:400;
  3644. font-style:normal;
  3645. font-size:8px;
  3646. color:#FFFFFF;
  3647. text-align:center;
  3648. }
  3649. #u107 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:1398px;
  3653. top:1008px;
  3654. width:21px;
  3655. height:11px;
  3656. display:flex;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:8px;
  3661. color:#FFFFFF;
  3662. text-align:center;
  3663. }
  3664. #u107 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:0px 0px 0px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u107_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. }
  3676. #u108_div {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:111px;
  3682. height:40px;
  3683. background:inherit;
  3684. background-color:rgba(255, 255, 255, 0);
  3685. border:none;
  3686. border-left:0px;
  3687. border-top:0px;
  3688. border-right:0px;
  3689. border-radius:0px;
  3690. border-bottom-right-radius:0px;
  3691. border-bottom-left-radius:0px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:14px;
  3699. color:#FFFFFF;
  3700. line-height:40px;
  3701. }
  3702. #u108 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:1281px;
  3706. top:1033px;
  3707. width:111px;
  3708. height:40px;
  3709. display:flex;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:14px;
  3714. color:#FFFFFF;
  3715. line-height:40px;
  3716. }
  3717. #u108 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:0px 0px 0px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u108_text {
  3725. border-width:0px;
  3726. white-space:nowrap;
  3727. text-transform:none;
  3728. }
  3729. #u109_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:21px;
  3735. height:11px;
  3736. background:inherit;
  3737. background-color:rgba(0, 191, 191, 1);
  3738. border:none;
  3739. border-radius:4px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:8px;
  3747. color:#FFFFFF;
  3748. text-align:center;
  3749. }
  3750. #u109 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:1398px;
  3754. top:1048px;
  3755. width:21px;
  3756. height:11px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:8px;
  3762. color:#FFFFFF;
  3763. text-align:center;
  3764. }
  3765. #u109 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:0px 0px 0px 0px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u109_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. }
  3777. #u110_div {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:111px;
  3783. height:40px;
  3784. background:inherit;
  3785. background-color:rgba(255, 255, 255, 0);
  3786. border:none;
  3787. border-left:0px;
  3788. border-top:0px;
  3789. border-right:0px;
  3790. border-radius:0px;
  3791. border-bottom-right-radius:0px;
  3792. border-bottom-left-radius:0px;
  3793. -moz-box-shadow:none;
  3794. -webkit-box-shadow:none;
  3795. box-shadow:none;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:14px;
  3800. color:#FFFFFF;
  3801. line-height:40px;
  3802. }
  3803. #u110 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:1281px;
  3807. top:1073px;
  3808. width:111px;
  3809. height:40px;
  3810. display:flex;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:14px;
  3815. color:#FFFFFF;
  3816. line-height:40px;
  3817. }
  3818. #u110 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:0px 0px 0px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u110_text {
  3826. border-width:0px;
  3827. white-space:nowrap;
  3828. text-transform:none;
  3829. }
  3830. #u111_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:21px;
  3836. height:11px;
  3837. background:inherit;
  3838. background-color:rgba(0, 191, 191, 1);
  3839. border:none;
  3840. border-radius:4px;
  3841. -moz-box-shadow:none;
  3842. -webkit-box-shadow:none;
  3843. box-shadow:none;
  3844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:8px;
  3848. color:#FFFFFF;
  3849. text-align:center;
  3850. }
  3851. #u111 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:1398px;
  3855. top:1088px;
  3856. width:21px;
  3857. height:11px;
  3858. display:flex;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:8px;
  3863. color:#FFFFFF;
  3864. text-align:center;
  3865. }
  3866. #u111 .text {
  3867. position:absolute;
  3868. align-self:center;
  3869. padding:0px 0px 0px 0px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u111_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. }
  3878. #u112_div {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:111px;
  3884. height:40px;
  3885. background:inherit;
  3886. background-color:rgba(255, 255, 255, 0);
  3887. border:none;
  3888. border-left:0px;
  3889. border-top:0px;
  3890. border-right:0px;
  3891. border-radius:0px;
  3892. border-bottom-right-radius:0px;
  3893. border-bottom-left-radius:0px;
  3894. -moz-box-shadow:none;
  3895. -webkit-box-shadow:none;
  3896. box-shadow:none;
  3897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3898. font-weight:400;
  3899. font-style:normal;
  3900. font-size:14px;
  3901. color:#FFFFFF;
  3902. line-height:40px;
  3903. }
  3904. #u112 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:1281px;
  3908. top:1113px;
  3909. width:111px;
  3910. height:40px;
  3911. display:flex;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:14px;
  3916. color:#FFFFFF;
  3917. line-height:40px;
  3918. }
  3919. #u112 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:0px 0px 0px 0px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u112_text {
  3927. border-width:0px;
  3928. white-space:nowrap;
  3929. text-transform:none;
  3930. }
  3931. #u113_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:21px;
  3937. height:11px;
  3938. background:inherit;
  3939. background-color:rgba(0, 191, 191, 1);
  3940. border:none;
  3941. border-radius:4px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:8px;
  3949. color:#FFFFFF;
  3950. text-align:center;
  3951. }
  3952. #u113 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:1398px;
  3956. top:1128px;
  3957. width:21px;
  3958. height:11px;
  3959. display:flex;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. font-size:8px;
  3964. color:#FFFFFF;
  3965. text-align:center;
  3966. }
  3967. #u113 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:0px 0px 0px 0px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u113_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. }
  3979. #u114_div {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:25px;
  3985. height:40px;
  3986. background:inherit;
  3987. background-color:rgba(255, 255, 255, 0);
  3988. border:none;
  3989. border-left:0px;
  3990. border-top:0px;
  3991. border-right:0px;
  3992. border-radius:0px;
  3993. border-bottom-right-radius:0px;
  3994. border-bottom-left-radius:0px;
  3995. -moz-box-shadow:none;
  3996. -webkit-box-shadow:none;
  3997. box-shadow:none;
  3998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. color:#FFFFFF;
  4003. line-height:40px;
  4004. }
  4005. #u114 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:1325px;
  4009. top:913px;
  4010. width:25px;
  4011. height:40px;
  4012. display:flex;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:12px;
  4017. color:#FFFFFF;
  4018. line-height:40px;
  4019. }
  4020. #u114 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:0px 0px 0px 0px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u114_text {
  4028. border-width:0px;
  4029. white-space:nowrap;
  4030. text-transform:none;
  4031. }
  4032. #u115_div {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:25px;
  4038. height:40px;
  4039. background:inherit;
  4040. background-color:rgba(255, 255, 255, 0);
  4041. border:none;
  4042. border-left:0px;
  4043. border-top:0px;
  4044. border-right:0px;
  4045. border-radius:0px;
  4046. border-bottom-right-radius:0px;
  4047. border-bottom-left-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:12px;
  4055. color:#FFFFFF;
  4056. line-height:40px;
  4057. }
  4058. #u115 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:1369px;
  4062. top:913px;
  4063. width:25px;
  4064. height:40px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:12px;
  4070. color:#FFFFFF;
  4071. line-height:40px;
  4072. }
  4073. #u115 .text {
  4074. position:absolute;
  4075. align-self:center;
  4076. padding:0px 0px 0px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u115_text {
  4081. border-width:0px;
  4082. white-space:nowrap;
  4083. text-transform:none;
  4084. }
  4085. #u116_div {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:25px;
  4091. height:40px;
  4092. background:inherit;
  4093. background-color:rgba(255, 255, 255, 0);
  4094. border:none;
  4095. border-left:0px;
  4096. border-top:0px;
  4097. border-right:0px;
  4098. border-radius:0px;
  4099. border-bottom-right-radius:0px;
  4100. border-bottom-left-radius:0px;
  4101. -moz-box-shadow:none;
  4102. -webkit-box-shadow:none;
  4103. box-shadow:none;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:12px;
  4108. color:#FFFFFF;
  4109. line-height:40px;
  4110. }
  4111. #u116 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:1414px;
  4115. top:913px;
  4116. width:25px;
  4117. height:40px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:12px;
  4123. color:#FFFFFF;
  4124. line-height:40px;
  4125. }
  4126. #u116 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:0px 0px 0px 0px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u116_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u117_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:25px;
  4144. height:40px;
  4145. background:inherit;
  4146. background-color:rgba(255, 255, 255, 0);
  4147. border:none;
  4148. border-left:0px;
  4149. border-top:0px;
  4150. border-right:0px;
  4151. border-radius:0px;
  4152. border-bottom-right-radius:0px;
  4153. border-bottom-left-radius:0px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:12px;
  4161. color:#FFFFFF;
  4162. line-height:40px;
  4163. }
  4164. #u117 {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:1458px;
  4168. top:913px;
  4169. width:25px;
  4170. height:40px;
  4171. display:flex;
  4172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. font-size:12px;
  4176. color:#FFFFFF;
  4177. line-height:40px;
  4178. }
  4179. #u117 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:0px 0px 0px 0px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u117_text {
  4187. border-width:0px;
  4188. white-space:nowrap;
  4189. text-transform:none;
  4190. }
  4191. #u118_div {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:25px;
  4197. height:40px;
  4198. background:inherit;
  4199. background-color:rgba(255, 255, 255, 0);
  4200. border:none;
  4201. border-left:0px;
  4202. border-top:0px;
  4203. border-right:0px;
  4204. border-radius:0px;
  4205. border-bottom-right-radius:0px;
  4206. border-bottom-left-radius:0px;
  4207. -moz-box-shadow:none;
  4208. -webkit-box-shadow:none;
  4209. box-shadow:none;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. color:#FFFFFF;
  4215. line-height:40px;
  4216. }
  4217. #u118 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:1502px;
  4221. top:913px;
  4222. width:25px;
  4223. height:40px;
  4224. display:flex;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:12px;
  4229. color:#FFFFFF;
  4230. line-height:40px;
  4231. }
  4232. #u118 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:0px 0px 0px 0px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u118_text {
  4240. border-width:0px;
  4241. white-space:nowrap;
  4242. text-transform:none;
  4243. }
  4244. #u119 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:0px;
  4250. height:0px;
  4251. }
  4252. #u120_div {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:275px;
  4258. height:200px;
  4259. background:inherit;
  4260. background-color:rgba(51, 51, 51, 1);
  4261. border:none;
  4262. border-radius:4px;
  4263. -moz-box-shadow:none;
  4264. -webkit-box-shadow:none;
  4265. box-shadow:none;
  4266. }
  4267. #u120 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:1265px;
  4271. top:143px;
  4272. width:275px;
  4273. height:200px;
  4274. display:flex;
  4275. }
  4276. #u120 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 2px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u120_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u121_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:57px;
  4295. height:40px;
  4296. background:inherit;
  4297. background-color:rgba(255, 255, 255, 0);
  4298. border:none;
  4299. border-left:0px;
  4300. border-top:0px;
  4301. border-right:0px;
  4302. border-radius:0px;
  4303. border-bottom-right-radius:0px;
  4304. border-bottom-left-radius:0px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4309. font-weight:500;
  4310. font-style:normal;
  4311. font-size:14px;
  4312. color:#FFFFFF;
  4313. line-height:40px;
  4314. }
  4315. #u121 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1281px;
  4319. top:153px;
  4320. width:57px;
  4321. height:40px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4324. font-weight:500;
  4325. font-style:normal;
  4326. font-size:14px;
  4327. color:#FFFFFF;
  4328. line-height:40px;
  4329. }
  4330. #u121 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:0px 0px 0px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u121_text {
  4338. border-width:0px;
  4339. white-space:nowrap;
  4340. text-transform:none;
  4341. }
  4342. #u122_div {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:119px;
  4348. height:40px;
  4349. background:inherit;
  4350. background-color:rgba(255, 255, 255, 0);
  4351. border:none;
  4352. border-left:0px;
  4353. border-top:0px;
  4354. border-right:0px;
  4355. border-radius:0px;
  4356. border-bottom-right-radius:0px;
  4357. border-bottom-left-radius:0px;
  4358. -moz-box-shadow:none;
  4359. -webkit-box-shadow:none;
  4360. box-shadow:none;
  4361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4362. font-style:normal;
  4363. color:#FFFFFF;
  4364. line-height:40px;
  4365. }
  4366. #u122 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:1343px;
  4370. top:206px;
  4371. width:119px;
  4372. height:40px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-style:normal;
  4376. color:#FFFFFF;
  4377. line-height:40px;
  4378. }
  4379. #u122 .text {
  4380. position:absolute;
  4381. align-self:center;
  4382. padding:0px 0px 0px 0px;
  4383. box-sizing:border-box;
  4384. width:100%;
  4385. }
  4386. #u122_text {
  4387. border-width:0px;
  4388. white-space:nowrap;
  4389. text-transform:none;
  4390. }
  4391. #u123_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:88px;
  4397. height:40px;
  4398. background:inherit;
  4399. background-color:rgba(255, 255, 255, 0);
  4400. border:none;
  4401. border-left:0px;
  4402. border-top:0px;
  4403. border-right:0px;
  4404. border-radius:0px;
  4405. border-bottom-right-radius:0px;
  4406. border-bottom-left-radius:0px;
  4407. -moz-box-shadow:none;
  4408. -webkit-box-shadow:none;
  4409. box-shadow:none;
  4410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4411. font-weight:400;
  4412. font-style:normal;
  4413. font-size:14px;
  4414. color:#FFFFFF;
  4415. line-height:40px;
  4416. }
  4417. #u123 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:1297px;
  4421. top:272px;
  4422. width:88px;
  4423. height:40px;
  4424. display:flex;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:14px;
  4429. color:#FFFFFF;
  4430. line-height:40px;
  4431. }
  4432. #u123 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:0px 0px 0px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u123_text {
  4440. border-width:0px;
  4441. white-space:nowrap;
  4442. text-transform:none;
  4443. }
  4444. #u124_div {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:101px;
  4450. height:40px;
  4451. background:inherit;
  4452. background-color:rgba(255, 255, 255, 0);
  4453. border:none;
  4454. border-left:0px;
  4455. border-top:0px;
  4456. border-right:0px;
  4457. border-radius:0px;
  4458. border-bottom-right-radius:0px;
  4459. border-bottom-left-radius:0px;
  4460. -moz-box-shadow:none;
  4461. -webkit-box-shadow:none;
  4462. box-shadow:none;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:14px;
  4467. color:#FFFFFF;
  4468. line-height:40px;
  4469. }
  4470. #u124 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:1417px;
  4474. top:272px;
  4475. width:101px;
  4476. height:40px;
  4477. display:flex;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:14px;
  4482. color:#FFFFFF;
  4483. line-height:40px;
  4484. }
  4485. #u124 .text {
  4486. position:absolute;
  4487. align-self:center;
  4488. padding:0px 0px 0px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u124_text {
  4493. border-width:0px;
  4494. white-space:nowrap;
  4495. text-transform:none;
  4496. }
  4497. #u125_div {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:197px;
  4503. height:50px;
  4504. background:inherit;
  4505. background-color:rgba(255, 255, 255, 0);
  4506. border:none;
  4507. border-left:0px;
  4508. border-top:0px;
  4509. border-right:0px;
  4510. border-radius:0px;
  4511. border-bottom-right-radius:0px;
  4512. border-bottom-left-radius:0px;
  4513. -moz-box-shadow:none;
  4514. -webkit-box-shadow:none;
  4515. box-shadow:none;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:28px;
  4520. color:#000000;
  4521. text-align:center;
  4522. line-height:40px;
  4523. }
  4524. #u125 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:800px;
  4528. top:80px;
  4529. width:197px;
  4530. height:50px;
  4531. display:flex;
  4532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:28px;
  4536. color:#000000;
  4537. text-align:center;
  4538. line-height:40px;
  4539. }
  4540. #u125 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:0px 0px 0px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u125_text {
  4548. border-width:0px;
  4549. white-space:nowrap;
  4550. text-transform:none;
  4551. }
  4552. #u126 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:0px;
  4558. height:0px;
  4559. }
  4560. #u127_div {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:200px;
  4566. height:1187px;
  4567. background:inherit;
  4568. background-color:rgba(255, 255, 255, 1);
  4569. border:none;
  4570. border-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. }
  4575. #u127 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:120px;
  4579. top:50px;
  4580. width:200px;
  4581. height:1187px;
  4582. display:flex;
  4583. }
  4584. #u127 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 2px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u127_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. visibility:hidden;
  4596. }
  4597. #u128_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:200px;
  4603. height:60px;
  4604. background:inherit;
  4605. background-color:rgba(224, 231, 247, 1);
  4606. border:none;
  4607. border-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4612. font-weight:500;
  4613. font-style:normal;
  4614. font-size:18px;
  4615. }
  4616. #u128 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:120px;
  4620. top:50px;
  4621. width:200px;
  4622. height:60px;
  4623. display:flex;
  4624. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4625. font-weight:500;
  4626. font-style:normal;
  4627. font-size:18px;
  4628. }
  4629. #u128 .text {
  4630. position:absolute;
  4631. align-self:center;
  4632. padding:0px 0px 0px 20px;
  4633. box-sizing:border-box;
  4634. width:100%;
  4635. }
  4636. #u128_text {
  4637. border-width:0px;
  4638. word-wrap:break-word;
  4639. text-transform:none;
  4640. }
  4641. #u129_div {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:97px;
  4647. height:22px;
  4648. background:inherit;
  4649. background-color:rgba(255, 255, 255, 0);
  4650. border:none;
  4651. border-radius:0px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:16px;
  4659. }
  4660. #u129 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:147px;
  4664. top:167px;
  4665. width:97px;
  4666. height:22px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:16px;
  4672. }
  4673. #u129 .text {
  4674. position:absolute;
  4675. align-self:flex-start;
  4676. padding:0px 0px 0px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u129_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. }
  4685. #u130_img {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:201px;
  4691. height:2px;
  4692. }
  4693. #u130 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:120px;
  4697. top:255px;
  4698. width:200px;
  4699. height:1px;
  4700. display:flex;
  4701. }
  4702. #u130 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 2px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u130_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u131_div {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:65px;
  4721. height:22px;
  4722. background:inherit;
  4723. background-color:rgba(255, 255, 255, 0);
  4724. border:none;
  4725. border-radius:0px;
  4726. -moz-box-shadow:none;
  4727. -webkit-box-shadow:none;
  4728. box-shadow:none;
  4729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:16px;
  4733. }
  4734. #u131 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:147px;
  4738. top:208px;
  4739. width:65px;
  4740. height:22px;
  4741. display:flex;
  4742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:16px;
  4746. }
  4747. #u131 .text {
  4748. position:absolute;
  4749. align-self:flex-start;
  4750. padding:0px 0px 0px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u131_text {
  4755. border-width:0px;
  4756. white-space:nowrap;
  4757. text-transform:none;
  4758. }
  4759. #u132_img {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:201px;
  4765. height:2px;
  4766. }
  4767. #u132 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:120px;
  4771. top:583px;
  4772. width:200px;
  4773. height:1px;
  4774. display:flex;
  4775. }
  4776. #u132 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 2px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u132_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. visibility:hidden;
  4788. }
  4789. #u133_div {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:65px;
  4795. height:22px;
  4796. background:inherit;
  4797. background-color:rgba(255, 255, 255, 0);
  4798. border:none;
  4799. border-radius:0px;
  4800. -moz-box-shadow:none;
  4801. -webkit-box-shadow:none;
  4802. box-shadow:none;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:16px;
  4807. }
  4808. #u133 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:147px;
  4812. top:640px;
  4813. width:65px;
  4814. height:22px;
  4815. display:flex;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:16px;
  4820. }
  4821. #u133 .text {
  4822. position:absolute;
  4823. align-self:flex-start;
  4824. padding:0px 0px 0px 0px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u133_text {
  4829. border-width:0px;
  4830. white-space:nowrap;
  4831. text-transform:none;
  4832. }
  4833. #u134_div {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:49px;
  4839. height:17px;
  4840. background:inherit;
  4841. background-color:rgba(255, 255, 255, 0);
  4842. border:none;
  4843. border-radius:0px;
  4844. -moz-box-shadow:none;
  4845. -webkit-box-shadow:none;
  4846. box-shadow:none;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#AAAAAA;
  4852. }
  4853. #u134 {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:147px;
  4857. top:603px;
  4858. width:49px;
  4859. height:17px;
  4860. display:flex;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:12px;
  4865. color:#AAAAAA;
  4866. }
  4867. #u134 .text {
  4868. position:absolute;
  4869. align-self:flex-start;
  4870. padding:0px 0px 0px 0px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u134_text {
  4875. border-width:0px;
  4876. white-space:nowrap;
  4877. text-transform:none;
  4878. }
  4879. #u135_div {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:65px;
  4885. height:22px;
  4886. background:inherit;
  4887. background-color:rgba(255, 255, 255, 0);
  4888. border:none;
  4889. border-radius:0px;
  4890. -moz-box-shadow:none;
  4891. -webkit-box-shadow:none;
  4892. box-shadow:none;
  4893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:16px;
  4897. }
  4898. #u135 {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:147px;
  4902. top:312px;
  4903. width:65px;
  4904. height:22px;
  4905. display:flex;
  4906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4907. font-weight:400;
  4908. font-style:normal;
  4909. font-size:16px;
  4910. }
  4911. #u135 .text {
  4912. position:absolute;
  4913. align-self:flex-start;
  4914. padding:0px 0px 0px 0px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u135_text {
  4919. border-width:0px;
  4920. white-space:nowrap;
  4921. text-transform:none;
  4922. }
  4923. #u136_div {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:49px;
  4929. height:17px;
  4930. background:inherit;
  4931. background-color:rgba(255, 255, 255, 0);
  4932. border:none;
  4933. border-radius:0px;
  4934. -moz-box-shadow:none;
  4935. -webkit-box-shadow:none;
  4936. box-shadow:none;
  4937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:12px;
  4941. color:#AAAAAA;
  4942. }
  4943. #u136 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:147px;
  4947. top:275px;
  4948. width:49px;
  4949. height:17px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#AAAAAA;
  4956. }
  4957. #u136 .text {
  4958. position:absolute;
  4959. align-self:flex-start;
  4960. padding:0px 0px 0px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u136_text {
  4965. border-width:0px;
  4966. white-space:nowrap;
  4967. text-transform:none;
  4968. }
  4969. #u137_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:65px;
  4975. height:22px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 0);
  4978. border:none;
  4979. border-radius:0px;
  4980. -moz-box-shadow:none;
  4981. -webkit-box-shadow:none;
  4982. box-shadow:none;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:16px;
  4987. }
  4988. #u137 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:147px;
  4992. top:724px;
  4993. width:65px;
  4994. height:22px;
  4995. display:flex;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:16px;
  5000. }
  5001. #u137 .text {
  5002. position:absolute;
  5003. align-self:flex-start;
  5004. padding:0px 0px 0px 0px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u137_text {
  5009. border-width:0px;
  5010. white-space:nowrap;
  5011. text-transform:none;
  5012. }
  5013. #u138_div {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:49px;
  5019. height:17px;
  5020. background:inherit;
  5021. background-color:rgba(255, 255, 255, 0);
  5022. border:none;
  5023. border-radius:0px;
  5024. -moz-box-shadow:none;
  5025. -webkit-box-shadow:none;
  5026. box-shadow:none;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:12px;
  5031. color:#AAAAAA;
  5032. }
  5033. #u138 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:147px;
  5037. top:130px;
  5038. width:49px;
  5039. height:17px;
  5040. display:flex;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:12px;
  5045. color:#AAAAAA;
  5046. }
  5047. #u138 .text {
  5048. position:absolute;
  5049. align-self:flex-start;
  5050. padding:0px 0px 0px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u138_text {
  5055. border-width:0px;
  5056. white-space:nowrap;
  5057. text-transform:none;
  5058. }
  5059. #u139_img {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:201px;
  5065. height:2px;
  5066. }
  5067. #u139 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:120px;
  5071. top:857px;
  5072. width:200px;
  5073. height:1px;
  5074. display:flex;
  5075. }
  5076. #u139 .text {
  5077. position:absolute;
  5078. align-self:center;
  5079. padding:2px 2px 2px 2px;
  5080. box-sizing:border-box;
  5081. width:100%;
  5082. }
  5083. #u139_text {
  5084. border-width:0px;
  5085. word-wrap:break-word;
  5086. text-transform:none;
  5087. visibility:hidden;
  5088. }
  5089. #u140_div {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:65px;
  5095. height:22px;
  5096. background:inherit;
  5097. background-color:rgba(255, 255, 255, 0);
  5098. border:none;
  5099. border-radius:0px;
  5100. -moz-box-shadow:none;
  5101. -webkit-box-shadow:none;
  5102. box-shadow:none;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:16px;
  5107. }
  5108. #u140 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:147px;
  5112. top:914px;
  5113. width:65px;
  5114. height:22px;
  5115. display:flex;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:16px;
  5120. }
  5121. #u140 .text {
  5122. position:absolute;
  5123. align-self:flex-start;
  5124. padding:0px 0px 0px 0px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u140_text {
  5129. border-width:0px;
  5130. white-space:nowrap;
  5131. text-transform:none;
  5132. }
  5133. #u141_div {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:49px;
  5139. height:17px;
  5140. background:inherit;
  5141. background-color:rgba(255, 255, 255, 0);
  5142. border:none;
  5143. border-radius:0px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:12px;
  5151. color:#AAAAAA;
  5152. }
  5153. #u141 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:147px;
  5157. top:877px;
  5158. width:49px;
  5159. height:17px;
  5160. display:flex;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. color:#AAAAAA;
  5166. }
  5167. #u141 .text {
  5168. position:absolute;
  5169. align-self:flex-start;
  5170. padding:0px 0px 0px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u141_text {
  5175. border-width:0px;
  5176. white-space:nowrap;
  5177. text-transform:none;
  5178. }
  5179. #u142_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:65px;
  5185. height:22px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:16px;
  5197. }
  5198. #u142 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:147px;
  5202. top:806px;
  5203. width:65px;
  5204. height:22px;
  5205. display:flex;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:16px;
  5210. }
  5211. #u142 .text {
  5212. position:absolute;
  5213. align-self:flex-start;
  5214. padding:0px 0px 0px 0px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u142_text {
  5219. border-width:0px;
  5220. white-space:nowrap;
  5221. text-transform:none;
  5222. }
  5223. #u143_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:201px;
  5229. height:2px;
  5230. }
  5231. #u143 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:120px;
  5235. top:435px;
  5236. width:200px;
  5237. height:1px;
  5238. display:flex;
  5239. }
  5240. #u143 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 2px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u143_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. visibility:hidden;
  5252. }
  5253. #u144_div {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:65px;
  5259. height:22px;
  5260. background:inherit;
  5261. background-color:rgba(255, 255, 255, 0);
  5262. border:none;
  5263. border-radius:0px;
  5264. -moz-box-shadow:none;
  5265. -webkit-box-shadow:none;
  5266. box-shadow:none;
  5267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:16px;
  5271. }
  5272. #u144 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:147px;
  5276. top:492px;
  5277. width:65px;
  5278. height:22px;
  5279. display:flex;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:16px;
  5284. }
  5285. #u144 .text {
  5286. position:absolute;
  5287. align-self:flex-start;
  5288. padding:0px 0px 0px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u144_text {
  5293. border-width:0px;
  5294. white-space:nowrap;
  5295. text-transform:none;
  5296. }
  5297. #u145_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:49px;
  5303. height:17px;
  5304. background:inherit;
  5305. background-color:rgba(255, 255, 255, 0);
  5306. border:none;
  5307. border-radius:0px;
  5308. -moz-box-shadow:none;
  5309. -webkit-box-shadow:none;
  5310. box-shadow:none;
  5311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:12px;
  5315. color:#AAAAAA;
  5316. }
  5317. #u145 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:147px;
  5321. top:455px;
  5322. width:49px;
  5323. height:17px;
  5324. display:flex;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:12px;
  5329. color:#AAAAAA;
  5330. }
  5331. #u145 .text {
  5332. position:absolute;
  5333. align-self:flex-start;
  5334. padding:0px 0px 0px 0px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u145_text {
  5339. border-width:0px;
  5340. white-space:nowrap;
  5341. text-transform:none;
  5342. }
  5343. #u146_div {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:97px;
  5349. height:22px;
  5350. background:inherit;
  5351. background-color:rgba(255, 255, 255, 0);
  5352. border:none;
  5353. border-radius:0px;
  5354. -moz-box-shadow:none;
  5355. -webkit-box-shadow:none;
  5356. box-shadow:none;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:16px;
  5361. }
  5362. #u146 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:147px;
  5366. top:533px;
  5367. width:97px;
  5368. height:22px;
  5369. display:flex;
  5370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5371. font-weight:400;
  5372. font-style:normal;
  5373. font-size:16px;
  5374. }
  5375. #u146 .text {
  5376. position:absolute;
  5377. align-self:flex-start;
  5378. padding:0px 0px 0px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u146_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. }
  5387. #u147_div {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:65px;
  5393. height:22px;
  5394. background:inherit;
  5395. background-color:rgba(255, 255, 255, 0);
  5396. border:none;
  5397. border-radius:0px;
  5398. -moz-box-shadow:none;
  5399. -webkit-box-shadow:none;
  5400. box-shadow:none;
  5401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5402. font-weight:400;
  5403. font-style:normal;
  5404. font-size:16px;
  5405. }
  5406. #u147 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:147px;
  5410. top:354px;
  5411. width:65px;
  5412. height:22px;
  5413. display:flex;
  5414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:16px;
  5418. }
  5419. #u147 .text {
  5420. position:absolute;
  5421. align-self:flex-start;
  5422. padding:0px 0px 0px 0px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u147_text {
  5427. border-width:0px;
  5428. white-space:nowrap;
  5429. text-transform:none;
  5430. }
  5431. #u148_div {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:65px;
  5437. height:22px;
  5438. background:inherit;
  5439. background-color:rgba(255, 255, 255, 0);
  5440. border:none;
  5441. border-radius:0px;
  5442. -moz-box-shadow:none;
  5443. -webkit-box-shadow:none;
  5444. box-shadow:none;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:16px;
  5449. }
  5450. #u148 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:147px;
  5454. top:682px;
  5455. width:65px;
  5456. height:22px;
  5457. display:flex;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:16px;
  5462. }
  5463. #u148 .text {
  5464. position:absolute;
  5465. align-self:flex-start;
  5466. padding:0px 0px 0px 0px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u148_text {
  5471. border-width:0px;
  5472. white-space:nowrap;
  5473. text-transform:none;
  5474. }
  5475. #u149_div {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:0px;
  5479. top:0px;
  5480. width:65px;
  5481. height:22px;
  5482. background:inherit;
  5483. background-color:rgba(255, 255, 255, 0);
  5484. border:none;
  5485. border-radius:0px;
  5486. -moz-box-shadow:none;
  5487. -webkit-box-shadow:none;
  5488. box-shadow:none;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:16px;
  5493. }
  5494. #u149 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:147px;
  5498. top:765px;
  5499. width:65px;
  5500. height:22px;
  5501. display:flex;
  5502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:16px;
  5506. }
  5507. #u149 .text {
  5508. position:absolute;
  5509. align-self:flex-start;
  5510. padding:0px 0px 0px 0px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u149_text {
  5515. border-width:0px;
  5516. white-space:nowrap;
  5517. text-transform:none;
  5518. }
  5519. #u150_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:65px;
  5525. height:22px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 0);
  5528. border:none;
  5529. border-radius:0px;
  5530. -moz-box-shadow:none;
  5531. -webkit-box-shadow:none;
  5532. box-shadow:none;
  5533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:16px;
  5537. }
  5538. #u150 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:147px;
  5542. top:396px;
  5543. width:65px;
  5544. height:22px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:16px;
  5550. }
  5551. #u150 .text {
  5552. position:absolute;
  5553. align-self:flex-start;
  5554. padding:0px 0px 0px 0px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u150_text {
  5559. border-width:0px;
  5560. white-space:nowrap;
  5561. text-transform:none;
  5562. }