styles.css 101 KB

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