styles.css 111 KB

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