styles.css 105 KB

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