styles.css 101 KB

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