styles.css 93 KB

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