styles.css 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685
  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. #u62709_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. #u62709 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u62709 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u62709_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u62710_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. #u62710 {
  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. #u62710 .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. #u62710_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u62711_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. #u62711 {
  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. #u62711 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u62711_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u62712 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u62713_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u62713 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u62713 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u62713_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u62714_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. #u62714 {
  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. #u62714 .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. #u62714_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u62715_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. #u62715 {
  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. #u62715 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u62715_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u62716 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u62717_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. #u62717 {
  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. #u62717 .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. #u62717_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u62718_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u62718 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u62718 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u62718_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u62719 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u62720_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. #u62720 {
  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. #u62720 .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. #u62720_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u62721_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u62721 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u62721 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u62721_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u62722 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u62723_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. #u62723 {
  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. #u62723 .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. #u62723_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u62724_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u62724 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u62724 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u62724_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u62725 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u62726_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. #u62726 {
  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. #u62726 .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. #u62726_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u62727_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u62727 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u62727 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u62727_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u62728 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u62729_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. #u62729 {
  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. #u62729 .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. #u62729_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u62730_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u62730 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u62730 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u62730_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u62731 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u62732_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. #u62732 {
  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. #u62732 .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. #u62732_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u62733_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u62733 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u62733 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u62733_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u62734 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u62735_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. #u62735 {
  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. #u62735 .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. #u62735_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u62736_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u62736 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u62736 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u62736_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u62737 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u62738_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. #u62738 {
  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. #u62738 .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. #u62738_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u62739_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u62739 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u62739 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u62739_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u62740 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u62741_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. #u62741 {
  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. #u62741 .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. #u62741_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u62742_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u62742 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u62742 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u62742_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u62743_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. #u62743 {
  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. #u62743 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u62743_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u62744_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u62744 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u62744 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u62744_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u62745_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. #u62745 {
  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. #u62745 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u62745_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u62746_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u62746 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u62746 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u62746_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u62747 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u62748_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. #u62748 {
  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. #u62748 .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. #u62748_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u62749_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u62749 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u62749 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u62749_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u62750 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u62751_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. #u62751 {
  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. #u62751 .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. #u62751_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u62752_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u62752 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u62752 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u62752_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u62753 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u62754_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. #u62754_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. #u62754_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. #u62754 {
  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. #u62754 .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. #u62754_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. #u62754.disabled {
  1428. }
  1429. .u62754_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u62755_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u62755 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u62755 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u62755_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u62756_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. #u62756 {
  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. #u62756 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u62756_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u62757_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u62757 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u62757 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u62757_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u62758_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1262px;
  1544. height:1180px;
  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. #u62758 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:329px;
  1557. top:50px;
  1558. width:1262px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u62758 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u62758_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u62759_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:109px;
  1581. height:50px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-left:0px;
  1586. border-top:0px;
  1587. border-right:0px;
  1588. border-radius:0px;
  1589. border-bottom-right-radius:0px;
  1590. border-bottom-left-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:18px;
  1598. }
  1599. #u62759 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:348px;
  1603. top:50px;
  1604. width:109px;
  1605. height:50px;
  1606. display:flex;
  1607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:18px;
  1611. }
  1612. #u62759 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:0px 0px 0px 0px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u62759_text {
  1620. border-width:0px;
  1621. white-space:nowrap;
  1622. text-transform:none;
  1623. }
  1624. #u62760 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:349px;
  1628. top:231px;
  1629. width:1222px;
  1630. height:279px;
  1631. }
  1632. #u62761_img {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:154px;
  1638. height:32px;
  1639. }
  1640. #u62761 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:154px;
  1646. height:32px;
  1647. display:flex;
  1648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1649. font-weight:400;
  1650. font-style:normal;
  1651. font-size:12px;
  1652. color:#FFFFFF;
  1653. }
  1654. #u62761 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 0px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u62761_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. }
  1666. #u62762_img {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:156px;
  1672. height:32px;
  1673. }
  1674. #u62762 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:154px;
  1678. top:0px;
  1679. width:156px;
  1680. height:32px;
  1681. display:flex;
  1682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1683. font-weight:400;
  1684. font-style:normal;
  1685. font-size:12px;
  1686. color:#FFFFFF;
  1687. }
  1688. #u62762 .text {
  1689. position:absolute;
  1690. align-self:center;
  1691. padding:2px 2px 2px 0px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u62762_text {
  1696. border-width:0px;
  1697. word-wrap:break-word;
  1698. text-transform:none;
  1699. }
  1700. #u62763_img {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:143px;
  1706. height:32px;
  1707. }
  1708. #u62763 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:310px;
  1712. top:0px;
  1713. width:143px;
  1714. height:32px;
  1715. display:flex;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:#FFFFFF;
  1721. }
  1722. #u62763 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 2px 2px 0px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u62763_text {
  1730. border-width:0px;
  1731. word-wrap:break-word;
  1732. text-transform:none;
  1733. }
  1734. #u62764_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:153px;
  1740. height:32px;
  1741. }
  1742. #u62764 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:453px;
  1746. top:0px;
  1747. width:153px;
  1748. height:32px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. color:#FFFFFF;
  1755. }
  1756. #u62764 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 2px 2px 0px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u62764_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. }
  1768. #u62765_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:156px;
  1774. height:32px;
  1775. }
  1776. #u62765 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:606px;
  1780. top:0px;
  1781. width:156px;
  1782. height:32px;
  1783. display:flex;
  1784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:12px;
  1788. color:#FFFFFF;
  1789. }
  1790. #u62765 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 0px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u62765_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. }
  1802. #u62766_img {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:153px;
  1808. height:32px;
  1809. }
  1810. #u62766 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:762px;
  1814. top:0px;
  1815. width:153px;
  1816. height:32px;
  1817. display:flex;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:12px;
  1822. color:#FFFFFF;
  1823. }
  1824. #u62766 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 0px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u62766_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u62767_img {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:156px;
  1842. height:32px;
  1843. }
  1844. #u62767 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:915px;
  1848. top:0px;
  1849. width:156px;
  1850. height:32px;
  1851. display:flex;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:12px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u62767 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u62767_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. }
  1870. #u62768_img {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:151px;
  1876. height:32px;
  1877. }
  1878. #u62768 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:1071px;
  1882. top:0px;
  1883. width:151px;
  1884. height:32px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:12px;
  1890. color:#FFFFFF;
  1891. }
  1892. #u62768 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 2px 2px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u62768_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u62769_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:154px;
  1910. height:38px;
  1911. }
  1912. #u62769 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:32px;
  1917. width:154px;
  1918. height:38px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:12px;
  1924. color:#333333;
  1925. }
  1926. #u62769 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u62769_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u62770_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:156px;
  1945. height:38px;
  1946. }
  1947. #u62770 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:154px;
  1951. top:32px;
  1952. width:156px;
  1953. height:38px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:12px;
  1959. color:#333333;
  1960. }
  1961. #u62770 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:2px 2px 2px 0px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u62770_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. visibility:hidden;
  1973. }
  1974. #u62771_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:143px;
  1980. height:38px;
  1981. }
  1982. #u62771 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:310px;
  1986. top:32px;
  1987. width:143px;
  1988. height:38px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:12px;
  1994. color:#333333;
  1995. }
  1996. #u62771 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:2px 2px 2px 0px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u62771_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. visibility:hidden;
  2008. }
  2009. #u62772_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:153px;
  2015. height:38px;
  2016. }
  2017. #u62772 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:453px;
  2021. top:32px;
  2022. width:153px;
  2023. height:38px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:12px;
  2029. color:#333333;
  2030. }
  2031. #u62772 .text {
  2032. position:absolute;
  2033. align-self:center;
  2034. padding:2px 2px 2px 0px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u62772_text {
  2039. border-width:0px;
  2040. word-wrap:break-word;
  2041. text-transform:none;
  2042. visibility:hidden;
  2043. }
  2044. #u62773_img {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:156px;
  2050. height:38px;
  2051. }
  2052. #u62773 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:606px;
  2056. top:32px;
  2057. width:156px;
  2058. height:38px;
  2059. display:flex;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:12px;
  2064. color:#333333;
  2065. }
  2066. #u62773 .text {
  2067. position:absolute;
  2068. align-self:center;
  2069. padding:2px 2px 2px 0px;
  2070. box-sizing:border-box;
  2071. width:100%;
  2072. }
  2073. #u62773_text {
  2074. border-width:0px;
  2075. word-wrap:break-word;
  2076. text-transform:none;
  2077. visibility:hidden;
  2078. }
  2079. #u62774_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:153px;
  2085. height:38px;
  2086. }
  2087. #u62774 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:762px;
  2091. top:32px;
  2092. width:153px;
  2093. height:38px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:12px;
  2099. color:#333333;
  2100. }
  2101. #u62774 .text {
  2102. position:absolute;
  2103. align-self:center;
  2104. padding:2px 2px 2px 0px;
  2105. box-sizing:border-box;
  2106. width:100%;
  2107. }
  2108. #u62774_text {
  2109. border-width:0px;
  2110. word-wrap:break-word;
  2111. text-transform:none;
  2112. visibility:hidden;
  2113. }
  2114. #u62775_img {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:156px;
  2120. height:38px;
  2121. }
  2122. #u62775 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:915px;
  2126. top:32px;
  2127. width:156px;
  2128. height:38px;
  2129. display:flex;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:12px;
  2134. color:#333333;
  2135. }
  2136. #u62775 .text {
  2137. position:absolute;
  2138. align-self:center;
  2139. padding:2px 2px 2px 0px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u62775_text {
  2144. border-width:0px;
  2145. word-wrap:break-word;
  2146. text-transform:none;
  2147. visibility:hidden;
  2148. }
  2149. #u62776_img {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:151px;
  2155. height:38px;
  2156. }
  2157. #u62776 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:1071px;
  2161. top:32px;
  2162. width:151px;
  2163. height:38px;
  2164. display:flex;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:12px;
  2169. color:#1890FF;
  2170. }
  2171. #u62776 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:2px 2px 2px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u62776_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. }
  2183. #u62777_img {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:154px;
  2189. height:38px;
  2190. }
  2191. #u62777 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:70px;
  2196. width:154px;
  2197. height:38px;
  2198. display:flex;
  2199. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:12px;
  2203. color:#333333;
  2204. }
  2205. #u62777 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 0px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u62777_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. visibility:hidden;
  2217. }
  2218. #u62778_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:156px;
  2224. height:38px;
  2225. }
  2226. #u62778 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:154px;
  2230. top:70px;
  2231. width:156px;
  2232. height:38px;
  2233. display:flex;
  2234. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. color:#333333;
  2239. }
  2240. #u62778 .text {
  2241. position:absolute;
  2242. align-self:center;
  2243. padding:2px 2px 2px 0px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u62778_text {
  2248. border-width:0px;
  2249. word-wrap:break-word;
  2250. text-transform:none;
  2251. visibility:hidden;
  2252. }
  2253. #u62779_img {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:143px;
  2259. height:38px;
  2260. }
  2261. #u62779 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:310px;
  2265. top:70px;
  2266. width:143px;
  2267. height:38px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:12px;
  2273. color:#333333;
  2274. }
  2275. #u62779 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 0px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u62779_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. visibility:hidden;
  2287. }
  2288. #u62780_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:153px;
  2294. height:38px;
  2295. }
  2296. #u62780 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:453px;
  2300. top:70px;
  2301. width:153px;
  2302. height:38px;
  2303. display:flex;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:12px;
  2308. color:#333333;
  2309. }
  2310. #u62780 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u62780_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u62781_img {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:156px;
  2329. height:38px;
  2330. }
  2331. #u62781 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:606px;
  2335. top:70px;
  2336. width:156px;
  2337. height:38px;
  2338. display:flex;
  2339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. font-size:12px;
  2343. color:#333333;
  2344. }
  2345. #u62781 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u62781_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u62782_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:153px;
  2364. height:38px;
  2365. }
  2366. #u62782 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:762px;
  2370. top:70px;
  2371. width:153px;
  2372. height:38px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:12px;
  2378. color:#333333;
  2379. }
  2380. #u62782 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u62782_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. visibility:hidden;
  2392. }
  2393. #u62783_img {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:156px;
  2399. height:38px;
  2400. }
  2401. #u62783 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:915px;
  2405. top:70px;
  2406. width:156px;
  2407. height:38px;
  2408. display:flex;
  2409. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:12px;
  2413. color:#333333;
  2414. }
  2415. #u62783 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 0px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u62783_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u62784_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:151px;
  2434. height:38px;
  2435. }
  2436. #u62784 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:1071px;
  2440. top:70px;
  2441. width:151px;
  2442. height:38px;
  2443. display:flex;
  2444. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:12px;
  2448. color:#333333;
  2449. }
  2450. #u62784 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u62784_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u62785_img {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:154px;
  2469. height:35px;
  2470. }
  2471. #u62785 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:108px;
  2476. width:154px;
  2477. height:35px;
  2478. display:flex;
  2479. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2480. font-weight:400;
  2481. font-style:normal;
  2482. font-size:12px;
  2483. color:#333333;
  2484. }
  2485. #u62785 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 0px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u62785_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. visibility:hidden;
  2497. }
  2498. #u62786_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:156px;
  2504. height:35px;
  2505. }
  2506. #u62786 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:154px;
  2510. top:108px;
  2511. width:156px;
  2512. height:35px;
  2513. display:flex;
  2514. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. color:#333333;
  2519. }
  2520. #u62786 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u62786_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u62787_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:143px;
  2539. height:35px;
  2540. }
  2541. #u62787 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:310px;
  2545. top:108px;
  2546. width:143px;
  2547. height:35px;
  2548. display:flex;
  2549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:12px;
  2553. color:#333333;
  2554. }
  2555. #u62787 .text {
  2556. position:absolute;
  2557. align-self:center;
  2558. padding:2px 2px 2px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u62787_text {
  2563. border-width:0px;
  2564. word-wrap:break-word;
  2565. text-transform:none;
  2566. visibility:hidden;
  2567. }
  2568. #u62788_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:153px;
  2574. height:35px;
  2575. }
  2576. #u62788 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:453px;
  2580. top:108px;
  2581. width:153px;
  2582. height:35px;
  2583. display:flex;
  2584. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. color:#333333;
  2589. }
  2590. #u62788 .text {
  2591. position:absolute;
  2592. align-self:center;
  2593. padding:2px 2px 2px 0px;
  2594. box-sizing:border-box;
  2595. width:100%;
  2596. }
  2597. #u62788_text {
  2598. border-width:0px;
  2599. word-wrap:break-word;
  2600. text-transform:none;
  2601. visibility:hidden;
  2602. }
  2603. #u62789_img {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:156px;
  2609. height:35px;
  2610. }
  2611. #u62789 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:606px;
  2615. top:108px;
  2616. width:156px;
  2617. height:35px;
  2618. display:flex;
  2619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:12px;
  2623. color:#333333;
  2624. }
  2625. #u62789 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u62789_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u62790_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:153px;
  2644. height:35px;
  2645. }
  2646. #u62790 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:762px;
  2650. top:108px;
  2651. width:153px;
  2652. height:35px;
  2653. display:flex;
  2654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:12px;
  2658. color:#333333;
  2659. }
  2660. #u62790 .text {
  2661. position:absolute;
  2662. align-self:center;
  2663. padding:2px 2px 2px 0px;
  2664. box-sizing:border-box;
  2665. width:100%;
  2666. }
  2667. #u62790_text {
  2668. border-width:0px;
  2669. word-wrap:break-word;
  2670. text-transform:none;
  2671. visibility:hidden;
  2672. }
  2673. #u62791_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:156px;
  2679. height:35px;
  2680. }
  2681. #u62791 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:915px;
  2685. top:108px;
  2686. width:156px;
  2687. height:35px;
  2688. display:flex;
  2689. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:12px;
  2693. color:#333333;
  2694. }
  2695. #u62791 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 0px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u62791_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. visibility:hidden;
  2707. }
  2708. #u62792_img {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:151px;
  2714. height:35px;
  2715. }
  2716. #u62792 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:1071px;
  2720. top:108px;
  2721. width:151px;
  2722. height:35px;
  2723. display:flex;
  2724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:12px;
  2728. color:#333333;
  2729. }
  2730. #u62792 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:2px 2px 2px 0px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u62792_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. visibility:hidden;
  2742. }
  2743. #u62793_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:154px;
  2749. height:35px;
  2750. }
  2751. #u62793 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:143px;
  2756. width:154px;
  2757. height:35px;
  2758. display:flex;
  2759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:12px;
  2763. color:#333333;
  2764. }
  2765. #u62793 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 0px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u62793_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u62794_img {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:156px;
  2784. height:35px;
  2785. }
  2786. #u62794 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:154px;
  2790. top:143px;
  2791. width:156px;
  2792. height:35px;
  2793. display:flex;
  2794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. font-size:12px;
  2798. color:#333333;
  2799. }
  2800. #u62794 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 0px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u62794_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u62795_img {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:143px;
  2819. height:35px;
  2820. }
  2821. #u62795 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:310px;
  2825. top:143px;
  2826. width:143px;
  2827. height:35px;
  2828. display:flex;
  2829. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2830. font-weight:400;
  2831. font-style:normal;
  2832. font-size:12px;
  2833. color:#333333;
  2834. }
  2835. #u62795 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 0px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u62795_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. visibility:hidden;
  2847. }
  2848. #u62796_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:153px;
  2854. height:35px;
  2855. }
  2856. #u62796 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:453px;
  2860. top:143px;
  2861. width:153px;
  2862. height:35px;
  2863. display:flex;
  2864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:12px;
  2868. color:#333333;
  2869. }
  2870. #u62796 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 0px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u62796_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. visibility:hidden;
  2882. }
  2883. #u62797_img {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:156px;
  2889. height:35px;
  2890. }
  2891. #u62797 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:606px;
  2895. top:143px;
  2896. width:156px;
  2897. height:35px;
  2898. display:flex;
  2899. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:12px;
  2903. color:#333333;
  2904. }
  2905. #u62797 .text {
  2906. position:absolute;
  2907. align-self:center;
  2908. padding:2px 2px 2px 0px;
  2909. box-sizing:border-box;
  2910. width:100%;
  2911. }
  2912. #u62797_text {
  2913. border-width:0px;
  2914. word-wrap:break-word;
  2915. text-transform:none;
  2916. visibility:hidden;
  2917. }
  2918. #u62798_img {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:153px;
  2924. height:35px;
  2925. }
  2926. #u62798 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:762px;
  2930. top:143px;
  2931. width:153px;
  2932. height:35px;
  2933. display:flex;
  2934. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:12px;
  2938. color:#333333;
  2939. }
  2940. #u62798 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 2px 2px 0px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u62798_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u62799_img {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:156px;
  2959. height:35px;
  2960. }
  2961. #u62799 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:915px;
  2965. top:143px;
  2966. width:156px;
  2967. height:35px;
  2968. display:flex;
  2969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:12px;
  2973. color:#333333;
  2974. }
  2975. #u62799 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 0px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u62799_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. visibility:hidden;
  2987. }
  2988. #u62800_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:151px;
  2994. height:35px;
  2995. }
  2996. #u62800 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:1071px;
  3000. top:143px;
  3001. width:151px;
  3002. height:35px;
  3003. display:flex;
  3004. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:12px;
  3008. color:#333333;
  3009. }
  3010. #u62800 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 0px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u62800_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u62801_img {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:154px;
  3029. height:35px;
  3030. }
  3031. #u62801 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:178px;
  3036. width:154px;
  3037. height:35px;
  3038. display:flex;
  3039. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3040. font-weight:400;
  3041. font-style:normal;
  3042. font-size:12px;
  3043. color:#333333;
  3044. }
  3045. #u62801 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 0px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u62801_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u62802_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:156px;
  3064. height:35px;
  3065. }
  3066. #u62802 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:154px;
  3070. top:178px;
  3071. width:156px;
  3072. height:35px;
  3073. display:flex;
  3074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:12px;
  3078. color:#333333;
  3079. }
  3080. #u62802 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 0px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u62802_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u62803_img {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:143px;
  3099. height:35px;
  3100. }
  3101. #u62803 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:310px;
  3105. top:178px;
  3106. width:143px;
  3107. height:35px;
  3108. display:flex;
  3109. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:12px;
  3113. color:#333333;
  3114. }
  3115. #u62803 .text {
  3116. position:absolute;
  3117. align-self:center;
  3118. padding:2px 2px 2px 0px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u62803_text {
  3123. border-width:0px;
  3124. word-wrap:break-word;
  3125. text-transform:none;
  3126. visibility:hidden;
  3127. }
  3128. #u62804_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:153px;
  3134. height:35px;
  3135. }
  3136. #u62804 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:453px;
  3140. top:178px;
  3141. width:153px;
  3142. height:35px;
  3143. display:flex;
  3144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:12px;
  3148. color:#333333;
  3149. }
  3150. #u62804 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 2px 0px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u62804_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u62805_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:156px;
  3169. height:35px;
  3170. }
  3171. #u62805 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:606px;
  3175. top:178px;
  3176. width:156px;
  3177. height:35px;
  3178. display:flex;
  3179. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. color:#333333;
  3184. }
  3185. #u62805 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u62805_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u62806_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:153px;
  3204. height:35px;
  3205. }
  3206. #u62806 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:762px;
  3210. top:178px;
  3211. width:153px;
  3212. height:35px;
  3213. display:flex;
  3214. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:12px;
  3218. color:#333333;
  3219. }
  3220. #u62806 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 0px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u62806_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u62807_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:156px;
  3239. height:35px;
  3240. }
  3241. #u62807 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:915px;
  3245. top:178px;
  3246. width:156px;
  3247. height:35px;
  3248. display:flex;
  3249. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:12px;
  3253. color:#333333;
  3254. }
  3255. #u62807 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u62807_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u62808_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:151px;
  3274. height:35px;
  3275. }
  3276. #u62808 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:1071px;
  3280. top:178px;
  3281. width:151px;
  3282. height:35px;
  3283. display:flex;
  3284. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:12px;
  3288. color:#333333;
  3289. }
  3290. #u62808 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 0px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u62808_text {
  3298. border-width:0px;
  3299. word-wrap:break-word;
  3300. text-transform:none;
  3301. visibility:hidden;
  3302. }
  3303. #u62809_img {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:154px;
  3309. height:35px;
  3310. }
  3311. #u62809 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:213px;
  3316. width:154px;
  3317. height:35px;
  3318. display:flex;
  3319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:12px;
  3323. color:#333333;
  3324. }
  3325. #u62809 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u62809_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. visibility:hidden;
  3337. }
  3338. #u62810_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:156px;
  3344. height:35px;
  3345. }
  3346. #u62810 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:154px;
  3350. top:213px;
  3351. width:156px;
  3352. height:35px;
  3353. display:flex;
  3354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. color:#333333;
  3359. }
  3360. #u62810 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u62810_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u62811_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:143px;
  3379. height:35px;
  3380. }
  3381. #u62811 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:310px;
  3385. top:213px;
  3386. width:143px;
  3387. height:35px;
  3388. display:flex;
  3389. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. color:#333333;
  3394. }
  3395. #u62811 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 0px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u62811_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. visibility:hidden;
  3407. }
  3408. #u62812_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:153px;
  3414. height:35px;
  3415. }
  3416. #u62812 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:453px;
  3420. top:213px;
  3421. width:153px;
  3422. height:35px;
  3423. display:flex;
  3424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:12px;
  3428. color:#333333;
  3429. }
  3430. #u62812 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u62812_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u62813_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:156px;
  3449. height:35px;
  3450. }
  3451. #u62813 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:606px;
  3455. top:213px;
  3456. width:156px;
  3457. height:35px;
  3458. display:flex;
  3459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. color:#333333;
  3464. }
  3465. #u62813 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 0px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u62813_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. visibility:hidden;
  3477. }
  3478. #u62814_img {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:153px;
  3484. height:35px;
  3485. }
  3486. #u62814 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:762px;
  3490. top:213px;
  3491. width:153px;
  3492. height:35px;
  3493. display:flex;
  3494. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:12px;
  3498. color:#333333;
  3499. }
  3500. #u62814 .text {
  3501. position:absolute;
  3502. align-self:center;
  3503. padding:2px 2px 2px 0px;
  3504. box-sizing:border-box;
  3505. width:100%;
  3506. }
  3507. #u62814_text {
  3508. border-width:0px;
  3509. word-wrap:break-word;
  3510. text-transform:none;
  3511. visibility:hidden;
  3512. }
  3513. #u62815_img {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:156px;
  3519. height:35px;
  3520. }
  3521. #u62815 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:915px;
  3525. top:213px;
  3526. width:156px;
  3527. height:35px;
  3528. display:flex;
  3529. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:12px;
  3533. color:#333333;
  3534. }
  3535. #u62815 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 0px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u62815_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. visibility:hidden;
  3547. }
  3548. #u62816_img {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:151px;
  3554. height:35px;
  3555. }
  3556. #u62816 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:1071px;
  3560. top:213px;
  3561. width:151px;
  3562. height:35px;
  3563. display:flex;
  3564. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3565. font-weight:400;
  3566. font-style:normal;
  3567. font-size:12px;
  3568. color:#333333;
  3569. }
  3570. #u62816 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 0px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u62816_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u62817_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:154px;
  3589. height:31px;
  3590. }
  3591. #u62817 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:248px;
  3596. width:154px;
  3597. height:31px;
  3598. display:flex;
  3599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:12px;
  3603. color:#333333;
  3604. }
  3605. #u62817 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 0px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u62817_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. visibility:hidden;
  3617. }
  3618. #u62818_img {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:156px;
  3624. height:31px;
  3625. }
  3626. #u62818 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:154px;
  3630. top:248px;
  3631. width:156px;
  3632. height:31px;
  3633. display:flex;
  3634. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:12px;
  3638. color:#333333;
  3639. }
  3640. #u62818 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 0px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u62818_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. visibility:hidden;
  3652. }
  3653. #u62819_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:143px;
  3659. height:31px;
  3660. }
  3661. #u62819 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:310px;
  3665. top:248px;
  3666. width:143px;
  3667. height:31px;
  3668. display:flex;
  3669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:12px;
  3673. color:#333333;
  3674. }
  3675. #u62819 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 2px 2px 0px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u62819_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u62820_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:153px;
  3694. height:31px;
  3695. }
  3696. #u62820 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:453px;
  3700. top:248px;
  3701. width:153px;
  3702. height:31px;
  3703. display:flex;
  3704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. color:#333333;
  3709. }
  3710. #u62820 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u62820_text {
  3718. border-width:0px;
  3719. word-wrap:break-word;
  3720. text-transform:none;
  3721. visibility:hidden;
  3722. }
  3723. #u62821_img {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:156px;
  3729. height:31px;
  3730. }
  3731. #u62821 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:606px;
  3735. top:248px;
  3736. width:156px;
  3737. height:31px;
  3738. display:flex;
  3739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:12px;
  3743. color:#333333;
  3744. }
  3745. #u62821 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u62821_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u62822_img {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:153px;
  3764. height:31px;
  3765. }
  3766. #u62822 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:762px;
  3770. top:248px;
  3771. width:153px;
  3772. height:31px;
  3773. display:flex;
  3774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:12px;
  3778. color:#333333;
  3779. }
  3780. #u62822 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 0px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u62822_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u62823_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:156px;
  3799. height:31px;
  3800. }
  3801. #u62823 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:915px;
  3805. top:248px;
  3806. width:156px;
  3807. height:31px;
  3808. display:flex;
  3809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. font-size:12px;
  3813. color:#333333;
  3814. }
  3815. #u62823 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 0px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u62823_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u62824_img {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:151px;
  3834. height:31px;
  3835. }
  3836. #u62824 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:1071px;
  3840. top:248px;
  3841. width:151px;
  3842. height:31px;
  3843. display:flex;
  3844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:12px;
  3848. color:#333333;
  3849. }
  3850. #u62824 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 0px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u62824_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. visibility:hidden;
  3862. }
  3863. #u62825 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:0px;
  3869. height:0px;
  3870. }
  3871. #u62826_div {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:140px;
  3877. height:30px;
  3878. background:inherit;
  3879. background-color:rgba(255, 255, 255, 1);
  3880. box-sizing:border-box;
  3881. border-width:1px;
  3882. border-style:solid;
  3883. border-color:rgba(201, 201, 201, 1);
  3884. border-radius:4px;
  3885. -moz-box-shadow:none;
  3886. -webkit-box-shadow:none;
  3887. box-shadow:none;
  3888. font-family:'Microsoft YaHei', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:14px;
  3892. color:#CCCCCC;
  3893. text-align:left;
  3894. }
  3895. #u62826 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:799px;
  3899. top:101px;
  3900. width:140px;
  3901. height:30px;
  3902. display:flex;
  3903. font-family:'Microsoft YaHei', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:14px;
  3907. color:#CCCCCC;
  3908. text-align:left;
  3909. }
  3910. #u62826 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 8px 2px 8px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u62826_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u62827_input {
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:127px;
  3928. height:25px;
  3929. padding:2px 2px 2px 2px;
  3930. font-family:'Microsoft YaHei', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:10px;
  3934. letter-spacing:normal;
  3935. color:#000000;
  3936. vertical-align:none;
  3937. text-align:left;
  3938. text-transform:none;
  3939. background-color:transparent;
  3940. border-color:transparent;
  3941. }
  3942. #u62827_input.disabled {
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:127px;
  3947. height:25px;
  3948. padding:2px 2px 2px 2px;
  3949. font-family:'Microsoft YaHei', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:10px;
  3953. letter-spacing:normal;
  3954. color:#000000;
  3955. vertical-align:none;
  3956. text-align:left;
  3957. text-transform:none;
  3958. background-color:transparent;
  3959. border-color:transparent;
  3960. }
  3961. #u62827_div {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:127px;
  3967. height:25px;
  3968. background:inherit;
  3969. background-color:rgba(255, 255, 255, 1);
  3970. border:none;
  3971. border-radius:0px;
  3972. -moz-box-shadow:none;
  3973. -webkit-box-shadow:none;
  3974. box-shadow:none;
  3975. font-family:'Microsoft YaHei', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:10px;
  3979. }
  3980. #u62827 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:807px;
  3984. top:102px;
  3985. width:127px;
  3986. height:25px;
  3987. display:flex;
  3988. font-family:'Microsoft YaHei', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:10px;
  3992. }
  3993. #u62827 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u62827_div.disabled {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:127px;
  4006. height:25px;
  4007. background:inherit;
  4008. background-color:rgba(240, 240, 240, 1);
  4009. border:none;
  4010. border-radius:0px;
  4011. -moz-box-shadow:none;
  4012. -webkit-box-shadow:none;
  4013. box-shadow:none;
  4014. font-family:'Microsoft YaHei', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:10px;
  4018. }
  4019. #u62827.disabled {
  4020. }
  4021. #u62828 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:0px;
  4027. height:0px;
  4028. }
  4029. #u62829_div {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:140px;
  4035. height:30px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 1);
  4038. box-sizing:border-box;
  4039. border-width:1px;
  4040. border-style:solid;
  4041. border-color:rgba(215, 215, 215, 1);
  4042. border-radius:4px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-size:11px;
  4047. }
  4048. #u62829 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:499px;
  4052. top:101px;
  4053. width:140px;
  4054. height:30px;
  4055. display:flex;
  4056. font-size:11px;
  4057. }
  4058. #u62829 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u62829_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u62830_input {
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:120px;
  4076. height:23px;
  4077. padding:2px 2px 2px 2px;
  4078. font-family:'ArialMT', 'Arial', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:11px;
  4082. letter-spacing:normal;
  4083. color:#AAAAAA;
  4084. vertical-align:none;
  4085. text-align:left;
  4086. text-transform:none;
  4087. background-color:transparent;
  4088. border-color:transparent;
  4089. }
  4090. #u62830_input.disabled {
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:120px;
  4095. height:23px;
  4096. padding:2px 2px 2px 2px;
  4097. font-family:'ArialMT', 'Arial', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:11px;
  4101. letter-spacing:normal;
  4102. color:#AAAAAA;
  4103. vertical-align:none;
  4104. text-align:left;
  4105. text-transform:none;
  4106. background-color:transparent;
  4107. border-color:transparent;
  4108. }
  4109. #u62830_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:120px;
  4115. height:23px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 1);
  4118. border:none;
  4119. border-radius:0px;
  4120. -moz-box-shadow:none;
  4121. -webkit-box-shadow:none;
  4122. box-shadow:none;
  4123. font-size:11px;
  4124. color:#AAAAAA;
  4125. }
  4126. #u62830 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:506px;
  4130. top:103px;
  4131. width:120px;
  4132. height:23px;
  4133. display:flex;
  4134. font-size:11px;
  4135. color:#AAAAAA;
  4136. }
  4137. #u62830 .text {
  4138. position:absolute;
  4139. align-self:flex-start;
  4140. padding:2px 2px 2px 2px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u62830_div.disabled {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:120px;
  4150. height:23px;
  4151. background:inherit;
  4152. background-color:rgba(240, 240, 240, 1);
  4153. border:none;
  4154. border-radius:0px;
  4155. -moz-box-shadow:none;
  4156. -webkit-box-shadow:none;
  4157. box-shadow:none;
  4158. font-size:11px;
  4159. color:#AAAAAA;
  4160. }
  4161. #u62830.disabled {
  4162. }
  4163. .u62830_input_option {
  4164. font-size:11px;
  4165. }
  4166. #u62831 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:0px;
  4172. height:0px;
  4173. }
  4174. #u62832_div {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:140px;
  4180. height:30px;
  4181. background:inherit;
  4182. background-color:rgba(255, 255, 255, 1);
  4183. box-sizing:border-box;
  4184. border-width:1px;
  4185. border-style:solid;
  4186. border-color:rgba(215, 215, 215, 1);
  4187. border-radius:4px;
  4188. -moz-box-shadow:none;
  4189. -webkit-box-shadow:none;
  4190. box-shadow:none;
  4191. font-size:11px;
  4192. }
  4193. #u62832 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:649px;
  4197. top:101px;
  4198. width:140px;
  4199. height:30px;
  4200. display:flex;
  4201. font-size:11px;
  4202. }
  4203. #u62832 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u62832_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u62833_input {
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:120px;
  4221. height:23px;
  4222. padding:2px 2px 2px 2px;
  4223. font-family:'ArialMT', 'Arial', sans-serif;
  4224. font-weight:400;
  4225. font-style:normal;
  4226. font-size:11px;
  4227. letter-spacing:normal;
  4228. color:#AAAAAA;
  4229. vertical-align:none;
  4230. text-align:left;
  4231. text-transform:none;
  4232. background-color:transparent;
  4233. border-color:transparent;
  4234. }
  4235. #u62833_input.disabled {
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:120px;
  4240. height:23px;
  4241. padding:2px 2px 2px 2px;
  4242. font-family:'ArialMT', 'Arial', sans-serif;
  4243. font-weight:400;
  4244. font-style:normal;
  4245. font-size:11px;
  4246. letter-spacing:normal;
  4247. color:#AAAAAA;
  4248. vertical-align:none;
  4249. text-align:left;
  4250. text-transform:none;
  4251. background-color:transparent;
  4252. border-color:transparent;
  4253. }
  4254. #u62833_div {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:120px;
  4260. height:23px;
  4261. background:inherit;
  4262. background-color:rgba(255, 255, 255, 1);
  4263. border:none;
  4264. border-radius:0px;
  4265. -moz-box-shadow:none;
  4266. -webkit-box-shadow:none;
  4267. box-shadow:none;
  4268. font-size:11px;
  4269. color:#AAAAAA;
  4270. }
  4271. #u62833 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:656px;
  4275. top:103px;
  4276. width:120px;
  4277. height:23px;
  4278. display:flex;
  4279. font-size:11px;
  4280. color:#AAAAAA;
  4281. }
  4282. #u62833 .text {
  4283. position:absolute;
  4284. align-self:flex-start;
  4285. padding:2px 2px 2px 2px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u62833_div.disabled {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:120px;
  4295. height:23px;
  4296. background:inherit;
  4297. background-color:rgba(240, 240, 240, 1);
  4298. border:none;
  4299. border-radius:0px;
  4300. -moz-box-shadow:none;
  4301. -webkit-box-shadow:none;
  4302. box-shadow:none;
  4303. font-size:11px;
  4304. color:#AAAAAA;
  4305. }
  4306. #u62833.disabled {
  4307. }
  4308. .u62833_input_option {
  4309. font-size:11px;
  4310. }
  4311. #u62834 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:0px;
  4317. height:0px;
  4318. }
  4319. #u62835_div {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:140px;
  4325. height:30px;
  4326. background:inherit;
  4327. background-color:rgba(255, 255, 255, 1);
  4328. box-sizing:border-box;
  4329. border-width:1px;
  4330. border-style:solid;
  4331. border-color:rgba(201, 201, 201, 1);
  4332. border-radius:4px;
  4333. -moz-box-shadow:none;
  4334. -webkit-box-shadow:none;
  4335. box-shadow:none;
  4336. font-family:'Microsoft YaHei', sans-serif;
  4337. font-weight:400;
  4338. font-style:normal;
  4339. font-size:14px;
  4340. color:#CCCCCC;
  4341. text-align:left;
  4342. }
  4343. #u62835 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:949px;
  4347. top:101px;
  4348. width:140px;
  4349. height:30px;
  4350. display:flex;
  4351. font-family:'Microsoft YaHei', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:14px;
  4355. color:#CCCCCC;
  4356. text-align:left;
  4357. }
  4358. #u62835 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 8px 2px 8px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u62835_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. visibility:hidden;
  4370. }
  4371. #u62836_input {
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:127px;
  4376. height:25px;
  4377. padding:2px 2px 2px 2px;
  4378. font-family:'Microsoft YaHei', sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:10px;
  4382. letter-spacing:normal;
  4383. color:#000000;
  4384. vertical-align:none;
  4385. text-align:left;
  4386. text-transform:none;
  4387. background-color:transparent;
  4388. border-color:transparent;
  4389. }
  4390. #u62836_input.disabled {
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:127px;
  4395. height:25px;
  4396. padding:2px 2px 2px 2px;
  4397. font-family:'Microsoft YaHei', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:10px;
  4401. letter-spacing:normal;
  4402. color:#000000;
  4403. vertical-align:none;
  4404. text-align:left;
  4405. text-transform:none;
  4406. background-color:transparent;
  4407. border-color:transparent;
  4408. }
  4409. #u62836_div {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:127px;
  4415. height:25px;
  4416. background:inherit;
  4417. background-color:rgba(255, 255, 255, 1);
  4418. border:none;
  4419. border-radius:0px;
  4420. -moz-box-shadow:none;
  4421. -webkit-box-shadow:none;
  4422. box-shadow:none;
  4423. font-family:'Microsoft YaHei', sans-serif;
  4424. font-weight:400;
  4425. font-style:normal;
  4426. font-size:10px;
  4427. }
  4428. #u62836 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:957px;
  4432. top:102px;
  4433. width:127px;
  4434. height:25px;
  4435. display:flex;
  4436. font-family:'Microsoft YaHei', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:10px;
  4440. }
  4441. #u62836 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 2px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u62836_div.disabled {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:127px;
  4454. height:25px;
  4455. background:inherit;
  4456. background-color:rgba(240, 240, 240, 1);
  4457. border:none;
  4458. border-radius:0px;
  4459. -moz-box-shadow:none;
  4460. -webkit-box-shadow:none;
  4461. box-shadow:none;
  4462. font-family:'Microsoft YaHei', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:10px;
  4466. }
  4467. #u62836.disabled {
  4468. }
  4469. #u62837_div {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:59px;
  4475. height:30px;
  4476. background:inherit;
  4477. background-color:rgba(41, 143, 255, 1);
  4478. border:none;
  4479. border-radius:4px;
  4480. -moz-box-shadow:none;
  4481. -webkit-box-shadow:none;
  4482. box-shadow:none;
  4483. font-family:'Microsoft YaHei', sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:14px;
  4487. color:#FFFFFF;
  4488. }
  4489. #u62837 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:499px;
  4493. top:141px;
  4494. width:59px;
  4495. height:30px;
  4496. display:flex;
  4497. font-family:'Microsoft YaHei', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:14px;
  4501. color:#FFFFFF;
  4502. }
  4503. #u62837 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:5px 15px 5px 15px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u62837_text {
  4511. border-width:0px;
  4512. white-space:nowrap;
  4513. text-transform:none;
  4514. }
  4515. #u62838_div {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:55px;
  4521. height:30px;
  4522. background:inherit;
  4523. background-color:rgba(255, 255, 255, 1);
  4524. box-sizing:border-box;
  4525. border-width:1px;
  4526. border-style:solid;
  4527. border-color:rgba(170, 170, 170, 1);
  4528. border-radius:4px;
  4529. -moz-box-shadow:none;
  4530. -webkit-box-shadow:none;
  4531. box-shadow:none;
  4532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:12px;
  4536. color:#555555;
  4537. }
  4538. #u62838 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:568px;
  4542. top:141px;
  4543. width:55px;
  4544. height:30px;
  4545. display:flex;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:12px;
  4550. color:#555555;
  4551. }
  4552. #u62838 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:5px 15px 5px 15px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u62838_text {
  4560. border-width:0px;
  4561. white-space:nowrap;
  4562. text-transform:none;
  4563. }
  4564. #u62839 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:0px;
  4570. height:0px;
  4571. }
  4572. #u62840_div {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:140px;
  4578. height:30px;
  4579. background:inherit;
  4580. background-color:rgba(255, 255, 255, 1);
  4581. box-sizing:border-box;
  4582. border-width:1px;
  4583. border-style:solid;
  4584. border-color:rgba(201, 201, 201, 1);
  4585. border-radius:4px;
  4586. -moz-box-shadow:none;
  4587. -webkit-box-shadow:none;
  4588. box-shadow:none;
  4589. font-family:'Microsoft YaHei', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:14px;
  4593. color:#CCCCCC;
  4594. text-align:left;
  4595. }
  4596. #u62840 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1099px;
  4600. top:101px;
  4601. width:140px;
  4602. height:30px;
  4603. display:flex;
  4604. font-family:'Microsoft YaHei', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:14px;
  4608. color:#CCCCCC;
  4609. text-align:left;
  4610. }
  4611. #u62840 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 8px 2px 8px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u62840_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u62841_input {
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:127px;
  4629. height:25px;
  4630. padding:2px 2px 2px 2px;
  4631. font-family:'Microsoft YaHei', sans-serif;
  4632. font-weight:400;
  4633. font-style:normal;
  4634. font-size:10px;
  4635. letter-spacing:normal;
  4636. color:#000000;
  4637. vertical-align:none;
  4638. text-align:left;
  4639. text-transform:none;
  4640. background-color:transparent;
  4641. border-color:transparent;
  4642. }
  4643. #u62841_input.disabled {
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:127px;
  4648. height:25px;
  4649. padding:2px 2px 2px 2px;
  4650. font-family:'Microsoft YaHei', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:10px;
  4654. letter-spacing:normal;
  4655. color:#000000;
  4656. vertical-align:none;
  4657. text-align:left;
  4658. text-transform:none;
  4659. background-color:transparent;
  4660. border-color:transparent;
  4661. }
  4662. #u62841_div {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:127px;
  4668. height:25px;
  4669. background:inherit;
  4670. background-color:rgba(255, 255, 255, 1);
  4671. border:none;
  4672. border-radius:0px;
  4673. -moz-box-shadow:none;
  4674. -webkit-box-shadow:none;
  4675. box-shadow:none;
  4676. font-family:'Microsoft YaHei', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:10px;
  4680. }
  4681. #u62841 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:1107px;
  4685. top:102px;
  4686. width:127px;
  4687. height:25px;
  4688. display:flex;
  4689. font-family:'Microsoft YaHei', sans-serif;
  4690. font-weight:400;
  4691. font-style:normal;
  4692. font-size:10px;
  4693. }
  4694. #u62841 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 2px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u62841_div.disabled {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:127px;
  4707. height:25px;
  4708. background:inherit;
  4709. background-color:rgba(240, 240, 240, 1);
  4710. border:none;
  4711. border-radius:0px;
  4712. -moz-box-shadow:none;
  4713. -webkit-box-shadow:none;
  4714. box-shadow:none;
  4715. font-family:'Microsoft YaHei', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:10px;
  4719. }
  4720. #u62841.disabled {
  4721. }
  4722. #u62842 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:0px;
  4728. height:0px;
  4729. }
  4730. #u62843_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:140px;
  4736. height:30px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 1);
  4739. box-sizing:border-box;
  4740. border-width:1px;
  4741. border-style:solid;
  4742. border-color:rgba(215, 215, 215, 1);
  4743. border-radius:4px;
  4744. -moz-box-shadow:none;
  4745. -webkit-box-shadow:none;
  4746. box-shadow:none;
  4747. font-size:11px;
  4748. }
  4749. #u62843 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:1399px;
  4753. top:101px;
  4754. width:140px;
  4755. height:30px;
  4756. display:flex;
  4757. font-size:11px;
  4758. }
  4759. #u62843 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:2px 2px 2px 2px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u62843_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u62844_input {
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:120px;
  4777. height:23px;
  4778. padding:2px 2px 2px 2px;
  4779. font-family:'ArialMT', 'Arial', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:11px;
  4783. letter-spacing:normal;
  4784. color:#AAAAAA;
  4785. vertical-align:none;
  4786. text-align:left;
  4787. text-transform:none;
  4788. background-color:transparent;
  4789. border-color:transparent;
  4790. }
  4791. #u62844_input.disabled {
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:120px;
  4796. height:23px;
  4797. padding:2px 2px 2px 2px;
  4798. font-family:'ArialMT', 'Arial', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:11px;
  4802. letter-spacing:normal;
  4803. color:#AAAAAA;
  4804. vertical-align:none;
  4805. text-align:left;
  4806. text-transform:none;
  4807. background-color:transparent;
  4808. border-color:transparent;
  4809. }
  4810. #u62844_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:120px;
  4816. height:23px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 1);
  4819. border:none;
  4820. border-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-size:11px;
  4825. color:#AAAAAA;
  4826. }
  4827. #u62844 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:1406px;
  4831. top:103px;
  4832. width:120px;
  4833. height:23px;
  4834. display:flex;
  4835. font-size:11px;
  4836. color:#AAAAAA;
  4837. }
  4838. #u62844 .text {
  4839. position:absolute;
  4840. align-self:flex-start;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u62844_div.disabled {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:120px;
  4851. height:23px;
  4852. background:inherit;
  4853. background-color:rgba(240, 240, 240, 1);
  4854. border:none;
  4855. border-radius:0px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. font-size:11px;
  4860. color:#AAAAAA;
  4861. }
  4862. #u62844.disabled {
  4863. }
  4864. .u62844_input_option {
  4865. font-size:11px;
  4866. }
  4867. #u62845 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:0px;
  4873. height:0px;
  4874. }
  4875. #u62846_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:140px;
  4881. height:30px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 1);
  4884. box-sizing:border-box;
  4885. border-width:1px;
  4886. border-style:solid;
  4887. border-color:rgba(201, 201, 201, 1);
  4888. border-radius:4px;
  4889. -moz-box-shadow:none;
  4890. -webkit-box-shadow:none;
  4891. box-shadow:none;
  4892. font-family:'Microsoft YaHei', sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:14px;
  4896. color:#CCCCCC;
  4897. text-align:left;
  4898. }
  4899. #u62846 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:1249px;
  4903. top:101px;
  4904. width:140px;
  4905. height:30px;
  4906. display:flex;
  4907. font-family:'Microsoft YaHei', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:14px;
  4911. color:#CCCCCC;
  4912. text-align:left;
  4913. }
  4914. #u62846 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 8px 2px 8px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u62846_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u62847_input {
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:127px;
  4932. height:25px;
  4933. padding:2px 2px 2px 2px;
  4934. font-family:'Microsoft YaHei', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. font-size:10px;
  4938. letter-spacing:normal;
  4939. color:#000000;
  4940. vertical-align:none;
  4941. text-align:left;
  4942. text-transform:none;
  4943. background-color:transparent;
  4944. border-color:transparent;
  4945. }
  4946. #u62847_input.disabled {
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:127px;
  4951. height:25px;
  4952. padding:2px 2px 2px 2px;
  4953. font-family:'Microsoft YaHei', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:10px;
  4957. letter-spacing:normal;
  4958. color:#000000;
  4959. vertical-align:none;
  4960. text-align:left;
  4961. text-transform:none;
  4962. background-color:transparent;
  4963. border-color:transparent;
  4964. }
  4965. #u62847_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:127px;
  4971. height:25px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 1);
  4974. border:none;
  4975. border-radius:0px;
  4976. -moz-box-shadow:none;
  4977. -webkit-box-shadow:none;
  4978. box-shadow:none;
  4979. font-family:'Microsoft YaHei', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:10px;
  4983. }
  4984. #u62847 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:1257px;
  4988. top:102px;
  4989. width:127px;
  4990. height:25px;
  4991. display:flex;
  4992. font-family:'Microsoft YaHei', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:10px;
  4996. }
  4997. #u62847 .text {
  4998. position:absolute;
  4999. align-self:center;
  5000. padding:2px 2px 2px 2px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u62847_div.disabled {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:0px;
  5008. top:0px;
  5009. width:127px;
  5010. height:25px;
  5011. background:inherit;
  5012. background-color:rgba(240, 240, 240, 1);
  5013. border:none;
  5014. border-radius:0px;
  5015. -moz-box-shadow:none;
  5016. -webkit-box-shadow:none;
  5017. box-shadow:none;
  5018. font-family:'Microsoft YaHei', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:10px;
  5022. }
  5023. #u62847.disabled {
  5024. }
  5025. #u62848_div {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:55px;
  5031. height:30px;
  5032. background:inherit;
  5033. background-color:rgba(255, 255, 255, 1);
  5034. box-sizing:border-box;
  5035. border-width:1px;
  5036. border-style:solid;
  5037. border-color:rgba(170, 170, 170, 1);
  5038. border-radius:4px;
  5039. -moz-box-shadow:none;
  5040. -webkit-box-shadow:none;
  5041. box-shadow:none;
  5042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:12px;
  5046. color:#555555;
  5047. }
  5048. #u62848 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:349px;
  5052. top:191px;
  5053. width:55px;
  5054. height:30px;
  5055. display:flex;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:12px;
  5060. color:#555555;
  5061. }
  5062. #u62848 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:5px 15px 5px 15px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u62848_text {
  5070. border-width:0px;
  5071. white-space:nowrap;
  5072. text-transform:none;
  5073. }
  5074. #u62849 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:0px;
  5080. height:0px;
  5081. }
  5082. #u62850_div {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:140px;
  5088. height:30px;
  5089. background:inherit;
  5090. background-color:rgba(255, 255, 255, 1);
  5091. box-sizing:border-box;
  5092. border-width:1px;
  5093. border-style:solid;
  5094. border-color:rgba(201, 201, 201, 1);
  5095. border-radius:4px;
  5096. -moz-box-shadow:none;
  5097. -webkit-box-shadow:none;
  5098. box-shadow:none;
  5099. font-family:'Microsoft YaHei', sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:14px;
  5103. color:#CCCCCC;
  5104. text-align:left;
  5105. }
  5106. #u62850 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:349px;
  5110. top:141px;
  5111. width:140px;
  5112. height:30px;
  5113. display:flex;
  5114. font-family:'Microsoft YaHei', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:14px;
  5118. color:#CCCCCC;
  5119. text-align:left;
  5120. }
  5121. #u62850 .text {
  5122. position:absolute;
  5123. align-self:center;
  5124. padding:2px 8px 2px 8px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u62850_text {
  5129. border-width:0px;
  5130. word-wrap:break-word;
  5131. text-transform:none;
  5132. visibility:hidden;
  5133. }
  5134. #u62851_input {
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:127px;
  5139. height:25px;
  5140. padding:2px 2px 2px 2px;
  5141. font-family:'Microsoft YaHei', sans-serif;
  5142. font-weight:400;
  5143. font-style:normal;
  5144. font-size:10px;
  5145. letter-spacing:normal;
  5146. color:#000000;
  5147. vertical-align:none;
  5148. text-align:left;
  5149. text-transform:none;
  5150. background-color:transparent;
  5151. border-color:transparent;
  5152. }
  5153. #u62851_input.disabled {
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:127px;
  5158. height:25px;
  5159. padding:2px 2px 2px 2px;
  5160. font-family:'Microsoft YaHei', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:10px;
  5164. letter-spacing:normal;
  5165. color:#000000;
  5166. vertical-align:none;
  5167. text-align:left;
  5168. text-transform:none;
  5169. background-color:transparent;
  5170. border-color:transparent;
  5171. }
  5172. #u62851_div {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:127px;
  5178. height:25px;
  5179. background:inherit;
  5180. background-color:rgba(255, 255, 255, 1);
  5181. border:none;
  5182. border-radius:0px;
  5183. -moz-box-shadow:none;
  5184. -webkit-box-shadow:none;
  5185. box-shadow:none;
  5186. font-family:'Microsoft YaHei', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. font-size:10px;
  5190. }
  5191. #u62851 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:357px;
  5195. top:142px;
  5196. width:127px;
  5197. height:25px;
  5198. display:flex;
  5199. font-family:'Microsoft YaHei', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:10px;
  5203. }
  5204. #u62851 .text {
  5205. position:absolute;
  5206. align-self:center;
  5207. padding:2px 2px 2px 2px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u62851_div.disabled {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:127px;
  5217. height:25px;
  5218. background:inherit;
  5219. background-color:rgba(240, 240, 240, 1);
  5220. border:none;
  5221. border-radius:0px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. font-family:'Microsoft YaHei', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:10px;
  5229. }
  5230. #u62851.disabled {
  5231. }
  5232. #u62852 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:0px;
  5238. height:0px;
  5239. }
  5240. #u62853_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:140px;
  5246. height:30px;
  5247. background:inherit;
  5248. background-color:rgba(255, 255, 255, 1);
  5249. box-sizing:border-box;
  5250. border-width:1px;
  5251. border-style:solid;
  5252. border-color:rgba(215, 215, 215, 1);
  5253. border-radius:4px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. font-size:11px;
  5258. }
  5259. #u62853 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:349px;
  5263. top:101px;
  5264. width:140px;
  5265. height:30px;
  5266. display:flex;
  5267. font-size:11px;
  5268. }
  5269. #u62853 .text {
  5270. position:absolute;
  5271. align-self:center;
  5272. padding:2px 2px 2px 2px;
  5273. box-sizing:border-box;
  5274. width:100%;
  5275. }
  5276. #u62853_text {
  5277. border-width:0px;
  5278. word-wrap:break-word;
  5279. text-transform:none;
  5280. visibility:hidden;
  5281. }
  5282. #u62854_input {
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:120px;
  5287. height:23px;
  5288. padding:2px 2px 2px 2px;
  5289. font-family:'ArialMT', 'Arial', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:11px;
  5293. letter-spacing:normal;
  5294. color:#AAAAAA;
  5295. vertical-align:none;
  5296. text-align:left;
  5297. text-transform:none;
  5298. background-color:transparent;
  5299. border-color:transparent;
  5300. }
  5301. #u62854_input.disabled {
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:120px;
  5306. height:23px;
  5307. padding:2px 2px 2px 2px;
  5308. font-family:'ArialMT', 'Arial', sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. font-size:11px;
  5312. letter-spacing:normal;
  5313. color:#AAAAAA;
  5314. vertical-align:none;
  5315. text-align:left;
  5316. text-transform:none;
  5317. background-color:transparent;
  5318. border-color:transparent;
  5319. }
  5320. #u62854_div {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:120px;
  5326. height:23px;
  5327. background:inherit;
  5328. background-color:rgba(255, 255, 255, 1);
  5329. border:none;
  5330. border-radius:0px;
  5331. -moz-box-shadow:none;
  5332. -webkit-box-shadow:none;
  5333. box-shadow:none;
  5334. font-size:11px;
  5335. color:#AAAAAA;
  5336. }
  5337. #u62854 {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:356px;
  5341. top:103px;
  5342. width:120px;
  5343. height:23px;
  5344. display:flex;
  5345. font-size:11px;
  5346. color:#AAAAAA;
  5347. }
  5348. #u62854 .text {
  5349. position:absolute;
  5350. align-self:flex-start;
  5351. padding:2px 2px 2px 2px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u62854_div.disabled {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:120px;
  5361. height:23px;
  5362. background:inherit;
  5363. background-color:rgba(240, 240, 240, 1);
  5364. border:none;
  5365. border-radius:0px;
  5366. -moz-box-shadow:none;
  5367. -webkit-box-shadow:none;
  5368. box-shadow:none;
  5369. font-size:11px;
  5370. color:#AAAAAA;
  5371. }
  5372. #u62854.disabled {
  5373. }
  5374. .u62854_input_option {
  5375. font-size:11px;
  5376. }
  5377. #u62855 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:0px;
  5381. top:0px;
  5382. width:0px;
  5383. height:0px;
  5384. }
  5385. #u62856_div {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:200px;
  5391. height:1180px;
  5392. background:inherit;
  5393. background-color:rgba(255, 255, 255, 1);
  5394. border:none;
  5395. border-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. }
  5400. #u62856 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:120px;
  5404. top:50px;
  5405. width:200px;
  5406. height:1180px;
  5407. display:flex;
  5408. }
  5409. #u62856 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u62856_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u62857_div {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:200px;
  5428. height:60px;
  5429. background:inherit;
  5430. background-color:rgba(224, 231, 247, 1);
  5431. border:none;
  5432. border-radius:0px;
  5433. -moz-box-shadow:none;
  5434. -webkit-box-shadow:none;
  5435. box-shadow:none;
  5436. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5437. font-weight:500;
  5438. font-style:normal;
  5439. font-size:18px;
  5440. }
  5441. #u62857 {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:120px;
  5445. top:50px;
  5446. width:200px;
  5447. height:60px;
  5448. display:flex;
  5449. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5450. font-weight:500;
  5451. font-style:normal;
  5452. font-size:18px;
  5453. }
  5454. #u62857 .text {
  5455. position:absolute;
  5456. align-self:center;
  5457. padding:0px 0px 0px 20px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u62857_text {
  5462. border-width:0px;
  5463. word-wrap:break-word;
  5464. text-transform:none;
  5465. }
  5466. #u62858_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. #u62858 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:147px;
  5489. top:257px;
  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. #u62858 .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. #u62858_text {
  5506. border-width:0px;
  5507. white-space:nowrap;
  5508. text-transform:none;
  5509. }
  5510. #u62859_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. #u62859 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:147px;
  5533. top:131px;
  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. #u62859 .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. #u62859_text {
  5550. border-width:0px;
  5551. white-space:nowrap;
  5552. text-transform:none;
  5553. }
  5554. #u62860_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. #u62860 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:147px;
  5577. top:215px;
  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. #u62860 .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. #u62860_text {
  5594. border-width:0px;
  5595. white-space:nowrap;
  5596. text-transform:none;
  5597. }
  5598. #u62861_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. #u62861 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:147px;
  5621. top:299px;
  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. #u62861 .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. #u62861_text {
  5638. border-width:0px;
  5639. white-space:nowrap;
  5640. text-transform:none;
  5641. }
  5642. #u62862_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. #u62862 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:147px;
  5665. top:173px;
  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. #u62862 .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. #u62862_text {
  5682. border-width:0px;
  5683. white-space:nowrap;
  5684. text-transform:none;
  5685. }