styles.css 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580
  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. #u74929_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u74929 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u74929 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u74929_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u74930_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. #u74930 {
  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. #u74930 .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. #u74930_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u74931_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. #u74931 {
  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. #u74931 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u74931_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u74932 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u74933_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u74933 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u74933 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u74933_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u74934_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. #u74934 {
  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. #u74934 .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. #u74934_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u74935_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. #u74935 {
  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. #u74935 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u74935_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u74936 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u74937_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u74937 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u74937 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u74937_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u74938_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u74938 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u74938 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u74938_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u74939 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u74940_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u74940 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u74940 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u74940_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u74941_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u74941 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u74941 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u74941_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u74942 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u74943_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u74943 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u74943 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u74943_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u74944_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u74944 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u74944 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u74944_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u74945 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u74946_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u74946 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u74946 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u74946_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u74947_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u74947 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u74947 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u74947_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u74948 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u74949_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u74949 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u74949 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u74949_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u74950_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u74950 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u74950 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u74950_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u74951 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u74952_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u74952 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u74952 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u74952_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u74953_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u74953 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u74953 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u74953_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u74954 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u74955_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u74955 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u74955 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u74955_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u74956_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u74956 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u74956 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u74956_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u74957 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u74958_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u74958 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u74958 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u74958_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u74959_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u74959 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u74959 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u74959_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u74960 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u74961_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u74961 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u74961 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u74961_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u74962_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u74962 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u74962 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u74962_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u74963_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u74963 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u74963 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u74963_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u74964_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u74964 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u74964 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u74964_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u74965_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u74965 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u74965 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u74965_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u74966_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u74966 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u74966 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u74966_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u74967 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u74968_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u74968 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u74968 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u74968_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u74969_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u74969 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u74969 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u74969_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u74970 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u74971_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u74971 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u74971 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u74971_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u74972_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u74972 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u74972 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u74972_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u74973 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u74974_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u74974_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u74974_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u74974 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u74974 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u74974_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u74974.disabled {
  1428. }
  1429. .u74974_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u74975_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u74975 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u74975 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u74975_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u74976_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u74976 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u74976 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u74976_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u74977_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u74977 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u74977 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u74977_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u74978_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1261px;
  1544. height:1191px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. }
  1553. #u74978 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1261px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u74978 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u74978_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u74979 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:0px;
  1581. height:0px;
  1582. }
  1583. #u74980_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:199px;
  1589. height:40px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 0);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1598. font-weight:500;
  1599. font-style:normal;
  1600. font-size:18px;
  1601. line-height:40px;
  1602. }
  1603. #u74980 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:743px;
  1607. top:82px;
  1608. width:199px;
  1609. height:40px;
  1610. display:flex;
  1611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1612. font-weight:500;
  1613. font-style:normal;
  1614. font-size:18px;
  1615. line-height:40px;
  1616. }
  1617. #u74980 .text {
  1618. position:absolute;
  1619. align-self:flex-start;
  1620. padding:0px 0px 0px 0px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u74980_text {
  1625. border-width:0px;
  1626. white-space:nowrap;
  1627. text-transform:none;
  1628. }
  1629. #u74981_img {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:30px;
  1635. height:30px;
  1636. }
  1637. #u74981 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:703px;
  1641. top:87px;
  1642. width:30px;
  1643. height:30px;
  1644. display:flex;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:10px;
  1649. color:#FFFFFF;
  1650. }
  1651. #u74981 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 2px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u74981_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. }
  1663. #u74982_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:85px;
  1669. height:40px;
  1670. background:inherit;
  1671. background-color:rgba(255, 255, 255, 0);
  1672. border:none;
  1673. border-radius:0px;
  1674. -moz-box-shadow:none;
  1675. -webkit-box-shadow:none;
  1676. box-shadow:none;
  1677. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1678. font-weight:500;
  1679. font-style:normal;
  1680. line-height:40px;
  1681. }
  1682. #u74982 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:729px;
  1686. top:140px;
  1687. width:85px;
  1688. height:40px;
  1689. display:flex;
  1690. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1691. font-weight:500;
  1692. font-style:normal;
  1693. line-height:40px;
  1694. }
  1695. #u74982 .text {
  1696. position:absolute;
  1697. align-self:flex-start;
  1698. padding:0px 0px 0px 0px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u74982_text {
  1703. border-width:0px;
  1704. white-space:nowrap;
  1705. text-transform:none;
  1706. }
  1707. #u74983_div {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:85px;
  1713. height:40px;
  1714. background:inherit;
  1715. background-color:rgba(255, 255, 255, 0);
  1716. border:none;
  1717. border-radius:0px;
  1718. -moz-box-shadow:none;
  1719. -webkit-box-shadow:none;
  1720. box-shadow:none;
  1721. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1722. font-weight:500;
  1723. font-style:normal;
  1724. line-height:40px;
  1725. }
  1726. #u74983 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:844px;
  1730. top:140px;
  1731. width:85px;
  1732. height:40px;
  1733. display:flex;
  1734. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1735. font-weight:500;
  1736. font-style:normal;
  1737. line-height:40px;
  1738. }
  1739. #u74983 .text {
  1740. position:absolute;
  1741. align-self:flex-start;
  1742. padding:0px 0px 0px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u74983_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u74984_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:113px;
  1757. height:40px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-radius:0px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1766. font-weight:500;
  1767. font-style:normal;
  1768. line-height:40px;
  1769. }
  1770. #u74984 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:959px;
  1774. top:140px;
  1775. width:113px;
  1776. height:40px;
  1777. display:flex;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. line-height:40px;
  1782. }
  1783. #u74984 .text {
  1784. position:absolute;
  1785. align-self:flex-start;
  1786. padding:0px 0px 0px 0px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u74984_text {
  1791. border-width:0px;
  1792. white-space:nowrap;
  1793. text-transform:none;
  1794. }
  1795. #u74985_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:57px;
  1801. height:40px;
  1802. background:inherit;
  1803. background-color:rgba(255, 255, 255, 0);
  1804. border:none;
  1805. border-radius:0px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1810. font-weight:500;
  1811. font-style:normal;
  1812. color:#1890FF;
  1813. line-height:40px;
  1814. }
  1815. #u74985 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:1102px;
  1819. top:140px;
  1820. width:57px;
  1821. height:40px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1824. font-weight:500;
  1825. font-style:normal;
  1826. color:#1890FF;
  1827. line-height:40px;
  1828. }
  1829. #u74985 .text {
  1830. position:absolute;
  1831. align-self:flex-start;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u74985_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u74986_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:113px;
  1847. height:40px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1856. font-weight:500;
  1857. font-style:normal;
  1858. line-height:40px;
  1859. }
  1860. #u74986 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:729px;
  1864. top:200px;
  1865. width:113px;
  1866. height:40px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1869. font-weight:500;
  1870. font-style:normal;
  1871. line-height:40px;
  1872. }
  1873. #u74986 .text {
  1874. position:absolute;
  1875. align-self:flex-start;
  1876. padding:0px 0px 0px 0px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u74986_text {
  1881. border-width:0px;
  1882. white-space:nowrap;
  1883. text-transform:none;
  1884. }
  1885. #u74987_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:445px;
  1891. height:40px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 0);
  1894. border:none;
  1895. border-radius:0px;
  1896. -moz-box-shadow:none;
  1897. -webkit-box-shadow:none;
  1898. box-shadow:none;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. color:#AAAAAA;
  1904. line-height:40px;
  1905. }
  1906. #u74987 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:729px;
  1910. top:282px;
  1911. width:445px;
  1912. height:40px;
  1913. display:flex;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:12px;
  1918. color:#AAAAAA;
  1919. line-height:40px;
  1920. }
  1921. #u74987 .text {
  1922. position:absolute;
  1923. align-self:flex-start;
  1924. padding:0px 0px 0px 0px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u74987_text {
  1929. border-width:0px;
  1930. white-space:nowrap;
  1931. text-transform:none;
  1932. }
  1933. #u74988_div {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:267px;
  1939. height:40px;
  1940. background:inherit;
  1941. background-color:rgba(255, 255, 255, 0);
  1942. border:none;
  1943. border-radius:0px;
  1944. -moz-box-shadow:none;
  1945. -webkit-box-shadow:none;
  1946. box-shadow:none;
  1947. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1948. font-weight:500;
  1949. font-style:normal;
  1950. line-height:40px;
  1951. }
  1952. #u74988 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:729px;
  1956. top:424px;
  1957. width:267px;
  1958. height:40px;
  1959. display:flex;
  1960. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1961. font-weight:500;
  1962. font-style:normal;
  1963. line-height:40px;
  1964. }
  1965. #u74988 .text {
  1966. position:absolute;
  1967. align-self:flex-start;
  1968. padding:0px 0px 0px 0px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u74988_text {
  1973. border-width:0px;
  1974. white-space:nowrap;
  1975. text-transform:none;
  1976. }
  1977. #u74989_div {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:733px;
  1983. height:17px;
  1984. background:inherit;
  1985. background-color:rgba(255, 255, 255, 0);
  1986. border:none;
  1987. border-radius:0px;
  1988. -moz-box-shadow:none;
  1989. -webkit-box-shadow:none;
  1990. box-shadow:none;
  1991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:12px;
  1995. color:#1890FF;
  1996. }
  1997. #u74989 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:792px;
  2001. top:472px;
  2002. width:733px;
  2003. height:17px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#1890FF;
  2010. }
  2011. #u74989 .text {
  2012. position:absolute;
  2013. align-self:flex-start;
  2014. padding:0px 0px 0px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u74989_text {
  2019. border-width:0px;
  2020. white-space:nowrap;
  2021. text-transform:none;
  2022. }
  2023. #u74990_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:239px;
  2029. height:40px;
  2030. background:inherit;
  2031. background-color:rgba(255, 255, 255, 0);
  2032. border:none;
  2033. border-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2038. font-weight:500;
  2039. font-style:normal;
  2040. line-height:40px;
  2041. }
  2042. #u74990 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:729px;
  2046. top:332px;
  2047. width:239px;
  2048. height:40px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2051. font-weight:500;
  2052. font-style:normal;
  2053. line-height:40px;
  2054. }
  2055. #u74990 .text {
  2056. position:absolute;
  2057. align-self:flex-start;
  2058. padding:0px 0px 0px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u74990_text {
  2063. border-width:0px;
  2064. white-space:nowrap;
  2065. text-transform:none;
  2066. }
  2067. #u74991 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:0px;
  2073. height:0px;
  2074. }
  2075. #u74992_input {
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:600px;
  2080. height:40px;
  2081. padding:5px 5px 10px 10px;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:13px;
  2086. letter-spacing:normal;
  2087. color:#000000;
  2088. vertical-align:none;
  2089. text-align:right;
  2090. text-transform:none;
  2091. background-color:transparent;
  2092. border-color:transparent;
  2093. }
  2094. #u74992_input.disabled {
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:600px;
  2099. height:40px;
  2100. padding:5px 5px 10px 10px;
  2101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2102. font-weight:400;
  2103. font-style:normal;
  2104. font-size:13px;
  2105. letter-spacing:normal;
  2106. color:#000000;
  2107. vertical-align:none;
  2108. text-align:right;
  2109. text-transform:none;
  2110. background-color:transparent;
  2111. border-color:transparent;
  2112. }
  2113. #u74992_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:600px;
  2119. height:40px;
  2120. background:inherit;
  2121. background-color:rgba(255, 255, 255, 1);
  2122. box-sizing:border-box;
  2123. border-width:1px;
  2124. border-style:solid;
  2125. border-color:rgba(215, 215, 215, 1);
  2126. border-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. text-align:right;
  2134. }
  2135. #u74992 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:729px;
  2139. top:243px;
  2140. width:600px;
  2141. height:40px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. text-align:right;
  2147. }
  2148. #u74992 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:5px 5px 10px 10px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u74992_div.disabled {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:600px;
  2161. height:40px;
  2162. background:inherit;
  2163. background-color:rgba(240, 240, 240, 1);
  2164. box-sizing:border-box;
  2165. border-width:1px;
  2166. border-style:solid;
  2167. border-color:rgba(215, 215, 215, 1);
  2168. border-radius:0px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. text-align:right;
  2176. }
  2177. #u74992.disabled {
  2178. }
  2179. #u74993_div {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:534px;
  2185. height:40px;
  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-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. color:#AAAAAA;
  2198. line-height:40px;
  2199. }
  2200. #u74993 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:738px;
  2204. top:242px;
  2205. width:534px;
  2206. height:40px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:12px;
  2212. color:#AAAAAA;
  2213. line-height:40px;
  2214. }
  2215. #u74993 .text {
  2216. position:absolute;
  2217. align-self:flex-start;
  2218. padding:0px 0px 0px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u74993_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. }
  2227. #u74994_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:50px;
  2233. height:31px;
  2234. }
  2235. #u74994 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:729px;
  2239. top:465px;
  2240. width:50px;
  2241. height:31px;
  2242. display:flex;
  2243. }
  2244. #u74994 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 2px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u74994_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u74995_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:505px;
  2263. height:17px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 0);
  2266. border:none;
  2267. border-radius:0px;
  2268. -moz-box-shadow:none;
  2269. -webkit-box-shadow:none;
  2270. box-shadow:none;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:12px;
  2275. color:#1890FF;
  2276. }
  2277. #u74995 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:792px;
  2281. top:380px;
  2282. width:505px;
  2283. height:17px;
  2284. display:flex;
  2285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:12px;
  2289. color:#1890FF;
  2290. }
  2291. #u74995 .text {
  2292. position:absolute;
  2293. align-self:flex-start;
  2294. padding:0px 0px 0px 0px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u74995_text {
  2299. border-width:0px;
  2300. white-space:nowrap;
  2301. text-transform:none;
  2302. }
  2303. #u74996_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:50px;
  2309. height:31px;
  2310. }
  2311. #u74996 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:729px;
  2315. top:372px;
  2316. width:50px;
  2317. height:31px;
  2318. display:flex;
  2319. }
  2320. #u74996 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 2px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u74996_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u74997 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:0px;
  2339. height:0px;
  2340. }
  2341. #u74998_div {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:350px;
  2347. height:1126px;
  2348. background:inherit;
  2349. background-color:rgba(240, 242, 245, 1);
  2350. border:none;
  2351. border-radius:0px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. }
  2356. #u74998 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:331px;
  2360. top:50px;
  2361. width:350px;
  2362. height:1126px;
  2363. display:flex;
  2364. }
  2365. #u74998 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 2px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u74998_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u74999 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:0px;
  2384. height:0px;
  2385. }
  2386. #u75000_div {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:300px;
  2392. height:40px;
  2393. background:inherit;
  2394. background-color:rgba(255, 255, 255, 1);
  2395. box-sizing:border-box;
  2396. border-width:1px;
  2397. border-style:solid;
  2398. border-color:rgba(242, 242, 242, 1);
  2399. border-radius:4px;
  2400. -moz-box-shadow:none;
  2401. -webkit-box-shadow:none;
  2402. box-shadow:none;
  2403. font-family:'Microsoft YaHei', sans-serif;
  2404. font-weight:400;
  2405. font-style:normal;
  2406. font-size:14px;
  2407. color:#CCCCCC;
  2408. text-align:left;
  2409. }
  2410. #u75000 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:351px;
  2414. top:119px;
  2415. width:300px;
  2416. height:40px;
  2417. display:flex;
  2418. font-family:'Microsoft YaHei', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:14px;
  2422. color:#CCCCCC;
  2423. text-align:left;
  2424. }
  2425. #u75000 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:2px 8px 2px 8px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u75000_text {
  2433. border-width:0px;
  2434. word-wrap:break-word;
  2435. text-transform:none;
  2436. visibility:hidden;
  2437. }
  2438. #u75001_input {
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:263px;
  2443. height:33px;
  2444. padding:2px 2px 2px 2px;
  2445. font-family:'Microsoft YaHei', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. font-size:14px;
  2449. letter-spacing:normal;
  2450. color:#000000;
  2451. vertical-align:none;
  2452. text-align:left;
  2453. text-transform:none;
  2454. background-color:transparent;
  2455. border-color:transparent;
  2456. }
  2457. #u75001_input.disabled {
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:263px;
  2462. height:33px;
  2463. padding:2px 2px 2px 2px;
  2464. font-family:'Microsoft YaHei', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:14px;
  2468. letter-spacing:normal;
  2469. color:#000000;
  2470. vertical-align:none;
  2471. text-align:left;
  2472. text-transform:none;
  2473. background-color:transparent;
  2474. border-color:transparent;
  2475. }
  2476. #u75001_div {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:263px;
  2482. height:33px;
  2483. background:inherit;
  2484. background-color:rgba(255, 255, 255, 1);
  2485. border:none;
  2486. border-radius:0px;
  2487. -moz-box-shadow:none;
  2488. -webkit-box-shadow:none;
  2489. box-shadow:none;
  2490. font-family:'Microsoft YaHei', sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:14px;
  2494. }
  2495. #u75001 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:359px;
  2499. top:120px;
  2500. width:263px;
  2501. height:33px;
  2502. display:flex;
  2503. font-family:'Microsoft YaHei', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:14px;
  2507. }
  2508. #u75001 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 2px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u75001_div.disabled {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:263px;
  2521. height:33px;
  2522. background:inherit;
  2523. background-color:rgba(240, 240, 240, 1);
  2524. border:none;
  2525. border-radius:0px;
  2526. -moz-box-shadow:none;
  2527. -webkit-box-shadow:none;
  2528. box-shadow:none;
  2529. font-family:'Microsoft YaHei', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:14px;
  2533. }
  2534. #u75001.disabled {
  2535. }
  2536. #u75002_img {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:14px;
  2542. height:14px;
  2543. }
  2544. #u75002 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:626px;
  2548. top:131px;
  2549. width:14px;
  2550. height:14px;
  2551. display:flex;
  2552. }
  2553. #u75002 .text {
  2554. position:absolute;
  2555. align-self:center;
  2556. padding:2px 2px 2px 2px;
  2557. box-sizing:border-box;
  2558. width:100%;
  2559. }
  2560. #u75002_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. visibility:hidden;
  2565. }
  2566. #u75003 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:0px;
  2572. height:0px;
  2573. }
  2574. #u75004_div {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:300px;
  2580. height:50px;
  2581. background:inherit;
  2582. background-color:rgba(242, 242, 242, 0);
  2583. border:none;
  2584. border-radius:4px;
  2585. -moz-box-shadow:none;
  2586. -webkit-box-shadow:none;
  2587. box-shadow:none;
  2588. font-family:'Microsoft YaHei', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#CCCCCC;
  2593. text-align:left;
  2594. }
  2595. #u75004 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:351px;
  2599. top:169px;
  2600. width:300px;
  2601. height:50px;
  2602. display:flex;
  2603. font-family:'Microsoft YaHei', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:14px;
  2607. color:#CCCCCC;
  2608. text-align:left;
  2609. }
  2610. #u75004 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 8px 2px 8px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u75004_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u75005_div {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:15px;
  2629. height:15px;
  2630. background:inherit;
  2631. background-color:rgba(51, 51, 51, 1);
  2632. border:none;
  2633. border-radius:8px;
  2634. -moz-box-shadow:none;
  2635. -webkit-box-shadow:none;
  2636. box-shadow:none;
  2637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:10px;
  2641. color:#FFFFFF;
  2642. }
  2643. #u75005 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:364px;
  2647. top:187px;
  2648. width:15px;
  2649. height:15px;
  2650. display:flex;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:10px;
  2655. color:#FFFFFF;
  2656. }
  2657. #u75005 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:0px 0px 0px 0px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u75005_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. }
  2669. #u75006_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:127px;
  2675. height:20px;
  2676. background:inherit;
  2677. background-color:rgba(51, 51, 51, 0);
  2678. border:none;
  2679. border-radius:4px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:14px;
  2687. text-align:left;
  2688. }
  2689. #u75006 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:385px;
  2693. top:184px;
  2694. width:127px;
  2695. height:20px;
  2696. display:flex;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:14px;
  2701. text-align:left;
  2702. }
  2703. #u75006 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:0px 0px 0px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u75006_text {
  2711. border-width:0px;
  2712. white-space:nowrap;
  2713. text-transform:none;
  2714. }
  2715. #u75007_div {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:73px;
  2721. height:50px;
  2722. background:inherit;
  2723. background-color:rgba(255, 255, 255, 0);
  2724. border:none;
  2725. border-left:0px;
  2726. border-top:0px;
  2727. border-right:0px;
  2728. border-radius:0px;
  2729. border-bottom-right-radius:0px;
  2730. border-bottom-left-radius:0px;
  2731. -moz-box-shadow:none;
  2732. -webkit-box-shadow:none;
  2733. box-shadow:none;
  2734. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2735. font-weight:500;
  2736. font-style:normal;
  2737. font-size:18px;
  2738. line-height:40px;
  2739. }
  2740. #u75007 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:345px;
  2744. top:63px;
  2745. width:73px;
  2746. height:50px;
  2747. display:flex;
  2748. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2749. font-weight:500;
  2750. font-style:normal;
  2751. font-size:18px;
  2752. line-height:40px;
  2753. }
  2754. #u75007 .text {
  2755. position:absolute;
  2756. align-self:center;
  2757. padding:5px 0px 5px 0px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u75007_text {
  2762. border-width:0px;
  2763. white-space:nowrap;
  2764. text-transform:none;
  2765. }
  2766. #u75008 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:0px;
  2772. height:0px;
  2773. }
  2774. #u75009_div {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:300px;
  2780. height:50px;
  2781. background:inherit;
  2782. background-color:rgba(242, 242, 242, 0.0980392156862745);
  2783. border:none;
  2784. border-radius:4px;
  2785. -moz-box-shadow:none;
  2786. -webkit-box-shadow:none;
  2787. box-shadow:none;
  2788. font-family:'Microsoft YaHei', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:14px;
  2792. color:#CCCCCC;
  2793. text-align:left;
  2794. }
  2795. #u75009 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:351px;
  2799. top:219px;
  2800. width:300px;
  2801. height:50px;
  2802. display:flex;
  2803. font-family:'Microsoft YaHei', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. color:#CCCCCC;
  2808. text-align:left;
  2809. }
  2810. #u75009 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 8px 2px 8px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u75009_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. visibility:hidden;
  2822. }
  2823. #u75010_div {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:15px;
  2829. height:15px;
  2830. background:inherit;
  2831. background-color:rgba(51, 51, 51, 1);
  2832. border:none;
  2833. border-radius:8px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:10px;
  2841. color:#FFFFFF;
  2842. }
  2843. #u75010 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:364px;
  2847. top:237px;
  2848. width:15px;
  2849. height:15px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:10px;
  2855. color:#FFFFFF;
  2856. }
  2857. #u75010 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:0px 0px 0px 0px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u75010_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. }
  2869. #u75011_div {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:127px;
  2875. height:20px;
  2876. background:inherit;
  2877. background-color:rgba(51, 51, 51, 0);
  2878. border:none;
  2879. border-radius:4px;
  2880. -moz-box-shadow:none;
  2881. -webkit-box-shadow:none;
  2882. box-shadow:none;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:14px;
  2887. text-align:left;
  2888. }
  2889. #u75011 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:385px;
  2893. top:234px;
  2894. width:127px;
  2895. height:20px;
  2896. display:flex;
  2897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2898. font-weight:400;
  2899. font-style:normal;
  2900. font-size:14px;
  2901. text-align:left;
  2902. }
  2903. #u75011 .text {
  2904. position:absolute;
  2905. align-self:center;
  2906. padding:0px 0px 0px 0px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u75011_text {
  2911. border-width:0px;
  2912. white-space:nowrap;
  2913. text-transform:none;
  2914. }
  2915. #u75012 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:0px;
  2921. height:0px;
  2922. }
  2923. #u75013_div {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:300px;
  2929. height:50px;
  2930. background:inherit;
  2931. background-color:rgba(242, 242, 242, 1);
  2932. border:none;
  2933. border-radius:4px;
  2934. -moz-box-shadow:none;
  2935. -webkit-box-shadow:none;
  2936. box-shadow:none;
  2937. font-family:'Microsoft YaHei', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. color:#CCCCCC;
  2942. text-align:left;
  2943. }
  2944. #u75013 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:351px;
  2948. top:269px;
  2949. width:300px;
  2950. height:50px;
  2951. display:flex;
  2952. font-family:'Microsoft YaHei', sans-serif;
  2953. font-weight:400;
  2954. font-style:normal;
  2955. font-size:14px;
  2956. color:#CCCCCC;
  2957. text-align:left;
  2958. }
  2959. #u75013 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 8px 2px 8px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u75013_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. visibility:hidden;
  2971. }
  2972. #u75014_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:15px;
  2978. height:15px;
  2979. background:inherit;
  2980. background-color:rgba(51, 51, 51, 0);
  2981. box-sizing:border-box;
  2982. border-width:1px;
  2983. border-style:solid;
  2984. border-color:rgba(51, 51, 51, 1);
  2985. border-radius:8px;
  2986. -moz-box-shadow:none;
  2987. -webkit-box-shadow:none;
  2988. box-shadow:none;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:10px;
  2993. }
  2994. #u75014 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:384px;
  2998. top:287px;
  2999. width:15px;
  3000. height:15px;
  3001. display:flex;
  3002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3003. font-weight:400;
  3004. font-style:normal;
  3005. font-size:10px;
  3006. }
  3007. #u75014 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:0px 0px 0px 0px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u75014_text {
  3015. border-width:0px;
  3016. word-wrap:break-word;
  3017. text-transform:none;
  3018. }
  3019. #u75015_div {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:155px;
  3025. height:20px;
  3026. background:inherit;
  3027. background-color:rgba(51, 51, 51, 0);
  3028. border:none;
  3029. border-radius:4px;
  3030. -moz-box-shadow:none;
  3031. -webkit-box-shadow:none;
  3032. box-shadow:none;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:14px;
  3037. text-align:left;
  3038. }
  3039. #u75015 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:405px;
  3043. top:284px;
  3044. width:155px;
  3045. height:20px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:14px;
  3051. text-align:left;
  3052. }
  3053. #u75015 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:0px 0px 0px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u75015_text {
  3061. border-width:0px;
  3062. white-space:nowrap;
  3063. text-transform:none;
  3064. }
  3065. #u75016 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:0px;
  3071. height:0px;
  3072. }
  3073. #u75017_div {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:300px;
  3079. height:50px;
  3080. background:inherit;
  3081. background-color:rgba(242, 242, 242, 0.0980392156862745);
  3082. border:none;
  3083. border-radius:4px;
  3084. -moz-box-shadow:none;
  3085. -webkit-box-shadow:none;
  3086. box-shadow:none;
  3087. font-family:'Microsoft YaHei', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:14px;
  3091. color:#CCCCCC;
  3092. text-align:left;
  3093. }
  3094. #u75017 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:351px;
  3098. top:319px;
  3099. width:300px;
  3100. height:50px;
  3101. display:flex;
  3102. font-family:'Microsoft YaHei', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:14px;
  3106. color:#CCCCCC;
  3107. text-align:left;
  3108. }
  3109. #u75017 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 8px 2px 8px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u75017_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u75018_div {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:15px;
  3128. height:15px;
  3129. background:inherit;
  3130. background-color:rgba(51, 51, 51, 1);
  3131. border:none;
  3132. border-radius:8px;
  3133. -moz-box-shadow:none;
  3134. -webkit-box-shadow:none;
  3135. box-shadow:none;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:10px;
  3140. color:#FFFFFF;
  3141. }
  3142. #u75018 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:364px;
  3146. top:337px;
  3147. width:15px;
  3148. height:15px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:10px;
  3154. color:#FFFFFF;
  3155. }
  3156. #u75018 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:0px 0px 0px 0px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u75018_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. }
  3168. #u75019_div {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:113px;
  3174. height:20px;
  3175. background:inherit;
  3176. background-color:rgba(51, 51, 51, 0);
  3177. border:none;
  3178. border-radius:4px;
  3179. -moz-box-shadow:none;
  3180. -webkit-box-shadow:none;
  3181. box-shadow:none;
  3182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. font-size:14px;
  3186. text-align:left;
  3187. }
  3188. #u75019 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:385px;
  3192. top:334px;
  3193. width:113px;
  3194. height:20px;
  3195. display:flex;
  3196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3197. font-weight:400;
  3198. font-style:normal;
  3199. font-size:14px;
  3200. text-align:left;
  3201. }
  3202. #u75019 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:0px 0px 0px 0px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u75019_text {
  3210. border-width:0px;
  3211. white-space:nowrap;
  3212. text-transform:none;
  3213. }
  3214. #u75020 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:0px;
  3220. height:0px;
  3221. }
  3222. #u75021_div {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:300px;
  3228. height:50px;
  3229. background:inherit;
  3230. background-color:rgba(242, 242, 242, 0.0980392156862745);
  3231. border:none;
  3232. border-radius:4px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. font-family:'Microsoft YaHei', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:14px;
  3240. color:#CCCCCC;
  3241. text-align:left;
  3242. }
  3243. #u75021 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:351px;
  3247. top:369px;
  3248. width:300px;
  3249. height:50px;
  3250. display:flex;
  3251. font-family:'Microsoft YaHei', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:14px;
  3255. color:#CCCCCC;
  3256. text-align:left;
  3257. }
  3258. #u75021 .text {
  3259. position:absolute;
  3260. align-self:center;
  3261. padding:2px 8px 2px 8px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u75021_text {
  3266. border-width:0px;
  3267. word-wrap:break-word;
  3268. text-transform:none;
  3269. visibility:hidden;
  3270. }
  3271. #u75022_div {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:15px;
  3277. height:15px;
  3278. background:inherit;
  3279. background-color:rgba(51, 51, 51, 1);
  3280. border:none;
  3281. border-radius:8px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:10px;
  3289. color:#FFFFFF;
  3290. }
  3291. #u75022 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:364px;
  3295. top:387px;
  3296. width:15px;
  3297. height:15px;
  3298. display:flex;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:10px;
  3303. color:#FFFFFF;
  3304. }
  3305. #u75022 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:0px 0px 0px 0px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u75022_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. }
  3317. #u75023_div {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:127px;
  3323. height:20px;
  3324. background:inherit;
  3325. background-color:rgba(51, 51, 51, 0);
  3326. border:none;
  3327. border-radius:4px;
  3328. -moz-box-shadow:none;
  3329. -webkit-box-shadow:none;
  3330. box-shadow:none;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:14px;
  3335. text-align:left;
  3336. }
  3337. #u75023 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:385px;
  3341. top:384px;
  3342. width:127px;
  3343. height:20px;
  3344. display:flex;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:14px;
  3349. text-align:left;
  3350. }
  3351. #u75023 .text {
  3352. position:absolute;
  3353. align-self:center;
  3354. padding:0px 0px 0px 0px;
  3355. box-sizing:border-box;
  3356. width:100%;
  3357. }
  3358. #u75023_text {
  3359. border-width:0px;
  3360. white-space:nowrap;
  3361. text-transform:none;
  3362. }
  3363. #u75025 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:0px;
  3369. height:0px;
  3370. }
  3371. #u75026_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:200px;
  3377. height:1191px;
  3378. }
  3379. #u75026 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:120px;
  3383. top:50px;
  3384. width:200px;
  3385. height:1191px;
  3386. display:flex;
  3387. }
  3388. #u75026 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 2px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u75026_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u75027_div {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:200px;
  3407. height:60px;
  3408. background:inherit;
  3409. background-color:rgba(224, 231, 247, 1);
  3410. border:none;
  3411. border-radius:0px;
  3412. -moz-box-shadow:none;
  3413. -webkit-box-shadow:none;
  3414. box-shadow:none;
  3415. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3416. font-weight:500;
  3417. font-style:normal;
  3418. font-size:18px;
  3419. }
  3420. #u75027 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:120px;
  3424. top:50px;
  3425. width:200px;
  3426. height:60px;
  3427. display:flex;
  3428. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3429. font-weight:500;
  3430. font-style:normal;
  3431. font-size:18px;
  3432. }
  3433. #u75027 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:0px 0px 0px 20px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u75027_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. }
  3445. #u75028 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:120px;
  3449. top:130px;
  3450. width:200px;
  3451. height:1078px;
  3452. }
  3453. #u75028_state0 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:200px;
  3459. height:1078px;
  3460. overflow:auto;
  3461. -webkit-overflow-scrolling:touch;
  3462. -ms-overflow-x:hidden;
  3463. overflow-x:hidden;
  3464. background-image:none;
  3465. border:none;
  3466. border-radius:0px;
  3467. -moz-box-shadow:none;
  3468. -webkit-box-shadow:none;
  3469. box-shadow:none;
  3470. }
  3471. #u75028_state0_content {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:1px;
  3477. height:1px;
  3478. }
  3479. #u75029_div {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:97px;
  3485. height:22px;
  3486. background:inherit;
  3487. background-color:rgba(255, 255, 255, 0);
  3488. border:none;
  3489. border-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:16px;
  3497. }
  3498. #u75029 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:30px;
  3502. top:0px;
  3503. width:97px;
  3504. height:22px;
  3505. display:flex;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:16px;
  3510. }
  3511. #u75029 .text {
  3512. position:absolute;
  3513. align-self:flex-start;
  3514. padding:0px 0px 0px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u75029_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. }
  3523. #u75030_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:65px;
  3529. height:22px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 0);
  3532. border:none;
  3533. border-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:16px;
  3541. }
  3542. #u75030 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:30px;
  3546. top:42px;
  3547. width:65px;
  3548. height:22px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:16px;
  3554. }
  3555. #u75030 .text {
  3556. position:absolute;
  3557. align-self:flex-start;
  3558. padding:0px 0px 0px 0px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u75030_text {
  3563. border-width:0px;
  3564. white-space:nowrap;
  3565. text-transform:none;
  3566. }
  3567. #u75031_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:49px;
  3573. height:22px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 0);
  3576. border:none;
  3577. border-radius:0px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:16px;
  3585. }
  3586. #u75031 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:30px;
  3590. top:145px;
  3591. width:49px;
  3592. height:22px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:16px;
  3598. }
  3599. #u75031 .text {
  3600. position:absolute;
  3601. align-self:flex-start;
  3602. padding:0px 0px 0px 0px;
  3603. box-sizing:border-box;
  3604. width:100%;
  3605. }
  3606. #u75031_text {
  3607. border-width:0px;
  3608. white-space:nowrap;
  3609. text-transform:none;
  3610. }
  3611. #u75032_div {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:97px;
  3617. height:22px;
  3618. background:inherit;
  3619. background-color:rgba(255, 255, 255, 0);
  3620. border:none;
  3621. border-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:16px;
  3629. }
  3630. #u75032 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:30px;
  3634. top:187px;
  3635. width:97px;
  3636. height:22px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:16px;
  3642. }
  3643. #u75032 .text {
  3644. position:absolute;
  3645. align-self:flex-start;
  3646. padding:0px 0px 0px 0px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u75032_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. }
  3655. #u75033_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:201px;
  3661. height:2px;
  3662. }
  3663. #u75033 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:84px;
  3668. width:200px;
  3669. height:1px;
  3670. display:flex;
  3671. }
  3672. #u75033 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 2px 2px 2px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u75033_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. visibility:hidden;
  3684. }
  3685. #u75034_div {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:49px;
  3691. height:17px;
  3692. background:inherit;
  3693. background-color:rgba(255, 255, 255, 0);
  3694. border:none;
  3695. border-radius:0px;
  3696. -moz-box-shadow:none;
  3697. -webkit-box-shadow:none;
  3698. box-shadow:none;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:12px;
  3703. color:#AAAAAA;
  3704. }
  3705. #u75034 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:30px;
  3709. top:105px;
  3710. width:49px;
  3711. height:17px;
  3712. display:flex;
  3713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:12px;
  3717. color:#AAAAAA;
  3718. }
  3719. #u75034 .text {
  3720. position:absolute;
  3721. align-self:flex-start;
  3722. padding:0px 0px 0px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u75034_text {
  3727. border-width:0px;
  3728. white-space:nowrap;
  3729. text-transform:none;
  3730. }
  3731. #u75035_div {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:97px;
  3737. height:22px;
  3738. background:inherit;
  3739. background-color:rgba(255, 255, 255, 0);
  3740. border:none;
  3741. border-radius:0px;
  3742. -moz-box-shadow:none;
  3743. -webkit-box-shadow:none;
  3744. box-shadow:none;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:16px;
  3749. }
  3750. #u75035 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:30px;
  3754. top:229px;
  3755. width:97px;
  3756. height:22px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:16px;
  3762. }
  3763. #u75035 .text {
  3764. position:absolute;
  3765. align-self:flex-start;
  3766. padding:0px 0px 0px 0px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u75035_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. }
  3775. #u75036_div {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:65px;
  3781. height:22px;
  3782. background:inherit;
  3783. background-color:rgba(255, 255, 255, 0);
  3784. border:none;
  3785. border-radius:0px;
  3786. -moz-box-shadow:none;
  3787. -webkit-box-shadow:none;
  3788. box-shadow:none;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:16px;
  3793. }
  3794. #u75036 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:30px;
  3798. top:271px;
  3799. width:65px;
  3800. height:22px;
  3801. display:flex;
  3802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:16px;
  3806. }
  3807. #u75036 .text {
  3808. position:absolute;
  3809. align-self:flex-start;
  3810. padding:0px 0px 0px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u75036_text {
  3815. border-width:0px;
  3816. white-space:nowrap;
  3817. text-transform:none;
  3818. }
  3819. #u75037_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:201px;
  3825. height:2px;
  3826. }
  3827. #u75037 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:313px;
  3832. width:200px;
  3833. height:1px;
  3834. display:flex;
  3835. }
  3836. #u75037 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u75037_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u75038_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:65px;
  3855. height:22px;
  3856. background:inherit;
  3857. background-color:rgba(255, 255, 255, 0);
  3858. border:none;
  3859. border-radius:0px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:16px;
  3867. }
  3868. #u75038 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:30px;
  3872. top:370px;
  3873. width:65px;
  3874. height:22px;
  3875. display:flex;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:16px;
  3880. }
  3881. #u75038 .text {
  3882. position:absolute;
  3883. align-self:flex-start;
  3884. padding:0px 0px 0px 0px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u75038_text {
  3889. border-width:0px;
  3890. white-space:nowrap;
  3891. text-transform:none;
  3892. }
  3893. #u75039_div {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:49px;
  3899. height:17px;
  3900. background:inherit;
  3901. background-color:rgba(255, 255, 255, 0);
  3902. border:none;
  3903. border-radius:0px;
  3904. -moz-box-shadow:none;
  3905. -webkit-box-shadow:none;
  3906. box-shadow:none;
  3907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:12px;
  3911. color:#AAAAAA;
  3912. }
  3913. #u75039 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:30px;
  3917. top:334px;
  3918. width:49px;
  3919. height:17px;
  3920. display:flex;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. color:#AAAAAA;
  3926. }
  3927. #u75039 .text {
  3928. position:absolute;
  3929. align-self:flex-start;
  3930. padding:0px 0px 0px 0px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u75039_text {
  3935. border-width:0px;
  3936. white-space:nowrap;
  3937. text-transform:none;
  3938. }
  3939. #u75040_div {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:65px;
  3945. height:22px;
  3946. background:inherit;
  3947. background-color:rgba(255, 255, 255, 0);
  3948. border:none;
  3949. border-radius:0px;
  3950. -moz-box-shadow:none;
  3951. -webkit-box-shadow:none;
  3952. box-shadow:none;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:16px;
  3957. }
  3958. #u75040 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:30px;
  3962. top:412px;
  3963. width:65px;
  3964. height:22px;
  3965. display:flex;
  3966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:16px;
  3970. }
  3971. #u75040 .text {
  3972. position:absolute;
  3973. align-self:flex-start;
  3974. padding:0px 0px 0px 0px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u75040_text {
  3979. border-width:0px;
  3980. white-space:nowrap;
  3981. text-transform:none;
  3982. }
  3983. #u75041_div {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:65px;
  3989. height:22px;
  3990. background:inherit;
  3991. background-color:rgba(255, 255, 255, 0);
  3992. border:none;
  3993. border-radius:0px;
  3994. -moz-box-shadow:none;
  3995. -webkit-box-shadow:none;
  3996. box-shadow:none;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:16px;
  4001. }
  4002. #u75041 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:30px;
  4006. top:454px;
  4007. width:65px;
  4008. height:22px;
  4009. display:flex;
  4010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4011. font-weight:400;
  4012. font-style:normal;
  4013. font-size:16px;
  4014. }
  4015. #u75041 .text {
  4016. position:absolute;
  4017. align-self:flex-start;
  4018. padding:0px 0px 0px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u75041_text {
  4023. border-width:0px;
  4024. white-space:nowrap;
  4025. text-transform:none;
  4026. }
  4027. #u75042_div {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:65px;
  4033. height:22px;
  4034. background:inherit;
  4035. background-color:rgba(255, 255, 255, 0);
  4036. border:none;
  4037. border-radius:0px;
  4038. -moz-box-shadow:none;
  4039. -webkit-box-shadow:none;
  4040. box-shadow:none;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:16px;
  4045. }
  4046. #u75042 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:30px;
  4050. top:496px;
  4051. width:65px;
  4052. height:22px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:16px;
  4058. }
  4059. #u75042 .text {
  4060. position:absolute;
  4061. align-self:flex-start;
  4062. padding:0px 0px 0px 0px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u75042_text {
  4067. border-width:0px;
  4068. white-space:nowrap;
  4069. text-transform:none;
  4070. }
  4071. #u75043_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:65px;
  4077. height:22px;
  4078. background:inherit;
  4079. background-color:rgba(255, 255, 255, 0);
  4080. border:none;
  4081. border-radius:0px;
  4082. -moz-box-shadow:none;
  4083. -webkit-box-shadow:none;
  4084. box-shadow:none;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:16px;
  4089. }
  4090. #u75043 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:30px;
  4094. top:538px;
  4095. width:65px;
  4096. height:22px;
  4097. display:flex;
  4098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4099. font-weight:400;
  4100. font-style:normal;
  4101. font-size:16px;
  4102. }
  4103. #u75043 .text {
  4104. position:absolute;
  4105. align-self:flex-start;
  4106. padding:0px 0px 0px 0px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u75043_text {
  4111. border-width:0px;
  4112. white-space:nowrap;
  4113. text-transform:none;
  4114. }
  4115. #u75044_div {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:65px;
  4121. height:22px;
  4122. background:inherit;
  4123. background-color:rgba(255, 255, 255, 0);
  4124. border:none;
  4125. border-radius:0px;
  4126. -moz-box-shadow:none;
  4127. -webkit-box-shadow:none;
  4128. box-shadow:none;
  4129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:16px;
  4133. }
  4134. #u75044 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:30px;
  4138. top:580px;
  4139. width:65px;
  4140. height:22px;
  4141. display:flex;
  4142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:16px;
  4146. }
  4147. #u75044 .text {
  4148. position:absolute;
  4149. align-self:flex-start;
  4150. padding:0px 0px 0px 0px;
  4151. box-sizing:border-box;
  4152. width:100%;
  4153. }
  4154. #u75044_text {
  4155. border-width:0px;
  4156. white-space:nowrap;
  4157. text-transform:none;
  4158. }
  4159. #u75045_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:201px;
  4165. height:2px;
  4166. }
  4167. #u75045 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:1289px;
  4172. width:200px;
  4173. height:1px;
  4174. display:flex;
  4175. }
  4176. #u75045 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 2px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u75045_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. visibility:hidden;
  4188. }
  4189. #u75046_div {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:65px;
  4195. height:22px;
  4196. background:inherit;
  4197. background-color:rgba(255, 255, 255, 0);
  4198. border:none;
  4199. border-radius:0px;
  4200. -moz-box-shadow:none;
  4201. -webkit-box-shadow:none;
  4202. box-shadow:none;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:16px;
  4207. }
  4208. #u75046 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:30px;
  4212. top:1346px;
  4213. width:65px;
  4214. height:22px;
  4215. display:flex;
  4216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:16px;
  4220. }
  4221. #u75046 .text {
  4222. position:absolute;
  4223. align-self:flex-start;
  4224. padding:0px 0px 0px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u75046_text {
  4229. border-width:0px;
  4230. white-space:nowrap;
  4231. text-transform:none;
  4232. }
  4233. #u75047_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:49px;
  4239. height:17px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-radius:0px;
  4244. -moz-box-shadow:none;
  4245. -webkit-box-shadow:none;
  4246. box-shadow:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:12px;
  4251. color:#AAAAAA;
  4252. }
  4253. #u75047 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:30px;
  4257. top:1310px;
  4258. width:49px;
  4259. height:17px;
  4260. display:flex;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. color:#AAAAAA;
  4266. }
  4267. #u75047 .text {
  4268. position:absolute;
  4269. align-self:flex-start;
  4270. padding:0px 0px 0px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u75047_text {
  4275. border-width:0px;
  4276. white-space:nowrap;
  4277. text-transform:none;
  4278. }
  4279. #u75048_div {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:65px;
  4285. height:22px;
  4286. background:inherit;
  4287. background-color:rgba(255, 255, 255, 0);
  4288. border:none;
  4289. border-radius:0px;
  4290. -moz-box-shadow:none;
  4291. -webkit-box-shadow:none;
  4292. box-shadow:none;
  4293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4294. font-weight:400;
  4295. font-style:normal;
  4296. font-size:16px;
  4297. }
  4298. #u75048 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:30px;
  4302. top:1388px;
  4303. width:65px;
  4304. height:22px;
  4305. display:flex;
  4306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:16px;
  4310. }
  4311. #u75048 .text {
  4312. position:absolute;
  4313. align-self:flex-start;
  4314. padding:0px 0px 0px 0px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u75048_text {
  4319. border-width:0px;
  4320. white-space:nowrap;
  4321. text-transform:none;
  4322. }
  4323. #u75049_div {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:65px;
  4329. height:22px;
  4330. background:inherit;
  4331. background-color:rgba(255, 255, 255, 0);
  4332. border:none;
  4333. border-radius:0px;
  4334. -moz-box-shadow:none;
  4335. -webkit-box-shadow:none;
  4336. box-shadow:none;
  4337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:16px;
  4341. }
  4342. #u75049 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:30px;
  4346. top:1472px;
  4347. width:65px;
  4348. height:22px;
  4349. display:flex;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:16px;
  4354. }
  4355. #u75049 .text {
  4356. position:absolute;
  4357. align-self:flex-start;
  4358. padding:0px 0px 0px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u75049_text {
  4363. border-width:0px;
  4364. white-space:nowrap;
  4365. text-transform:none;
  4366. }
  4367. #u75050_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:201px;
  4373. height:2px;
  4374. }
  4375. #u75050 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:1514px;
  4380. width:200px;
  4381. height:1px;
  4382. display:flex;
  4383. }
  4384. #u75050 .text {
  4385. position:absolute;
  4386. align-self:center;
  4387. padding:2px 2px 2px 2px;
  4388. box-sizing:border-box;
  4389. width:100%;
  4390. }
  4391. #u75050_text {
  4392. border-width:0px;
  4393. word-wrap:break-word;
  4394. text-transform:none;
  4395. visibility:hidden;
  4396. }
  4397. #u75051_div {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:49px;
  4403. height:22px;
  4404. background:inherit;
  4405. background-color:rgba(255, 255, 255, 0);
  4406. border:none;
  4407. border-radius:0px;
  4408. -moz-box-shadow:none;
  4409. -webkit-box-shadow:none;
  4410. box-shadow:none;
  4411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:16px;
  4415. }
  4416. #u75051 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:30px;
  4420. top:1571px;
  4421. width:49px;
  4422. height:22px;
  4423. display:flex;
  4424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4425. font-weight:400;
  4426. font-style:normal;
  4427. font-size:16px;
  4428. }
  4429. #u75051 .text {
  4430. position:absolute;
  4431. align-self:flex-start;
  4432. padding:0px 0px 0px 0px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u75051_text {
  4437. border-width:0px;
  4438. white-space:nowrap;
  4439. text-transform:none;
  4440. }
  4441. #u75052_div {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:49px;
  4447. height:17px;
  4448. background:inherit;
  4449. background-color:rgba(255, 255, 255, 0);
  4450. border:none;
  4451. border-radius:0px;
  4452. -moz-box-shadow:none;
  4453. -webkit-box-shadow:none;
  4454. box-shadow:none;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. color:#AAAAAA;
  4460. }
  4461. #u75052 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:30px;
  4465. top:1535px;
  4466. width:49px;
  4467. height:17px;
  4468. display:flex;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:12px;
  4473. color:#AAAAAA;
  4474. }
  4475. #u75052 .text {
  4476. position:absolute;
  4477. align-self:flex-start;
  4478. padding:0px 0px 0px 0px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u75052_text {
  4483. border-width:0px;
  4484. white-space:nowrap;
  4485. text-transform:none;
  4486. }
  4487. #u75053_div {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:49px;
  4493. height:22px;
  4494. background:inherit;
  4495. background-color:rgba(255, 255, 255, 0);
  4496. border:none;
  4497. border-radius:0px;
  4498. -moz-box-shadow:none;
  4499. -webkit-box-shadow:none;
  4500. box-shadow:none;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:16px;
  4505. }
  4506. #u75053 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:30px;
  4510. top:1613px;
  4511. width:49px;
  4512. height:22px;
  4513. display:flex;
  4514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:16px;
  4518. }
  4519. #u75053 .text {
  4520. position:absolute;
  4521. align-self:flex-start;
  4522. padding:0px 0px 0px 0px;
  4523. box-sizing:border-box;
  4524. width:100%;
  4525. }
  4526. #u75053_text {
  4527. border-width:0px;
  4528. white-space:nowrap;
  4529. text-transform:none;
  4530. }
  4531. #u75054_div {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:65px;
  4537. height:22px;
  4538. background:inherit;
  4539. background-color:rgba(255, 255, 255, 0);
  4540. border:none;
  4541. border-radius:0px;
  4542. -moz-box-shadow:none;
  4543. -webkit-box-shadow:none;
  4544. box-shadow:none;
  4545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:16px;
  4549. }
  4550. #u75054 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:30px;
  4554. top:1655px;
  4555. width:65px;
  4556. height:22px;
  4557. display:flex;
  4558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:16px;
  4562. }
  4563. #u75054 .text {
  4564. position:absolute;
  4565. align-self:flex-start;
  4566. padding:0px 0px 0px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u75054_text {
  4571. border-width:0px;
  4572. white-space:nowrap;
  4573. text-transform:none;
  4574. }
  4575. #u75055_img {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:201px;
  4581. height:2px;
  4582. }
  4583. #u75055 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:1697px;
  4588. width:200px;
  4589. height:1px;
  4590. display:flex;
  4591. }
  4592. #u75055 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 2px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u75055_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u75056_div {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:81px;
  4611. height:22px;
  4612. background:inherit;
  4613. background-color:rgba(255, 255, 255, 0);
  4614. border:none;
  4615. border-radius:0px;
  4616. -moz-box-shadow:none;
  4617. -webkit-box-shadow:none;
  4618. box-shadow:none;
  4619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. font-size:16px;
  4623. }
  4624. #u75056 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:30px;
  4628. top:1754px;
  4629. width:81px;
  4630. height:22px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:16px;
  4636. }
  4637. #u75056 .text {
  4638. position:absolute;
  4639. align-self:flex-start;
  4640. padding:0px 0px 0px 0px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u75056_text {
  4645. border-width:0px;
  4646. white-space:nowrap;
  4647. text-transform:none;
  4648. }
  4649. #u75057_div {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:49px;
  4655. height:17px;
  4656. background:inherit;
  4657. background-color:rgba(255, 255, 255, 0);
  4658. border:none;
  4659. border-radius:0px;
  4660. -moz-box-shadow:none;
  4661. -webkit-box-shadow:none;
  4662. box-shadow:none;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:12px;
  4667. color:#AAAAAA;
  4668. }
  4669. #u75057 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:30px;
  4673. top:1718px;
  4674. width:49px;
  4675. height:17px;
  4676. display:flex;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#AAAAAA;
  4682. }
  4683. #u75057 .text {
  4684. position:absolute;
  4685. align-self:flex-start;
  4686. padding:0px 0px 0px 0px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u75057_text {
  4691. border-width:0px;
  4692. white-space:nowrap;
  4693. text-transform:none;
  4694. }
  4695. #u75058_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:81px;
  4701. height:22px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 0);
  4704. border:none;
  4705. border-radius:0px;
  4706. -moz-box-shadow:none;
  4707. -webkit-box-shadow:none;
  4708. box-shadow:none;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:16px;
  4713. }
  4714. #u75058 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:30px;
  4718. top:1796px;
  4719. width:81px;
  4720. height:22px;
  4721. display:flex;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:16px;
  4726. }
  4727. #u75058 .text {
  4728. position:absolute;
  4729. align-self:flex-start;
  4730. padding:0px 0px 0px 0px;
  4731. box-sizing:border-box;
  4732. width:100%;
  4733. }
  4734. #u75058_text {
  4735. border-width:0px;
  4736. white-space:nowrap;
  4737. text-transform:none;
  4738. }
  4739. #u75059_div {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:81px;
  4745. height:22px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 0);
  4748. border:none;
  4749. border-radius:0px;
  4750. -moz-box-shadow:none;
  4751. -webkit-box-shadow:none;
  4752. box-shadow:none;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:16px;
  4757. }
  4758. #u75059 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:30px;
  4762. top:1838px;
  4763. width:81px;
  4764. height:22px;
  4765. display:flex;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:16px;
  4770. }
  4771. #u75059 .text {
  4772. position:absolute;
  4773. align-self:flex-start;
  4774. padding:0px 0px 0px 0px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u75059_text {
  4779. border-width:0px;
  4780. white-space:nowrap;
  4781. text-transform:none;
  4782. }
  4783. #u75060_div {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:65px;
  4789. height:22px;
  4790. background:inherit;
  4791. background-color:rgba(255, 255, 255, 0);
  4792. border:none;
  4793. border-radius:0px;
  4794. -moz-box-shadow:none;
  4795. -webkit-box-shadow:none;
  4796. box-shadow:none;
  4797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:16px;
  4801. }
  4802. #u75060 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:30px;
  4806. top:1430px;
  4807. width:65px;
  4808. height:22px;
  4809. display:flex;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:16px;
  4814. }
  4815. #u75060 .text {
  4816. position:absolute;
  4817. align-self:flex-start;
  4818. padding:0px 0px 0px 0px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u75060_text {
  4823. border-width:0px;
  4824. white-space:nowrap;
  4825. text-transform:none;
  4826. }
  4827. #u75061_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:201px;
  4833. height:2px;
  4834. }
  4835. #u75061 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:669px;
  4840. width:200px;
  4841. height:1px;
  4842. display:flex;
  4843. }
  4844. #u75061 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u75061_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u75062_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:65px;
  4863. height:22px;
  4864. background:inherit;
  4865. background-color:rgba(255, 255, 255, 0);
  4866. border:none;
  4867. border-radius:0px;
  4868. -moz-box-shadow:none;
  4869. -webkit-box-shadow:none;
  4870. box-shadow:none;
  4871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:16px;
  4875. }
  4876. #u75062 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:30px;
  4880. top:726px;
  4881. width:65px;
  4882. height:22px;
  4883. display:flex;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:16px;
  4888. }
  4889. #u75062 .text {
  4890. position:absolute;
  4891. align-self:flex-start;
  4892. padding:0px 0px 0px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u75062_text {
  4897. border-width:0px;
  4898. white-space:nowrap;
  4899. text-transform:none;
  4900. }
  4901. #u75063_div {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:49px;
  4907. height:17px;
  4908. background:inherit;
  4909. background-color:rgba(255, 255, 255, 0);
  4910. border:none;
  4911. border-radius:0px;
  4912. -moz-box-shadow:none;
  4913. -webkit-box-shadow:none;
  4914. box-shadow:none;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:12px;
  4919. color:#AAAAAA;
  4920. }
  4921. #u75063 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:30px;
  4925. top:690px;
  4926. width:49px;
  4927. height:17px;
  4928. display:flex;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:12px;
  4933. color:#AAAAAA;
  4934. }
  4935. #u75063 .text {
  4936. position:absolute;
  4937. align-self:flex-start;
  4938. padding:0px 0px 0px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u75063_text {
  4943. border-width:0px;
  4944. white-space:nowrap;
  4945. text-transform:none;
  4946. }
  4947. #u75064_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:65px;
  4953. height:22px;
  4954. background:inherit;
  4955. background-color:rgba(255, 255, 255, 0);
  4956. border:none;
  4957. border-radius:0px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:16px;
  4965. }
  4966. #u75064 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:30px;
  4970. top:768px;
  4971. width:65px;
  4972. height:22px;
  4973. display:flex;
  4974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:16px;
  4978. }
  4979. #u75064 .text {
  4980. position:absolute;
  4981. align-self:flex-start;
  4982. padding:0px 0px 0px 0px;
  4983. box-sizing:border-box;
  4984. width:100%;
  4985. }
  4986. #u75064_text {
  4987. border-width:0px;
  4988. white-space:nowrap;
  4989. text-transform:none;
  4990. }
  4991. #u75065_div {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:65px;
  4997. height:22px;
  4998. background:inherit;
  4999. background-color:rgba(255, 255, 255, 0);
  5000. border:none;
  5001. border-radius:0px;
  5002. -moz-box-shadow:none;
  5003. -webkit-box-shadow:none;
  5004. box-shadow:none;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:16px;
  5009. }
  5010. #u75065 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:30px;
  5014. top:852px;
  5015. width:65px;
  5016. height:22px;
  5017. display:flex;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:16px;
  5022. }
  5023. #u75065 .text {
  5024. position:absolute;
  5025. align-self:flex-start;
  5026. padding:0px 0px 0px 0px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u75065_text {
  5031. border-width:0px;
  5032. white-space:nowrap;
  5033. text-transform:none;
  5034. }
  5035. #u75066_div {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:65px;
  5041. height:22px;
  5042. background:inherit;
  5043. background-color:rgba(255, 255, 255, 0);
  5044. border:none;
  5045. border-radius:0px;
  5046. -moz-box-shadow:none;
  5047. -webkit-box-shadow:none;
  5048. box-shadow:none;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:16px;
  5053. }
  5054. #u75066 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:30px;
  5058. top:810px;
  5059. width:65px;
  5060. height:22px;
  5061. display:flex;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:16px;
  5066. }
  5067. #u75066 .text {
  5068. position:absolute;
  5069. align-self:flex-start;
  5070. padding:0px 0px 0px 0px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u75066_text {
  5075. border-width:0px;
  5076. white-space:nowrap;
  5077. text-transform:none;
  5078. }
  5079. #u75067_div {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:65px;
  5085. height:22px;
  5086. background:inherit;
  5087. background-color:rgba(255, 255, 255, 0);
  5088. border:none;
  5089. border-radius:0px;
  5090. -moz-box-shadow:none;
  5091. -webkit-box-shadow:none;
  5092. box-shadow:none;
  5093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. font-size:16px;
  5097. }
  5098. #u75067 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:30px;
  5102. top:894px;
  5103. width:65px;
  5104. height:22px;
  5105. display:flex;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:16px;
  5110. }
  5111. #u75067 .text {
  5112. position:absolute;
  5113. align-self:flex-start;
  5114. padding:0px 0px 0px 0px;
  5115. box-sizing:border-box;
  5116. width:100%;
  5117. }
  5118. #u75067_text {
  5119. border-width:0px;
  5120. white-space:nowrap;
  5121. text-transform:none;
  5122. }
  5123. #u75068_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:65px;
  5129. height:22px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 0);
  5132. border:none;
  5133. border-radius:0px;
  5134. -moz-box-shadow:none;
  5135. -webkit-box-shadow:none;
  5136. box-shadow:none;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:16px;
  5141. }
  5142. #u75068 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:30px;
  5146. top:936px;
  5147. width:65px;
  5148. height:22px;
  5149. display:flex;
  5150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5151. font-weight:400;
  5152. font-style:normal;
  5153. font-size:16px;
  5154. }
  5155. #u75068 .text {
  5156. position:absolute;
  5157. align-self:flex-start;
  5158. padding:0px 0px 0px 0px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u75068_text {
  5163. border-width:0px;
  5164. white-space:nowrap;
  5165. text-transform:none;
  5166. }
  5167. #u75069_img {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:201px;
  5173. height:2px;
  5174. }
  5175. #u75069 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:1018px;
  5180. width:200px;
  5181. height:1px;
  5182. display:flex;
  5183. }
  5184. #u75069 .text {
  5185. position:absolute;
  5186. align-self:center;
  5187. padding:2px 2px 2px 2px;
  5188. box-sizing:border-box;
  5189. width:100%;
  5190. }
  5191. #u75069_text {
  5192. border-width:0px;
  5193. word-wrap:break-word;
  5194. text-transform:none;
  5195. visibility:hidden;
  5196. }
  5197. #u75070_div {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:0px;
  5201. top:0px;
  5202. width:65px;
  5203. height:22px;
  5204. background:inherit;
  5205. background-color:rgba(255, 255, 255, 0);
  5206. border:none;
  5207. border-radius:0px;
  5208. -moz-box-shadow:none;
  5209. -webkit-box-shadow:none;
  5210. box-shadow:none;
  5211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5212. font-weight:400;
  5213. font-style:normal;
  5214. font-size:16px;
  5215. }
  5216. #u75070 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:30px;
  5220. top:1075px;
  5221. width:65px;
  5222. height:22px;
  5223. display:flex;
  5224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:16px;
  5228. }
  5229. #u75070 .text {
  5230. position:absolute;
  5231. align-self:flex-start;
  5232. padding:0px 0px 0px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u75070_text {
  5237. border-width:0px;
  5238. white-space:nowrap;
  5239. text-transform:none;
  5240. }
  5241. #u75071_div {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:49px;
  5247. height:17px;
  5248. background:inherit;
  5249. background-color:rgba(255, 255, 255, 0);
  5250. border:none;
  5251. border-radius:0px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:12px;
  5259. color:#AAAAAA;
  5260. }
  5261. #u75071 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:30px;
  5265. top:1039px;
  5266. width:49px;
  5267. height:17px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. color:#AAAAAA;
  5274. }
  5275. #u75071 .text {
  5276. position:absolute;
  5277. align-self:flex-start;
  5278. padding:0px 0px 0px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u75071_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u75072_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:65px;
  5293. height:22px;
  5294. background:inherit;
  5295. background-color:rgba(255, 255, 255, 0);
  5296. border:none;
  5297. border-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:16px;
  5305. }
  5306. #u75072 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:30px;
  5310. top:1117px;
  5311. width:65px;
  5312. height:22px;
  5313. display:flex;
  5314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:16px;
  5318. }
  5319. #u75072 .text {
  5320. position:absolute;
  5321. align-self:flex-start;
  5322. padding:0px 0px 0px 0px;
  5323. box-sizing:border-box;
  5324. width:100%;
  5325. }
  5326. #u75072_text {
  5327. border-width:0px;
  5328. white-space:nowrap;
  5329. text-transform:none;
  5330. }
  5331. #u75073_div {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:0px;
  5336. width:65px;
  5337. height:22px;
  5338. background:inherit;
  5339. background-color:rgba(255, 255, 255, 0);
  5340. border:none;
  5341. border-radius:0px;
  5342. -moz-box-shadow:none;
  5343. -webkit-box-shadow:none;
  5344. box-shadow:none;
  5345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. font-size:16px;
  5349. }
  5350. #u75073 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:30px;
  5354. top:1201px;
  5355. width:65px;
  5356. height:22px;
  5357. display:flex;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:16px;
  5362. }
  5363. #u75073 .text {
  5364. position:absolute;
  5365. align-self:flex-start;
  5366. padding:0px 0px 0px 0px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u75073_text {
  5371. border-width:0px;
  5372. white-space:nowrap;
  5373. text-transform:none;
  5374. }
  5375. #u75074_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:65px;
  5381. height:22px;
  5382. background:inherit;
  5383. background-color:rgba(255, 255, 255, 0);
  5384. border:none;
  5385. border-radius:0px;
  5386. -moz-box-shadow:none;
  5387. -webkit-box-shadow:none;
  5388. box-shadow:none;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:16px;
  5393. }
  5394. #u75074 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:30px;
  5398. top:1159px;
  5399. width:65px;
  5400. height:22px;
  5401. display:flex;
  5402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:16px;
  5406. }
  5407. #u75074 .text {
  5408. position:absolute;
  5409. align-self:flex-start;
  5410. padding:0px 0px 0px 0px;
  5411. box-sizing:border-box;
  5412. width:100%;
  5413. }
  5414. #u75074_text {
  5415. border-width:0px;
  5416. white-space:nowrap;
  5417. text-transform:none;
  5418. }
  5419. #u75075_div {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:65px;
  5425. height:22px;
  5426. background:inherit;
  5427. background-color:rgba(255, 255, 255, 0);
  5428. border:none;
  5429. border-radius:0px;
  5430. -moz-box-shadow:none;
  5431. -webkit-box-shadow:none;
  5432. box-shadow:none;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:16px;
  5437. }
  5438. #u75075 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:30px;
  5442. top:1243px;
  5443. width:65px;
  5444. height:22px;
  5445. display:flex;
  5446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:16px;
  5450. }
  5451. #u75075 .text {
  5452. position:absolute;
  5453. align-self:flex-start;
  5454. padding:0px 0px 0px 0px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u75075_text {
  5459. border-width:0px;
  5460. white-space:nowrap;
  5461. text-transform:none;
  5462. }
  5463. #u75076_div {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:65px;
  5469. height:22px;
  5470. background:inherit;
  5471. background-color:rgba(255, 255, 255, 0);
  5472. border:none;
  5473. border-radius:0px;
  5474. -moz-box-shadow:none;
  5475. -webkit-box-shadow:none;
  5476. box-shadow:none;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:16px;
  5481. }
  5482. #u75076 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:30px;
  5486. top:978px;
  5487. width:65px;
  5488. height:22px;
  5489. display:flex;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:16px;
  5494. }
  5495. #u75076 .text {
  5496. position:absolute;
  5497. align-self:flex-start;
  5498. padding:0px 0px 0px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u75076_text {
  5503. border-width:0px;
  5504. white-space:nowrap;
  5505. text-transform:none;
  5506. }
  5507. #u75077_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:65px;
  5513. height:22px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 0);
  5516. border:none;
  5517. border-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:16px;
  5525. }
  5526. #u75077 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:30px;
  5530. top:622px;
  5531. width:65px;
  5532. height:22px;
  5533. display:flex;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:16px;
  5538. }
  5539. #u75077 .text {
  5540. position:absolute;
  5541. align-self:flex-start;
  5542. padding:0px 0px 0px 0px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u75077_text {
  5547. border-width:0px;
  5548. white-space:nowrap;
  5549. text-transform:none;
  5550. }
  5551. #u75078_img {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:609px;
  5557. height:439px;
  5558. }
  5559. #u75078 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:718px;
  5563. top:518px;
  5564. width:609px;
  5565. height:439px;
  5566. display:flex;
  5567. }
  5568. #u75078 .text {
  5569. position:absolute;
  5570. align-self:center;
  5571. padding:2px 2px 2px 2px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u75078_text {
  5576. border-width:0px;
  5577. word-wrap:break-word;
  5578. text-transform:none;
  5579. visibility:hidden;
  5580. }