styles.css 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841
  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. #u69599_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. #u69599 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u69599 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u69599_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u69600_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. #u69600 {
  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. #u69600 .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. #u69600_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u69601_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. #u69601 {
  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. #u69601 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u69601_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u69602 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u69603_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u69603 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u69603 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u69603_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u69604_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. #u69604 {
  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. #u69604 .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. #u69604_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u69605_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. #u69605 {
  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. #u69605 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u69605_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u69606 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u69607_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. #u69607 {
  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. #u69607 .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. #u69607_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u69608_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u69608 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u69608 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u69608_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u69609 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u69610_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. #u69610 {
  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. #u69610 .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. #u69610_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u69611_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u69611 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u69611 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u69611_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u69612 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u69613_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. #u69613 {
  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. #u69613 .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. #u69613_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u69614_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u69614 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u69614 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u69614_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u69615 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u69616_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. #u69616 {
  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. #u69616 .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. #u69616_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u69617_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u69617 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u69617 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u69617_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u69618 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u69619_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. #u69619 {
  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. #u69619 .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. #u69619_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u69620_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u69620 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u69620 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u69620_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u69621 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u69622_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. #u69622 {
  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. #u69622 .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. #u69622_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u69623_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u69623 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u69623 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u69623_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u69624 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u69625_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. #u69625 {
  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. #u69625 .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. #u69625_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u69626_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u69626 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u69626 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u69626_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u69627 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u69628_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. #u69628 {
  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. #u69628 .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. #u69628_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u69629_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u69629 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u69629 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u69629_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u69630 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u69631_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. #u69631 {
  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. #u69631 .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. #u69631_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u69632_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u69632 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u69632 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u69632_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u69633_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. #u69633 {
  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. #u69633 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u69633_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u69634_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u69634 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u69634 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u69634_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u69635_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. #u69635 {
  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. #u69635 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u69635_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u69636_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u69636 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u69636 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u69636_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u69637 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u69638_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. #u69638 {
  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. #u69638 .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. #u69638_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u69639_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u69639 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u69639 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u69639_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u69640 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u69641_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. #u69641 {
  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. #u69641 .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. #u69641_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u69642_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u69642 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u69642 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u69642_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u69643 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u69644_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. #u69644_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. #u69644_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. #u69644 {
  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. #u69644 .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. #u69644_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. #u69644.disabled {
  1428. }
  1429. .u69644_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u69645_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u69645 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u69645 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u69645_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u69646_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. #u69646 {
  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. #u69646 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u69646_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u69647_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u69647 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u69647 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u69647_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u69648_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  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. #u69648 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1191px;
  1560. display:flex;
  1561. }
  1562. #u69648 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u69648_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u69649_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:300px;
  1581. height:1106px;
  1582. background:inherit;
  1583. background-color:rgba(240, 242, 245, 1);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. }
  1590. #u69649 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:330px;
  1594. top:51px;
  1595. width:300px;
  1596. height:1106px;
  1597. display:flex;
  1598. }
  1599. #u69649 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u69649_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. visibility:hidden;
  1611. }
  1612. #u69650_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:73px;
  1618. height:50px;
  1619. background:inherit;
  1620. background-color:rgba(255, 255, 255, 0);
  1621. border:none;
  1622. border-left:0px;
  1623. border-top:0px;
  1624. border-right:0px;
  1625. border-radius:0px;
  1626. border-bottom-right-radius:0px;
  1627. border-bottom-left-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1632. font-weight:500;
  1633. font-style:normal;
  1634. font-size:18px;
  1635. line-height:40px;
  1636. }
  1637. #u69650 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:354px;
  1641. top:65px;
  1642. width:73px;
  1643. height:50px;
  1644. display:flex;
  1645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1646. font-weight:500;
  1647. font-style:normal;
  1648. font-size:18px;
  1649. line-height:40px;
  1650. }
  1651. #u69650 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:5px 0px 5px 0px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u69650_text {
  1659. border-width:0px;
  1660. white-space:nowrap;
  1661. text-transform:none;
  1662. }
  1663. #u69651 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:0px;
  1669. height:0px;
  1670. }
  1671. #u69652_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:260px;
  1677. height:40px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 1);
  1680. box-sizing:border-box;
  1681. border-width:1px;
  1682. border-style:solid;
  1683. border-color:rgba(242, 242, 242, 1);
  1684. border-radius:4px;
  1685. -moz-box-shadow:none;
  1686. -webkit-box-shadow:none;
  1687. box-shadow:none;
  1688. font-family:'Microsoft YaHei', sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:14px;
  1692. color:#CCCCCC;
  1693. text-align:left;
  1694. }
  1695. #u69652 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:350px;
  1699. top:128px;
  1700. width:260px;
  1701. height:40px;
  1702. display:flex;
  1703. font-family:'Microsoft YaHei', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. font-size:14px;
  1707. color:#CCCCCC;
  1708. text-align:left;
  1709. }
  1710. #u69652 .text {
  1711. position:absolute;
  1712. align-self:center;
  1713. padding:2px 8px 2px 8px;
  1714. box-sizing:border-box;
  1715. width:100%;
  1716. }
  1717. #u69652_text {
  1718. border-width:0px;
  1719. word-wrap:break-word;
  1720. text-transform:none;
  1721. visibility:hidden;
  1722. }
  1723. #u69653_input {
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:217px;
  1728. height:33px;
  1729. padding:2px 2px 2px 2px;
  1730. font-family:'Microsoft YaHei', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:14px;
  1734. letter-spacing:normal;
  1735. color:#000000;
  1736. vertical-align:none;
  1737. text-align:left;
  1738. text-transform:none;
  1739. background-color:transparent;
  1740. border-color:transparent;
  1741. }
  1742. #u69653_input.disabled {
  1743. position:absolute;
  1744. left:0px;
  1745. top:0px;
  1746. width:217px;
  1747. height:33px;
  1748. padding:2px 2px 2px 2px;
  1749. font-family:'Microsoft YaHei', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:14px;
  1753. letter-spacing:normal;
  1754. color:#000000;
  1755. vertical-align:none;
  1756. text-align:left;
  1757. text-transform:none;
  1758. background-color:transparent;
  1759. border-color:transparent;
  1760. }
  1761. #u69653_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:217px;
  1767. height:33px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 1);
  1770. border:none;
  1771. border-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. font-family:'Microsoft YaHei', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. }
  1780. #u69653 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:358px;
  1784. top:129px;
  1785. width:217px;
  1786. height:33px;
  1787. display:flex;
  1788. font-family:'Microsoft YaHei', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:14px;
  1792. }
  1793. #u69653 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:2px 2px 2px 2px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u69653_div.disabled {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:217px;
  1806. height:33px;
  1807. background:inherit;
  1808. background-color:rgba(240, 240, 240, 1);
  1809. border:none;
  1810. border-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. font-family:'Microsoft YaHei', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:14px;
  1818. }
  1819. #u69653.disabled {
  1820. }
  1821. #u69654_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:14px;
  1827. height:14px;
  1828. }
  1829. #u69654 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:582px;
  1833. top:140px;
  1834. width:14px;
  1835. height:14px;
  1836. display:flex;
  1837. }
  1838. #u69654 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:2px 2px 2px 2px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u69654_text {
  1846. border-width:0px;
  1847. word-wrap:break-word;
  1848. text-transform:none;
  1849. visibility:hidden;
  1850. }
  1851. #u69655 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:0px;
  1857. height:0px;
  1858. }
  1859. #u69656_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:260px;
  1865. height:60px;
  1866. background:inherit;
  1867. background-color:rgba(0, 153, 255, 0.0980392156862745);
  1868. border:none;
  1869. border-radius:4px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'Microsoft YaHei', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. color:#CCCCCC;
  1878. text-align:left;
  1879. }
  1880. #u69656 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:350px;
  1884. top:178px;
  1885. width:260px;
  1886. height:60px;
  1887. display:flex;
  1888. font-family:'Microsoft YaHei', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:14px;
  1892. color:#CCCCCC;
  1893. text-align:left;
  1894. }
  1895. #u69656 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 8px 2px 8px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u69656_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. visibility:hidden;
  1907. }
  1908. #u69657_div {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:0px;
  1912. top:0px;
  1913. width:19px;
  1914. height:18px;
  1915. background:inherit;
  1916. background-color:rgba(51, 51, 51, 1);
  1917. border:none;
  1918. border-radius:8px;
  1919. -moz-box-shadow:none;
  1920. -webkit-box-shadow:none;
  1921. box-shadow:none;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:10px;
  1926. color:#FFFFFF;
  1927. }
  1928. #u69657 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:365px;
  1932. top:200px;
  1933. width:19px;
  1934. height:18px;
  1935. display:flex;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:10px;
  1940. color:#FFFFFF;
  1941. }
  1942. #u69657 .text {
  1943. position:absolute;
  1944. align-self:center;
  1945. padding:0px 0px 0px 0px;
  1946. box-sizing:border-box;
  1947. width:100%;
  1948. }
  1949. #u69657_text {
  1950. border-width:0px;
  1951. word-wrap:break-word;
  1952. text-transform:none;
  1953. }
  1954. #u69658_div {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:155px;
  1960. height:20px;
  1961. background:inherit;
  1962. background-color:rgba(51, 51, 51, 0);
  1963. border:none;
  1964. border-radius:4px;
  1965. -moz-box-shadow:none;
  1966. -webkit-box-shadow:none;
  1967. box-shadow:none;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. text-align:left;
  1973. }
  1974. #u69658 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:391px;
  1978. top:201px;
  1979. width:155px;
  1980. height:20px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:14px;
  1986. text-align:left;
  1987. }
  1988. #u69658 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:0px 0px 0px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u69658_text {
  1996. border-width:0px;
  1997. white-space:nowrap;
  1998. text-transform:none;
  1999. }
  2000. #u69659 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:0px;
  2006. height:0px;
  2007. }
  2008. #u69660_div {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:260px;
  2014. height:60px;
  2015. background:inherit;
  2016. background-color:rgba(242, 242, 242, 0);
  2017. border:none;
  2018. border-radius:4px;
  2019. -moz-box-shadow:none;
  2020. -webkit-box-shadow:none;
  2021. box-shadow:none;
  2022. font-family:'Microsoft YaHei', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:14px;
  2026. color:#CCCCCC;
  2027. text-align:left;
  2028. }
  2029. #u69660 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:350px;
  2033. top:238px;
  2034. width:260px;
  2035. height:60px;
  2036. display:flex;
  2037. font-family:'Microsoft YaHei', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. font-size:14px;
  2041. color:#CCCCCC;
  2042. text-align:left;
  2043. }
  2044. #u69660 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 8px 2px 8px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u69660_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. visibility:hidden;
  2056. }
  2057. #u69661_div {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:19px;
  2063. height:18px;
  2064. background:inherit;
  2065. background-color:rgba(51, 51, 51, 0);
  2066. box-sizing:border-box;
  2067. border-width:1px;
  2068. border-style:solid;
  2069. border-color:rgba(51, 51, 51, 1);
  2070. border-radius:8px;
  2071. -moz-box-shadow:none;
  2072. -webkit-box-shadow:none;
  2073. box-shadow:none;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:10px;
  2078. }
  2079. #u69661 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:390px;
  2083. top:260px;
  2084. width:19px;
  2085. height:18px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:10px;
  2091. }
  2092. #u69661 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:0px 0px 0px 0px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u69661_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. }
  2104. #u69662_div {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:161px;
  2110. height:20px;
  2111. background:inherit;
  2112. background-color:rgba(51, 51, 51, 0);
  2113. border:none;
  2114. border-radius:4px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. text-align:left;
  2123. }
  2124. #u69662 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:415px;
  2128. top:261px;
  2129. width:161px;
  2130. height:20px;
  2131. display:flex;
  2132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:14px;
  2136. text-align:left;
  2137. }
  2138. #u69662 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:0px 0px 0px 0px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u69662_text {
  2146. border-width:0px;
  2147. white-space:nowrap;
  2148. text-transform:none;
  2149. }
  2150. #u69663 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:0px;
  2156. height:0px;
  2157. }
  2158. #u69664_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:260px;
  2164. height:60px;
  2165. background:inherit;
  2166. background-color:rgba(0, 153, 255, 0);
  2167. border:none;
  2168. border-radius:4px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-family:'Microsoft YaHei', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:14px;
  2176. color:#CCCCCC;
  2177. text-align:left;
  2178. }
  2179. #u69664 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:350px;
  2183. top:298px;
  2184. width:260px;
  2185. height:60px;
  2186. display:flex;
  2187. font-family:'Microsoft YaHei', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:14px;
  2191. color:#CCCCCC;
  2192. text-align:left;
  2193. }
  2194. #u69664 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 8px 2px 8px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u69664_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u69665_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:19px;
  2213. height:18px;
  2214. background:inherit;
  2215. background-color:rgba(51, 51, 51, 1);
  2216. border:none;
  2217. border-radius:8px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:10px;
  2225. color:#FFFFFF;
  2226. }
  2227. #u69665 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:365px;
  2231. top:320px;
  2232. width:19px;
  2233. height:18px;
  2234. display:flex;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:10px;
  2239. color:#FFFFFF;
  2240. }
  2241. #u69665 .text {
  2242. position:absolute;
  2243. align-self:center;
  2244. padding:0px 0px 0px 0px;
  2245. box-sizing:border-box;
  2246. width:100%;
  2247. }
  2248. #u69665_text {
  2249. border-width:0px;
  2250. word-wrap:break-word;
  2251. text-transform:none;
  2252. }
  2253. #u69666_div {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:180px;
  2259. height:20px;
  2260. background:inherit;
  2261. background-color:rgba(51, 51, 51, 0);
  2262. border:none;
  2263. border-radius:4px;
  2264. -moz-box-shadow:none;
  2265. -webkit-box-shadow:none;
  2266. box-shadow:none;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:14px;
  2271. text-align:left;
  2272. }
  2273. #u69666 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:390px;
  2277. top:320px;
  2278. width:180px;
  2279. height:20px;
  2280. display:flex;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:14px;
  2285. text-align:left;
  2286. }
  2287. #u69666 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:0px 0px 0px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u69666_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. }
  2299. #u69667 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:0px;
  2305. height:0px;
  2306. }
  2307. #u69668_div {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:199px;
  2313. height:40px;
  2314. background:inherit;
  2315. background-color:rgba(255, 255, 255, 0);
  2316. border:none;
  2317. border-radius:0px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2322. font-weight:500;
  2323. font-style:normal;
  2324. font-size:18px;
  2325. line-height:40px;
  2326. }
  2327. #u69668 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:696px;
  2331. top:73px;
  2332. width:199px;
  2333. height:40px;
  2334. display:flex;
  2335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2336. font-weight:500;
  2337. font-style:normal;
  2338. font-size:18px;
  2339. line-height:40px;
  2340. }
  2341. #u69668 .text {
  2342. position:absolute;
  2343. align-self:flex-start;
  2344. padding:0px 0px 0px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u69668_text {
  2349. border-width:0px;
  2350. white-space:nowrap;
  2351. text-transform:none;
  2352. }
  2353. #u69669_img {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:30px;
  2359. height:30px;
  2360. }
  2361. #u69669 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:656px;
  2365. top:78px;
  2366. width:30px;
  2367. height:30px;
  2368. display:flex;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:10px;
  2373. color:#FFFFFF;
  2374. }
  2375. #u69669 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 2px 2px 2px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u69669_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. }
  2387. #u69670_div {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:73px;
  2393. height:40px;
  2394. background:inherit;
  2395. background-color:rgba(255, 255, 255, 0);
  2396. border:none;
  2397. border-radius:0px;
  2398. -moz-box-shadow:none;
  2399. -webkit-box-shadow:none;
  2400. box-shadow:none;
  2401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2402. font-weight:500;
  2403. font-style:normal;
  2404. font-size:18px;
  2405. line-height:40px;
  2406. }
  2407. #u69670 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:656px;
  2411. top:133px;
  2412. width:73px;
  2413. height:40px;
  2414. display:flex;
  2415. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2416. font-weight:500;
  2417. font-style:normal;
  2418. font-size:18px;
  2419. line-height:40px;
  2420. }
  2421. #u69670 .text {
  2422. position:absolute;
  2423. align-self:flex-start;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u69670_text {
  2429. border-width:0px;
  2430. white-space:nowrap;
  2431. text-transform:none;
  2432. }
  2433. #u69671_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:100px;
  2439. height:30px;
  2440. background:inherit;
  2441. background-color:rgba(24, 144, 255, 1);
  2442. border:none;
  2443. border-radius:4px;
  2444. -moz-box-shadow:none;
  2445. -webkit-box-shadow:none;
  2446. box-shadow:none;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. color:#FFFFFF;
  2452. }
  2453. #u69671 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:656px;
  2457. top:183px;
  2458. width:100px;
  2459. height:30px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:14px;
  2465. color:#FFFFFF;
  2466. }
  2467. #u69671 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 2px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u69671_text {
  2475. border-width:0px;
  2476. word-wrap:break-word;
  2477. text-transform:none;
  2478. }
  2479. #u69672_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:73px;
  2485. height:40px;
  2486. background:inherit;
  2487. background-color:rgba(255, 255, 255, 0);
  2488. border:none;
  2489. border-radius:0px;
  2490. -moz-box-shadow:none;
  2491. -webkit-box-shadow:none;
  2492. box-shadow:none;
  2493. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2494. font-weight:500;
  2495. font-style:normal;
  2496. font-size:18px;
  2497. line-height:40px;
  2498. }
  2499. #u69672 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:759px;
  2503. top:133px;
  2504. width:73px;
  2505. height:40px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2508. font-weight:500;
  2509. font-style:normal;
  2510. font-size:18px;
  2511. line-height:40px;
  2512. }
  2513. #u69672 .text {
  2514. position:absolute;
  2515. align-self:flex-start;
  2516. padding:0px 0px 0px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u69672_text {
  2521. border-width:0px;
  2522. white-space:nowrap;
  2523. text-transform:none;
  2524. }
  2525. #u69673_div {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:73px;
  2531. height:40px;
  2532. background:inherit;
  2533. background-color:rgba(255, 255, 255, 0);
  2534. border:none;
  2535. border-radius:0px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2540. font-weight:500;
  2541. font-style:normal;
  2542. font-size:18px;
  2543. line-height:40px;
  2544. }
  2545. #u69673 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:862px;
  2549. top:133px;
  2550. width:73px;
  2551. height:40px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2554. font-weight:500;
  2555. font-style:normal;
  2556. font-size:18px;
  2557. line-height:40px;
  2558. }
  2559. #u69673 .text {
  2560. position:absolute;
  2561. align-self:flex-start;
  2562. padding:0px 0px 0px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u69673_text {
  2567. border-width:0px;
  2568. white-space:nowrap;
  2569. text-transform:none;
  2570. }
  2571. #u69674 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:0px;
  2577. height:0px;
  2578. }
  2579. #u69675 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:656px;
  2583. top:223px;
  2584. width:914px;
  2585. height:114px;
  2586. }
  2587. #u69676_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:166px;
  2593. height:38px;
  2594. }
  2595. #u69676 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:166px;
  2601. height:38px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:12px;
  2607. color:#FFFFFF;
  2608. text-align:left;
  2609. }
  2610. #u69676 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 10px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u69676_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. }
  2622. #u69677_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:100px;
  2628. height:38px;
  2629. }
  2630. #u69677 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:166px;
  2634. top:0px;
  2635. width:100px;
  2636. height:38px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#FFFFFF;
  2643. text-align:left;
  2644. }
  2645. #u69677 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 10px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u69677_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. }
  2657. #u69678_img {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:97px;
  2663. height:38px;
  2664. }
  2665. #u69678 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:266px;
  2669. top:0px;
  2670. width:97px;
  2671. height:38px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#FFFFFF;
  2678. text-align:left;
  2679. }
  2680. #u69678 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:2px 2px 2px 10px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u69678_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. }
  2692. #u69679_img {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:83px;
  2698. height:38px;
  2699. }
  2700. #u69679 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:363px;
  2704. top:0px;
  2705. width:83px;
  2706. height:38px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:#FFFFFF;
  2713. text-align:left;
  2714. }
  2715. #u69679 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 10px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u69679_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. }
  2727. #u69680_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:97px;
  2733. height:38px;
  2734. }
  2735. #u69680 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:446px;
  2739. top:0px;
  2740. width:97px;
  2741. height:38px;
  2742. display:flex;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#FFFFFF;
  2748. text-align:left;
  2749. }
  2750. #u69680 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 10px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u69680_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. }
  2762. #u69681_img {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:97px;
  2768. height:38px;
  2769. }
  2770. #u69681 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:543px;
  2774. top:0px;
  2775. width:97px;
  2776. height:38px;
  2777. display:flex;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:12px;
  2782. color:#FFFFFF;
  2783. text-align:left;
  2784. }
  2785. #u69681 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 10px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u69681_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. }
  2797. #u69682_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:83px;
  2803. height:38px;
  2804. }
  2805. #u69682 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:640px;
  2809. top:0px;
  2810. width:83px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:#FFFFFF;
  2818. text-align:left;
  2819. }
  2820. #u69682 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 10px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u69682_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. }
  2832. #u69683_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:108px;
  2838. height:38px;
  2839. }
  2840. #u69683 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:723px;
  2844. top:0px;
  2845. width:108px;
  2846. height:38px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. color:#FFFFFF;
  2853. text-align:left;
  2854. }
  2855. #u69683 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 10px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u69683_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. }
  2867. #u69684_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:83px;
  2873. height:38px;
  2874. }
  2875. #u69684 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:831px;
  2879. top:0px;
  2880. width:83px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. color:#FFFFFF;
  2888. text-align:left;
  2889. }
  2890. #u69684 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 10px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u69684_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. }
  2902. #u69685_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:166px;
  2908. height:38px;
  2909. }
  2910. #u69685 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:38px;
  2915. width:166px;
  2916. height:38px;
  2917. display:flex;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:12px;
  2922. text-align:left;
  2923. }
  2924. #u69685 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 10px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u69685_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. }
  2936. #u69686_img {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:100px;
  2942. height:38px;
  2943. }
  2944. #u69686 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:166px;
  2948. top:38px;
  2949. width:100px;
  2950. height:38px;
  2951. display:flex;
  2952. font-size:12px;
  2953. text-align:left;
  2954. }
  2955. #u69686 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 10px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u69686_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u69687_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:97px;
  2974. height:38px;
  2975. }
  2976. #u69687 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:266px;
  2980. top:38px;
  2981. width:97px;
  2982. height:38px;
  2983. display:flex;
  2984. font-size:12px;
  2985. text-align:left;
  2986. }
  2987. #u69687 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 10px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u69687_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u69688_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:83px;
  3006. height:38px;
  3007. }
  3008. #u69688 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:363px;
  3012. top:38px;
  3013. width:83px;
  3014. height:38px;
  3015. display:flex;
  3016. font-size:12px;
  3017. text-align:left;
  3018. }
  3019. #u69688 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 10px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u69688_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. visibility:hidden;
  3031. }
  3032. #u69689_img {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:97px;
  3038. height:38px;
  3039. }
  3040. #u69689 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:446px;
  3044. top:38px;
  3045. width:97px;
  3046. height:38px;
  3047. display:flex;
  3048. font-size:12px;
  3049. text-align:left;
  3050. }
  3051. #u69689 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 10px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u69689_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u69690_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:97px;
  3070. height:38px;
  3071. }
  3072. #u69690 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:543px;
  3076. top:38px;
  3077. width:97px;
  3078. height:38px;
  3079. display:flex;
  3080. font-size:12px;
  3081. text-align:left;
  3082. }
  3083. #u69690 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 10px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u69690_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u69691_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:83px;
  3102. height:38px;
  3103. }
  3104. #u69691 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:640px;
  3108. top:38px;
  3109. width:83px;
  3110. height:38px;
  3111. display:flex;
  3112. font-size:12px;
  3113. text-align:left;
  3114. }
  3115. #u69691 .text {
  3116. position:absolute;
  3117. align-self:center;
  3118. padding:2px 2px 2px 10px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u69691_text {
  3123. border-width:0px;
  3124. word-wrap:break-word;
  3125. text-transform:none;
  3126. visibility:hidden;
  3127. }
  3128. #u69692_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:108px;
  3134. height:38px;
  3135. }
  3136. #u69692 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:723px;
  3140. top:38px;
  3141. width:108px;
  3142. height:38px;
  3143. display:flex;
  3144. font-size:12px;
  3145. text-align:left;
  3146. }
  3147. #u69692 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 10px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u69692_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u69693_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:83px;
  3166. height:38px;
  3167. }
  3168. #u69693 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:831px;
  3172. top:38px;
  3173. width:83px;
  3174. height:38px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:12px;
  3180. text-align:left;
  3181. }
  3182. #u69693 .text {
  3183. position:absolute;
  3184. align-self:center;
  3185. padding:2px 2px 2px 10px;
  3186. box-sizing:border-box;
  3187. width:100%;
  3188. }
  3189. #u69693_text {
  3190. border-width:0px;
  3191. word-wrap:break-word;
  3192. text-transform:none;
  3193. }
  3194. #u69694_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:166px;
  3200. height:38px;
  3201. }
  3202. #u69694 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:76px;
  3207. width:166px;
  3208. height:38px;
  3209. display:flex;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:12px;
  3214. text-align:left;
  3215. }
  3216. #u69694 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 10px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u69694_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. }
  3228. #u69695_img {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:100px;
  3234. height:38px;
  3235. }
  3236. #u69695 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:166px;
  3240. top:76px;
  3241. width:100px;
  3242. height:38px;
  3243. display:flex;
  3244. font-size:12px;
  3245. text-align:left;
  3246. }
  3247. #u69695 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 10px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u69695_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u69696_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:97px;
  3266. height:38px;
  3267. }
  3268. #u69696 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:266px;
  3272. top:76px;
  3273. width:97px;
  3274. height:38px;
  3275. display:flex;
  3276. font-size:12px;
  3277. text-align:left;
  3278. }
  3279. #u69696 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 10px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u69696_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u69697_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:83px;
  3298. height:38px;
  3299. }
  3300. #u69697 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:363px;
  3304. top:76px;
  3305. width:83px;
  3306. height:38px;
  3307. display:flex;
  3308. font-size:12px;
  3309. text-align:left;
  3310. }
  3311. #u69697 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 10px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u69697_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u69698_img {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:97px;
  3330. height:38px;
  3331. }
  3332. #u69698 {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:446px;
  3336. top:76px;
  3337. width:97px;
  3338. height:38px;
  3339. display:flex;
  3340. font-size:12px;
  3341. text-align:left;
  3342. }
  3343. #u69698 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 10px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u69698_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. visibility:hidden;
  3355. }
  3356. #u69699_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:97px;
  3362. height:38px;
  3363. }
  3364. #u69699 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:543px;
  3368. top:76px;
  3369. width:97px;
  3370. height:38px;
  3371. display:flex;
  3372. font-size:12px;
  3373. text-align:left;
  3374. }
  3375. #u69699 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 10px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u69699_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u69700_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:83px;
  3394. height:38px;
  3395. }
  3396. #u69700 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:640px;
  3400. top:76px;
  3401. width:83px;
  3402. height:38px;
  3403. display:flex;
  3404. font-size:12px;
  3405. text-align:left;
  3406. }
  3407. #u69700 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 10px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u69700_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u69701_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:108px;
  3426. height:38px;
  3427. }
  3428. #u69701 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:723px;
  3432. top:76px;
  3433. width:108px;
  3434. height:38px;
  3435. display:flex;
  3436. font-size:12px;
  3437. text-align:left;
  3438. }
  3439. #u69701 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 10px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u69701_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u69702_img {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:83px;
  3458. height:38px;
  3459. }
  3460. #u69702 {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:831px;
  3464. top:76px;
  3465. width:83px;
  3466. height:38px;
  3467. display:flex;
  3468. font-size:12px;
  3469. text-align:left;
  3470. }
  3471. #u69702 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 10px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u69702_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u69703_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:11px;
  3490. height:11px;
  3491. }
  3492. #u69703 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:985px;
  3496. top:237px;
  3497. width:11px;
  3498. height:11px;
  3499. display:flex;
  3500. }
  3501. #u69703 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 2px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u69703_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. visibility:hidden;
  3513. }
  3514. #u69705 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:0px;
  3520. height:0px;
  3521. }
  3522. #u69706_img {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:200px;
  3528. height:1191px;
  3529. }
  3530. #u69706 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:120px;
  3534. top:50px;
  3535. width:200px;
  3536. height:1191px;
  3537. display:flex;
  3538. }
  3539. #u69706 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u69706_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u69707_div {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:200px;
  3558. height:60px;
  3559. background:inherit;
  3560. background-color:rgba(224, 231, 247, 1);
  3561. border:none;
  3562. border-radius:0px;
  3563. -moz-box-shadow:none;
  3564. -webkit-box-shadow:none;
  3565. box-shadow:none;
  3566. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3567. font-weight:500;
  3568. font-style:normal;
  3569. font-size:18px;
  3570. }
  3571. #u69707 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:120px;
  3575. top:50px;
  3576. width:200px;
  3577. height:60px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3580. font-weight:500;
  3581. font-style:normal;
  3582. font-size:18px;
  3583. }
  3584. #u69707 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:0px 0px 0px 20px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u69707_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. }
  3596. #u69708 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:120px;
  3600. top:130px;
  3601. width:200px;
  3602. height:1078px;
  3603. }
  3604. #u69708_state0 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:200px;
  3610. height:1078px;
  3611. overflow:auto;
  3612. -webkit-overflow-scrolling:touch;
  3613. -ms-overflow-x:hidden;
  3614. overflow-x:hidden;
  3615. background-image:none;
  3616. border:none;
  3617. border-radius:0px;
  3618. -moz-box-shadow:none;
  3619. -webkit-box-shadow:none;
  3620. box-shadow:none;
  3621. }
  3622. #u69708_state0_content {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:1px;
  3628. height:1px;
  3629. }
  3630. #u69709_div {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:97px;
  3636. height:22px;
  3637. background:inherit;
  3638. background-color:rgba(255, 255, 255, 0);
  3639. border:none;
  3640. border-radius:0px;
  3641. -moz-box-shadow:none;
  3642. -webkit-box-shadow:none;
  3643. box-shadow:none;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:16px;
  3648. }
  3649. #u69709 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:30px;
  3653. top:0px;
  3654. width:97px;
  3655. height:22px;
  3656. display:flex;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:16px;
  3661. }
  3662. #u69709 .text {
  3663. position:absolute;
  3664. align-self:flex-start;
  3665. padding:0px 0px 0px 0px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u69709_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. }
  3674. #u69710_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:65px;
  3680. height:22px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 0);
  3683. border:none;
  3684. border-radius:0px;
  3685. -moz-box-shadow:none;
  3686. -webkit-box-shadow:none;
  3687. box-shadow:none;
  3688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:16px;
  3692. }
  3693. #u69710 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:30px;
  3697. top:42px;
  3698. width:65px;
  3699. height:22px;
  3700. display:flex;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:16px;
  3705. }
  3706. #u69710 .text {
  3707. position:absolute;
  3708. align-self:flex-start;
  3709. padding:0px 0px 0px 0px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u69710_text {
  3714. border-width:0px;
  3715. white-space:nowrap;
  3716. text-transform:none;
  3717. }
  3718. #u69711_div {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:49px;
  3724. height:22px;
  3725. background:inherit;
  3726. background-color:rgba(255, 255, 255, 0);
  3727. border:none;
  3728. border-radius:0px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:16px;
  3736. }
  3737. #u69711 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:30px;
  3741. top:145px;
  3742. width:49px;
  3743. height:22px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:16px;
  3749. }
  3750. #u69711 .text {
  3751. position:absolute;
  3752. align-self:flex-start;
  3753. padding:0px 0px 0px 0px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u69711_text {
  3758. border-width:0px;
  3759. white-space:nowrap;
  3760. text-transform:none;
  3761. }
  3762. #u69712_div {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:97px;
  3768. height:22px;
  3769. background:inherit;
  3770. background-color:rgba(255, 255, 255, 0);
  3771. border:none;
  3772. border-radius:0px;
  3773. -moz-box-shadow:none;
  3774. -webkit-box-shadow:none;
  3775. box-shadow:none;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:16px;
  3780. }
  3781. #u69712 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:30px;
  3785. top:187px;
  3786. width:97px;
  3787. height:22px;
  3788. display:flex;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:16px;
  3793. }
  3794. #u69712 .text {
  3795. position:absolute;
  3796. align-self:flex-start;
  3797. padding:0px 0px 0px 0px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u69712_text {
  3802. border-width:0px;
  3803. word-wrap:break-word;
  3804. text-transform:none;
  3805. }
  3806. #u69713_img {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:201px;
  3812. height:2px;
  3813. }
  3814. #u69713 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:84px;
  3819. width:200px;
  3820. height:1px;
  3821. display:flex;
  3822. }
  3823. #u69713 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u69713_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u69714_div {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:49px;
  3842. height:17px;
  3843. background:inherit;
  3844. background-color:rgba(255, 255, 255, 0);
  3845. border:none;
  3846. border-radius:0px;
  3847. -moz-box-shadow:none;
  3848. -webkit-box-shadow:none;
  3849. box-shadow:none;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#AAAAAA;
  3855. }
  3856. #u69714 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:30px;
  3860. top:105px;
  3861. width:49px;
  3862. height:17px;
  3863. display:flex;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:12px;
  3868. color:#AAAAAA;
  3869. }
  3870. #u69714 .text {
  3871. position:absolute;
  3872. align-self:flex-start;
  3873. padding:0px 0px 0px 0px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u69714_text {
  3878. border-width:0px;
  3879. white-space:nowrap;
  3880. text-transform:none;
  3881. }
  3882. #u69715_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:97px;
  3888. height:22px;
  3889. background:inherit;
  3890. background-color:rgba(255, 255, 255, 0);
  3891. border:none;
  3892. border-radius:0px;
  3893. -moz-box-shadow:none;
  3894. -webkit-box-shadow:none;
  3895. box-shadow:none;
  3896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:16px;
  3900. }
  3901. #u69715 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:30px;
  3905. top:229px;
  3906. width:97px;
  3907. height:22px;
  3908. display:flex;
  3909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:16px;
  3913. }
  3914. #u69715 .text {
  3915. position:absolute;
  3916. align-self:flex-start;
  3917. padding:0px 0px 0px 0px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u69715_text {
  3922. border-width:0px;
  3923. word-wrap:break-word;
  3924. text-transform:none;
  3925. }
  3926. #u69716_div {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:65px;
  3932. height:22px;
  3933. background:inherit;
  3934. background-color:rgba(255, 255, 255, 0);
  3935. border:none;
  3936. border-radius:0px;
  3937. -moz-box-shadow:none;
  3938. -webkit-box-shadow:none;
  3939. box-shadow:none;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:16px;
  3944. }
  3945. #u69716 {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:30px;
  3949. top:271px;
  3950. width:65px;
  3951. height:22px;
  3952. display:flex;
  3953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3954. font-weight:400;
  3955. font-style:normal;
  3956. font-size:16px;
  3957. }
  3958. #u69716 .text {
  3959. position:absolute;
  3960. align-self:flex-start;
  3961. padding:0px 0px 0px 0px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u69716_text {
  3966. border-width:0px;
  3967. white-space:nowrap;
  3968. text-transform:none;
  3969. }
  3970. #u69717_img {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:201px;
  3976. height:2px;
  3977. }
  3978. #u69717 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:313px;
  3983. width:200px;
  3984. height:1px;
  3985. display:flex;
  3986. }
  3987. #u69717 .text {
  3988. position:absolute;
  3989. align-self:center;
  3990. padding:2px 2px 2px 2px;
  3991. box-sizing:border-box;
  3992. width:100%;
  3993. }
  3994. #u69717_text {
  3995. border-width:0px;
  3996. word-wrap:break-word;
  3997. text-transform:none;
  3998. visibility:hidden;
  3999. }
  4000. #u69718_div {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:65px;
  4006. height:22px;
  4007. background:inherit;
  4008. background-color:rgba(255, 255, 255, 0);
  4009. border:none;
  4010. border-radius:0px;
  4011. -moz-box-shadow:none;
  4012. -webkit-box-shadow:none;
  4013. box-shadow:none;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:16px;
  4018. }
  4019. #u69718 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:30px;
  4023. top:370px;
  4024. width:65px;
  4025. height:22px;
  4026. display:flex;
  4027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:16px;
  4031. }
  4032. #u69718 .text {
  4033. position:absolute;
  4034. align-self:flex-start;
  4035. padding:0px 0px 0px 0px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u69718_text {
  4040. border-width:0px;
  4041. white-space:nowrap;
  4042. text-transform:none;
  4043. }
  4044. #u69719_div {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:49px;
  4050. height:17px;
  4051. background:inherit;
  4052. background-color:rgba(255, 255, 255, 0);
  4053. border:none;
  4054. border-radius:0px;
  4055. -moz-box-shadow:none;
  4056. -webkit-box-shadow:none;
  4057. box-shadow:none;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:12px;
  4062. color:#AAAAAA;
  4063. }
  4064. #u69719 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:30px;
  4068. top:334px;
  4069. width:49px;
  4070. height:17px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. color:#AAAAAA;
  4077. }
  4078. #u69719 .text {
  4079. position:absolute;
  4080. align-self:flex-start;
  4081. padding:0px 0px 0px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u69719_text {
  4086. border-width:0px;
  4087. white-space:nowrap;
  4088. text-transform:none;
  4089. }
  4090. #u69720_div {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:65px;
  4096. height:22px;
  4097. background:inherit;
  4098. background-color:rgba(255, 255, 255, 0);
  4099. border:none;
  4100. border-radius:0px;
  4101. -moz-box-shadow:none;
  4102. -webkit-box-shadow:none;
  4103. box-shadow:none;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:16px;
  4108. }
  4109. #u69720 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:30px;
  4113. top:412px;
  4114. width:65px;
  4115. height:22px;
  4116. display:flex;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:16px;
  4121. }
  4122. #u69720 .text {
  4123. position:absolute;
  4124. align-self:flex-start;
  4125. padding:0px 0px 0px 0px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u69720_text {
  4130. border-width:0px;
  4131. white-space:nowrap;
  4132. text-transform:none;
  4133. }
  4134. #u69721_div {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:65px;
  4140. height:22px;
  4141. background:inherit;
  4142. background-color:rgba(255, 255, 255, 0);
  4143. border:none;
  4144. border-radius:0px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:16px;
  4152. }
  4153. #u69721 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:30px;
  4157. top:454px;
  4158. width:65px;
  4159. height:22px;
  4160. display:flex;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:16px;
  4165. }
  4166. #u69721 .text {
  4167. position:absolute;
  4168. align-self:flex-start;
  4169. padding:0px 0px 0px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u69721_text {
  4174. border-width:0px;
  4175. white-space:nowrap;
  4176. text-transform:none;
  4177. }
  4178. #u69722_div {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:65px;
  4184. height:22px;
  4185. background:inherit;
  4186. background-color:rgba(255, 255, 255, 0);
  4187. border:none;
  4188. border-radius:0px;
  4189. -moz-box-shadow:none;
  4190. -webkit-box-shadow:none;
  4191. box-shadow:none;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:16px;
  4196. }
  4197. #u69722 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:30px;
  4201. top:496px;
  4202. width:65px;
  4203. height:22px;
  4204. display:flex;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:16px;
  4209. }
  4210. #u69722 .text {
  4211. position:absolute;
  4212. align-self:flex-start;
  4213. padding:0px 0px 0px 0px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u69722_text {
  4218. border-width:0px;
  4219. white-space:nowrap;
  4220. text-transform:none;
  4221. }
  4222. #u69723_div {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:65px;
  4228. height:22px;
  4229. background:inherit;
  4230. background-color:rgba(255, 255, 255, 0);
  4231. border:none;
  4232. border-radius:0px;
  4233. -moz-box-shadow:none;
  4234. -webkit-box-shadow:none;
  4235. box-shadow:none;
  4236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:16px;
  4240. }
  4241. #u69723 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:30px;
  4245. top:538px;
  4246. width:65px;
  4247. height:22px;
  4248. display:flex;
  4249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:16px;
  4253. }
  4254. #u69723 .text {
  4255. position:absolute;
  4256. align-self:flex-start;
  4257. padding:0px 0px 0px 0px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u69723_text {
  4262. border-width:0px;
  4263. white-space:nowrap;
  4264. text-transform:none;
  4265. }
  4266. #u69724_div {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:65px;
  4272. height:22px;
  4273. background:inherit;
  4274. background-color:rgba(255, 255, 255, 0);
  4275. border:none;
  4276. border-radius:0px;
  4277. -moz-box-shadow:none;
  4278. -webkit-box-shadow:none;
  4279. box-shadow:none;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:16px;
  4284. }
  4285. #u69724 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:30px;
  4289. top:580px;
  4290. width:65px;
  4291. height:22px;
  4292. display:flex;
  4293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4294. font-weight:400;
  4295. font-style:normal;
  4296. font-size:16px;
  4297. }
  4298. #u69724 .text {
  4299. position:absolute;
  4300. align-self:flex-start;
  4301. padding:0px 0px 0px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u69724_text {
  4306. border-width:0px;
  4307. white-space:nowrap;
  4308. text-transform:none;
  4309. }
  4310. #u69725_img {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:201px;
  4316. height:2px;
  4317. }
  4318. #u69725 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:1289px;
  4323. width:200px;
  4324. height:1px;
  4325. display:flex;
  4326. }
  4327. #u69725 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u69725_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u69726_div {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:65px;
  4346. height:22px;
  4347. background:inherit;
  4348. background-color:rgba(255, 255, 255, 0);
  4349. border:none;
  4350. border-radius:0px;
  4351. -moz-box-shadow:none;
  4352. -webkit-box-shadow:none;
  4353. box-shadow:none;
  4354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. font-size:16px;
  4358. }
  4359. #u69726 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:30px;
  4363. top:1346px;
  4364. width:65px;
  4365. height:22px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:16px;
  4371. }
  4372. #u69726 .text {
  4373. position:absolute;
  4374. align-self:flex-start;
  4375. padding:0px 0px 0px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u69726_text {
  4380. border-width:0px;
  4381. white-space:nowrap;
  4382. text-transform:none;
  4383. }
  4384. #u69727_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:49px;
  4390. height:17px;
  4391. background:inherit;
  4392. background-color:rgba(255, 255, 255, 0);
  4393. border:none;
  4394. border-radius:0px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:12px;
  4402. color:#AAAAAA;
  4403. }
  4404. #u69727 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:30px;
  4408. top:1310px;
  4409. width:49px;
  4410. height:17px;
  4411. display:flex;
  4412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:12px;
  4416. color:#AAAAAA;
  4417. }
  4418. #u69727 .text {
  4419. position:absolute;
  4420. align-self:flex-start;
  4421. padding:0px 0px 0px 0px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u69727_text {
  4426. border-width:0px;
  4427. white-space:nowrap;
  4428. text-transform:none;
  4429. }
  4430. #u69728_div {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:65px;
  4436. height:22px;
  4437. background:inherit;
  4438. background-color:rgba(255, 255, 255, 0);
  4439. border:none;
  4440. border-radius:0px;
  4441. -moz-box-shadow:none;
  4442. -webkit-box-shadow:none;
  4443. box-shadow:none;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:16px;
  4448. }
  4449. #u69728 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:30px;
  4453. top:1388px;
  4454. width:65px;
  4455. height:22px;
  4456. display:flex;
  4457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4458. font-weight:400;
  4459. font-style:normal;
  4460. font-size:16px;
  4461. }
  4462. #u69728 .text {
  4463. position:absolute;
  4464. align-self:flex-start;
  4465. padding:0px 0px 0px 0px;
  4466. box-sizing:border-box;
  4467. width:100%;
  4468. }
  4469. #u69728_text {
  4470. border-width:0px;
  4471. white-space:nowrap;
  4472. text-transform:none;
  4473. }
  4474. #u69729_div {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:65px;
  4480. height:22px;
  4481. background:inherit;
  4482. background-color:rgba(255, 255, 255, 0);
  4483. border:none;
  4484. border-radius:0px;
  4485. -moz-box-shadow:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:16px;
  4492. }
  4493. #u69729 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:30px;
  4497. top:1472px;
  4498. width:65px;
  4499. height:22px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:16px;
  4505. }
  4506. #u69729 .text {
  4507. position:absolute;
  4508. align-self:flex-start;
  4509. padding:0px 0px 0px 0px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u69729_text {
  4514. border-width:0px;
  4515. white-space:nowrap;
  4516. text-transform:none;
  4517. }
  4518. #u69730_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:201px;
  4524. height:2px;
  4525. }
  4526. #u69730 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:1514px;
  4531. width:200px;
  4532. height:1px;
  4533. display:flex;
  4534. }
  4535. #u69730 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u69730_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u69731_div {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:49px;
  4554. height:22px;
  4555. background:inherit;
  4556. background-color:rgba(255, 255, 255, 0);
  4557. border:none;
  4558. border-radius:0px;
  4559. -moz-box-shadow:none;
  4560. -webkit-box-shadow:none;
  4561. box-shadow:none;
  4562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:16px;
  4566. }
  4567. #u69731 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:30px;
  4571. top:1571px;
  4572. width:49px;
  4573. height:22px;
  4574. display:flex;
  4575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:16px;
  4579. }
  4580. #u69731 .text {
  4581. position:absolute;
  4582. align-self:flex-start;
  4583. padding:0px 0px 0px 0px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u69731_text {
  4588. border-width:0px;
  4589. white-space:nowrap;
  4590. text-transform:none;
  4591. }
  4592. #u69732_div {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:49px;
  4598. height:17px;
  4599. background:inherit;
  4600. background-color:rgba(255, 255, 255, 0);
  4601. border:none;
  4602. border-radius:0px;
  4603. -moz-box-shadow:none;
  4604. -webkit-box-shadow:none;
  4605. box-shadow:none;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:12px;
  4610. color:#AAAAAA;
  4611. }
  4612. #u69732 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:30px;
  4616. top:1535px;
  4617. width:49px;
  4618. height:17px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. font-size:12px;
  4624. color:#AAAAAA;
  4625. }
  4626. #u69732 .text {
  4627. position:absolute;
  4628. align-self:flex-start;
  4629. padding:0px 0px 0px 0px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u69732_text {
  4634. border-width:0px;
  4635. white-space:nowrap;
  4636. text-transform:none;
  4637. }
  4638. #u69733_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:49px;
  4644. height:22px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 0);
  4647. border:none;
  4648. border-radius:0px;
  4649. -moz-box-shadow:none;
  4650. -webkit-box-shadow:none;
  4651. box-shadow:none;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:16px;
  4656. }
  4657. #u69733 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:30px;
  4661. top:1613px;
  4662. width:49px;
  4663. height:22px;
  4664. display:flex;
  4665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:16px;
  4669. }
  4670. #u69733 .text {
  4671. position:absolute;
  4672. align-self:flex-start;
  4673. padding:0px 0px 0px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u69733_text {
  4678. border-width:0px;
  4679. white-space:nowrap;
  4680. text-transform:none;
  4681. }
  4682. #u69734_div {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:65px;
  4688. height:22px;
  4689. background:inherit;
  4690. background-color:rgba(255, 255, 255, 0);
  4691. border:none;
  4692. border-radius:0px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:16px;
  4700. }
  4701. #u69734 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:30px;
  4705. top:1655px;
  4706. width:65px;
  4707. height:22px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:16px;
  4713. }
  4714. #u69734 .text {
  4715. position:absolute;
  4716. align-self:flex-start;
  4717. padding:0px 0px 0px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u69734_text {
  4722. border-width:0px;
  4723. white-space:nowrap;
  4724. text-transform:none;
  4725. }
  4726. #u69735_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:201px;
  4732. height:2px;
  4733. }
  4734. #u69735 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:1697px;
  4739. width:200px;
  4740. height:1px;
  4741. display:flex;
  4742. }
  4743. #u69735 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 2px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u69735_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u69736_div {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:81px;
  4762. height:22px;
  4763. background:inherit;
  4764. background-color:rgba(255, 255, 255, 0);
  4765. border:none;
  4766. border-radius:0px;
  4767. -moz-box-shadow:none;
  4768. -webkit-box-shadow:none;
  4769. box-shadow:none;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:16px;
  4774. }
  4775. #u69736 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:30px;
  4779. top:1754px;
  4780. width:81px;
  4781. height:22px;
  4782. display:flex;
  4783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4784. font-weight:400;
  4785. font-style:normal;
  4786. font-size:16px;
  4787. }
  4788. #u69736 .text {
  4789. position:absolute;
  4790. align-self:flex-start;
  4791. padding:0px 0px 0px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u69736_text {
  4796. border-width:0px;
  4797. white-space:nowrap;
  4798. text-transform:none;
  4799. }
  4800. #u69737_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:49px;
  4806. height:17px;
  4807. background:inherit;
  4808. background-color:rgba(255, 255, 255, 0);
  4809. border:none;
  4810. border-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#AAAAAA;
  4819. }
  4820. #u69737 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:30px;
  4824. top:1718px;
  4825. width:49px;
  4826. height:17px;
  4827. display:flex;
  4828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:12px;
  4832. color:#AAAAAA;
  4833. }
  4834. #u69737 .text {
  4835. position:absolute;
  4836. align-self:flex-start;
  4837. padding:0px 0px 0px 0px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u69737_text {
  4842. border-width:0px;
  4843. white-space:nowrap;
  4844. text-transform:none;
  4845. }
  4846. #u69738_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:81px;
  4852. height:22px;
  4853. background:inherit;
  4854. background-color:rgba(255, 255, 255, 0);
  4855. border:none;
  4856. border-radius:0px;
  4857. -moz-box-shadow:none;
  4858. -webkit-box-shadow:none;
  4859. box-shadow:none;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:16px;
  4864. }
  4865. #u69738 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:30px;
  4869. top:1796px;
  4870. width:81px;
  4871. height:22px;
  4872. display:flex;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:16px;
  4877. }
  4878. #u69738 .text {
  4879. position:absolute;
  4880. align-self:flex-start;
  4881. padding:0px 0px 0px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u69738_text {
  4886. border-width:0px;
  4887. white-space:nowrap;
  4888. text-transform:none;
  4889. }
  4890. #u69739_div {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:81px;
  4896. height:22px;
  4897. background:inherit;
  4898. background-color:rgba(255, 255, 255, 0);
  4899. border:none;
  4900. border-radius:0px;
  4901. -moz-box-shadow:none;
  4902. -webkit-box-shadow:none;
  4903. box-shadow:none;
  4904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:16px;
  4908. }
  4909. #u69739 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:30px;
  4913. top:1838px;
  4914. width:81px;
  4915. height:22px;
  4916. display:flex;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:16px;
  4921. }
  4922. #u69739 .text {
  4923. position:absolute;
  4924. align-self:flex-start;
  4925. padding:0px 0px 0px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u69739_text {
  4930. border-width:0px;
  4931. white-space:nowrap;
  4932. text-transform:none;
  4933. }
  4934. #u69740_div {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:65px;
  4940. height:22px;
  4941. background:inherit;
  4942. background-color:rgba(255, 255, 255, 0);
  4943. border:none;
  4944. border-radius:0px;
  4945. -moz-box-shadow:none;
  4946. -webkit-box-shadow:none;
  4947. box-shadow:none;
  4948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:16px;
  4952. }
  4953. #u69740 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:30px;
  4957. top:1430px;
  4958. width:65px;
  4959. height:22px;
  4960. display:flex;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:16px;
  4965. }
  4966. #u69740 .text {
  4967. position:absolute;
  4968. align-self:flex-start;
  4969. padding:0px 0px 0px 0px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u69740_text {
  4974. border-width:0px;
  4975. white-space:nowrap;
  4976. text-transform:none;
  4977. }
  4978. #u69741_img {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:201px;
  4984. height:2px;
  4985. }
  4986. #u69741 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:669px;
  4991. width:200px;
  4992. height:1px;
  4993. display:flex;
  4994. }
  4995. #u69741 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 2px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u69741_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u69742_div {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:65px;
  5014. height:22px;
  5015. background:inherit;
  5016. background-color:rgba(255, 255, 255, 0);
  5017. border:none;
  5018. border-radius:0px;
  5019. -moz-box-shadow:none;
  5020. -webkit-box-shadow:none;
  5021. box-shadow:none;
  5022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:16px;
  5026. }
  5027. #u69742 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:30px;
  5031. top:726px;
  5032. width:65px;
  5033. height:22px;
  5034. display:flex;
  5035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:16px;
  5039. }
  5040. #u69742 .text {
  5041. position:absolute;
  5042. align-self:flex-start;
  5043. padding:0px 0px 0px 0px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u69742_text {
  5048. border-width:0px;
  5049. white-space:nowrap;
  5050. text-transform:none;
  5051. }
  5052. #u69743_div {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:49px;
  5058. height:17px;
  5059. background:inherit;
  5060. background-color:rgba(255, 255, 255, 0);
  5061. border:none;
  5062. border-radius:0px;
  5063. -moz-box-shadow:none;
  5064. -webkit-box-shadow:none;
  5065. box-shadow:none;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. color:#AAAAAA;
  5071. }
  5072. #u69743 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:30px;
  5076. top:690px;
  5077. width:49px;
  5078. height:17px;
  5079. display:flex;
  5080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:12px;
  5084. color:#AAAAAA;
  5085. }
  5086. #u69743 .text {
  5087. position:absolute;
  5088. align-self:flex-start;
  5089. padding:0px 0px 0px 0px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u69743_text {
  5094. border-width:0px;
  5095. white-space:nowrap;
  5096. text-transform:none;
  5097. }
  5098. #u69744_div {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:65px;
  5104. height:22px;
  5105. background:inherit;
  5106. background-color:rgba(255, 255, 255, 0);
  5107. border:none;
  5108. border-radius:0px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:16px;
  5116. }
  5117. #u69744 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:30px;
  5121. top:768px;
  5122. width:65px;
  5123. height:22px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:16px;
  5129. }
  5130. #u69744 .text {
  5131. position:absolute;
  5132. align-self:flex-start;
  5133. padding:0px 0px 0px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u69744_text {
  5138. border-width:0px;
  5139. white-space:nowrap;
  5140. text-transform:none;
  5141. }
  5142. #u69745_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:65px;
  5148. height:22px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:16px;
  5160. }
  5161. #u69745 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:30px;
  5165. top:852px;
  5166. width:65px;
  5167. height:22px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:16px;
  5173. }
  5174. #u69745 .text {
  5175. position:absolute;
  5176. align-self:flex-start;
  5177. padding:0px 0px 0px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u69745_text {
  5182. border-width:0px;
  5183. white-space:nowrap;
  5184. text-transform:none;
  5185. }
  5186. #u69746_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:65px;
  5192. height:22px;
  5193. background:inherit;
  5194. background-color:rgba(255, 255, 255, 0);
  5195. border:none;
  5196. border-radius:0px;
  5197. -moz-box-shadow:none;
  5198. -webkit-box-shadow:none;
  5199. box-shadow:none;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:16px;
  5204. }
  5205. #u69746 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:30px;
  5209. top:810px;
  5210. width:65px;
  5211. height:22px;
  5212. display:flex;
  5213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. font-size:16px;
  5217. }
  5218. #u69746 .text {
  5219. position:absolute;
  5220. align-self:flex-start;
  5221. padding:0px 0px 0px 0px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u69746_text {
  5226. border-width:0px;
  5227. white-space:nowrap;
  5228. text-transform:none;
  5229. }
  5230. #u69747_div {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:65px;
  5236. height:22px;
  5237. background:inherit;
  5238. background-color:rgba(255, 255, 255, 0);
  5239. border:none;
  5240. border-radius:0px;
  5241. -moz-box-shadow:none;
  5242. -webkit-box-shadow:none;
  5243. box-shadow:none;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:16px;
  5248. }
  5249. #u69747 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:30px;
  5253. top:894px;
  5254. width:65px;
  5255. height:22px;
  5256. display:flex;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:16px;
  5261. }
  5262. #u69747 .text {
  5263. position:absolute;
  5264. align-self:flex-start;
  5265. padding:0px 0px 0px 0px;
  5266. box-sizing:border-box;
  5267. width:100%;
  5268. }
  5269. #u69747_text {
  5270. border-width:0px;
  5271. white-space:nowrap;
  5272. text-transform:none;
  5273. }
  5274. #u69748_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:65px;
  5280. height:22px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 0);
  5283. border:none;
  5284. border-radius:0px;
  5285. -moz-box-shadow:none;
  5286. -webkit-box-shadow:none;
  5287. box-shadow:none;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:16px;
  5292. }
  5293. #u69748 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:30px;
  5297. top:936px;
  5298. width:65px;
  5299. height:22px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:16px;
  5305. }
  5306. #u69748 .text {
  5307. position:absolute;
  5308. align-self:flex-start;
  5309. padding:0px 0px 0px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u69748_text {
  5314. border-width:0px;
  5315. white-space:nowrap;
  5316. text-transform:none;
  5317. }
  5318. #u69749_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:201px;
  5324. height:2px;
  5325. }
  5326. #u69749 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:1018px;
  5331. width:200px;
  5332. height:1px;
  5333. display:flex;
  5334. }
  5335. #u69749 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 2px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u69749_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u69750_div {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:65px;
  5354. height:22px;
  5355. background:inherit;
  5356. background-color:rgba(255, 255, 255, 0);
  5357. border:none;
  5358. border-radius:0px;
  5359. -moz-box-shadow:none;
  5360. -webkit-box-shadow:none;
  5361. box-shadow:none;
  5362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:16px;
  5366. }
  5367. #u69750 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:30px;
  5371. top:1075px;
  5372. width:65px;
  5373. height:22px;
  5374. display:flex;
  5375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:16px;
  5379. }
  5380. #u69750 .text {
  5381. position:absolute;
  5382. align-self:flex-start;
  5383. padding:0px 0px 0px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u69750_text {
  5388. border-width:0px;
  5389. white-space:nowrap;
  5390. text-transform:none;
  5391. }
  5392. #u69751_div {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:49px;
  5398. height:17px;
  5399. background:inherit;
  5400. background-color:rgba(255, 255, 255, 0);
  5401. border:none;
  5402. border-radius:0px;
  5403. -moz-box-shadow:none;
  5404. -webkit-box-shadow:none;
  5405. box-shadow:none;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:12px;
  5410. color:#AAAAAA;
  5411. }
  5412. #u69751 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:30px;
  5416. top:1039px;
  5417. width:49px;
  5418. height:17px;
  5419. display:flex;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:12px;
  5424. color:#AAAAAA;
  5425. }
  5426. #u69751 .text {
  5427. position:absolute;
  5428. align-self:flex-start;
  5429. padding:0px 0px 0px 0px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u69751_text {
  5434. border-width:0px;
  5435. white-space:nowrap;
  5436. text-transform:none;
  5437. }
  5438. #u69752_div {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:65px;
  5444. height:22px;
  5445. background:inherit;
  5446. background-color:rgba(255, 255, 255, 0);
  5447. border:none;
  5448. border-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:16px;
  5456. }
  5457. #u69752 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:30px;
  5461. top:1117px;
  5462. width:65px;
  5463. height:22px;
  5464. display:flex;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:16px;
  5469. }
  5470. #u69752 .text {
  5471. position:absolute;
  5472. align-self:flex-start;
  5473. padding:0px 0px 0px 0px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u69752_text {
  5478. border-width:0px;
  5479. white-space:nowrap;
  5480. text-transform:none;
  5481. }
  5482. #u69753_div {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:65px;
  5488. height:22px;
  5489. background:inherit;
  5490. background-color:rgba(255, 255, 255, 0);
  5491. border:none;
  5492. border-radius:0px;
  5493. -moz-box-shadow:none;
  5494. -webkit-box-shadow:none;
  5495. box-shadow:none;
  5496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:16px;
  5500. }
  5501. #u69753 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:30px;
  5505. top:1201px;
  5506. width:65px;
  5507. height:22px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:16px;
  5513. }
  5514. #u69753 .text {
  5515. position:absolute;
  5516. align-self:flex-start;
  5517. padding:0px 0px 0px 0px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u69753_text {
  5522. border-width:0px;
  5523. white-space:nowrap;
  5524. text-transform:none;
  5525. }
  5526. #u69754_div {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:65px;
  5532. height:22px;
  5533. background:inherit;
  5534. background-color:rgba(255, 255, 255, 0);
  5535. border:none;
  5536. border-radius:0px;
  5537. -moz-box-shadow:none;
  5538. -webkit-box-shadow:none;
  5539. box-shadow:none;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:16px;
  5544. }
  5545. #u69754 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:30px;
  5549. top:1159px;
  5550. width:65px;
  5551. height:22px;
  5552. display:flex;
  5553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5554. font-weight:400;
  5555. font-style:normal;
  5556. font-size:16px;
  5557. }
  5558. #u69754 .text {
  5559. position:absolute;
  5560. align-self:flex-start;
  5561. padding:0px 0px 0px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u69754_text {
  5566. border-width:0px;
  5567. white-space:nowrap;
  5568. text-transform:none;
  5569. }
  5570. #u69755_div {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:65px;
  5576. height:22px;
  5577. background:inherit;
  5578. background-color:rgba(255, 255, 255, 0);
  5579. border:none;
  5580. border-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:16px;
  5588. }
  5589. #u69755 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:30px;
  5593. top:1243px;
  5594. width:65px;
  5595. height:22px;
  5596. display:flex;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:16px;
  5601. }
  5602. #u69755 .text {
  5603. position:absolute;
  5604. align-self:flex-start;
  5605. padding:0px 0px 0px 0px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u69755_text {
  5610. border-width:0px;
  5611. white-space:nowrap;
  5612. text-transform:none;
  5613. }
  5614. #u69756_div {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:65px;
  5620. height:22px;
  5621. background:inherit;
  5622. background-color:rgba(255, 255, 255, 0);
  5623. border:none;
  5624. border-radius:0px;
  5625. -moz-box-shadow:none;
  5626. -webkit-box-shadow:none;
  5627. box-shadow:none;
  5628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:16px;
  5632. }
  5633. #u69756 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:30px;
  5637. top:978px;
  5638. width:65px;
  5639. height:22px;
  5640. display:flex;
  5641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:16px;
  5645. }
  5646. #u69756 .text {
  5647. position:absolute;
  5648. align-self:flex-start;
  5649. padding:0px 0px 0px 0px;
  5650. box-sizing:border-box;
  5651. width:100%;
  5652. }
  5653. #u69756_text {
  5654. border-width:0px;
  5655. white-space:nowrap;
  5656. text-transform:none;
  5657. }
  5658. #u69757_div {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:65px;
  5664. height:22px;
  5665. background:inherit;
  5666. background-color:rgba(255, 255, 255, 0);
  5667. border:none;
  5668. border-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:16px;
  5676. }
  5677. #u69757 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:30px;
  5681. top:622px;
  5682. width:65px;
  5683. height:22px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:16px;
  5689. }
  5690. #u69757 .text {
  5691. position:absolute;
  5692. align-self:flex-start;
  5693. padding:0px 0px 0px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u69757_text {
  5698. border-width:0px;
  5699. white-space:nowrap;
  5700. text-transform:none;
  5701. }
  5702. #u69758_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:73px;
  5708. height:40px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 0);
  5711. border:none;
  5712. border-radius:0px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5717. font-weight:500;
  5718. font-style:normal;
  5719. font-size:18px;
  5720. color:#1890FF;
  5721. line-height:40px;
  5722. }
  5723. #u69758 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:965px;
  5727. top:133px;
  5728. width:73px;
  5729. height:40px;
  5730. display:flex;
  5731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5732. font-weight:500;
  5733. font-style:normal;
  5734. font-size:18px;
  5735. color:#1890FF;
  5736. line-height:40px;
  5737. }
  5738. #u69758 .text {
  5739. position:absolute;
  5740. align-self:flex-start;
  5741. padding:0px 0px 0px 0px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u69758_text {
  5746. border-width:0px;
  5747. white-space:nowrap;
  5748. text-transform:none;
  5749. }
  5750. #u69759_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:73px;
  5756. height:40px;
  5757. background:inherit;
  5758. background-color:rgba(255, 255, 255, 0);
  5759. border:none;
  5760. border-radius:0px;
  5761. -moz-box-shadow:none;
  5762. -webkit-box-shadow:none;
  5763. box-shadow:none;
  5764. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5765. font-weight:500;
  5766. font-style:normal;
  5767. font-size:18px;
  5768. line-height:40px;
  5769. }
  5770. #u69759 {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:1068px;
  5774. top:133px;
  5775. width:73px;
  5776. height:40px;
  5777. display:flex;
  5778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5779. font-weight:500;
  5780. font-style:normal;
  5781. font-size:18px;
  5782. line-height:40px;
  5783. }
  5784. #u69759 .text {
  5785. position:absolute;
  5786. align-self:flex-start;
  5787. padding:0px 0px 0px 0px;
  5788. box-sizing:border-box;
  5789. width:100%;
  5790. }
  5791. #u69759_text {
  5792. border-width:0px;
  5793. white-space:nowrap;
  5794. text-transform:none;
  5795. }
  5796. #u69760_div {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:109px;
  5802. height:40px;
  5803. background:inherit;
  5804. background-color:rgba(255, 255, 255, 0);
  5805. border:none;
  5806. border-radius:0px;
  5807. -moz-box-shadow:none;
  5808. -webkit-box-shadow:none;
  5809. box-shadow:none;
  5810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5811. font-weight:500;
  5812. font-style:normal;
  5813. font-size:18px;
  5814. line-height:40px;
  5815. }
  5816. #u69760 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1171px;
  5820. top:133px;
  5821. width:109px;
  5822. height:40px;
  5823. display:flex;
  5824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5825. font-weight:500;
  5826. font-style:normal;
  5827. font-size:18px;
  5828. line-height:40px;
  5829. }
  5830. #u69760 .text {
  5831. position:absolute;
  5832. align-self:flex-start;
  5833. padding:0px 0px 0px 0px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u69760_text {
  5838. border-width:0px;
  5839. white-space:nowrap;
  5840. text-transform:none;
  5841. }