styles.css 104 KB

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