styles.css 104 KB

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