styles.css 100 KB

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