styles.css 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597
  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. #u23456_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. #u23456 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u23456 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u23456_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u23457_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. #u23457 {
  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. #u23457 .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. #u23457_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u23458_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. #u23458 {
  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. #u23458 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u23458_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u23459 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u23460_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u23460 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u23460 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u23460_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u23461_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. #u23461 {
  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. #u23461 .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. #u23461_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u23462_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. #u23462 {
  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. #u23462 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u23462_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u23463 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u23464_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u23464 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u23464 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u23464_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u23465_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u23465 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u23465 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u23465_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u23466 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u23467_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u23467 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u23467 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u23467_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u23468_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u23468 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u23468 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u23468_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u23469 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u23470_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u23470 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u23470 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u23470_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u23471_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u23471 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u23471 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u23471_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u23472 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u23473_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u23473 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u23473 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u23473_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u23474_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u23474 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u23474 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u23474_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u23475 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u23476_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u23476 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u23476 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u23476_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u23477_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u23477 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u23477 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u23477_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u23478 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u23479_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u23479 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u23479 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u23479_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u23480_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u23480 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u23480 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u23480_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u23481 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u23482_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u23482 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u23482 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u23482_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u23483_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u23483 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u23483 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u23483_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u23484 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u23485_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u23485 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u23485 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u23485_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u23486_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u23486 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u23486 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u23486_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u23487 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u23488_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u23488 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u23488 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u23488_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u23489_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u23489 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u23489 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u23489_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u23490 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u23491_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u23491 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u23491 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u23491_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u23492_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u23492 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u23492 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u23492_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u23493 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u23494_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u23494 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u23494 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u23494_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u23495_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u23495 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u23495 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u23495_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u23496 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u23497_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u23497_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u23497_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u23497 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u23497 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u23497_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u23497.disabled {
  1276. }
  1277. .u23497_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u23498_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u23498 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u23498 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u23498_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u23499_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u23499 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u23499 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u23499_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u23500_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u23500 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u23500 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u23500_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u23501 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u23502_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u23502 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u23502 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u23502_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u23503_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u23503 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u23503 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u23503_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u23504_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u23504 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u23504 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u23504_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u23505_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u23505 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u23505 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u23505_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u23506_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u23506 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u23506 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u23506_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u23507 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u23508_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u23508 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u23508 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u23508_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u23509_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u23509 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u23509 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u23509_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u23510_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. color:#FFFFFF;
  1661. text-align:left;
  1662. }
  1663. #u23510 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:330px;
  1667. top:50px;
  1668. width:1260px;
  1669. height:1180px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:12px;
  1675. color:#FFFFFF;
  1676. text-align:left;
  1677. }
  1678. #u23510 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 50px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u23510_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u23511_div {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:73px;
  1697. height:50px;
  1698. background:inherit;
  1699. background-color:rgba(255, 255, 255, 0);
  1700. border:none;
  1701. border-left:0px;
  1702. border-top:0px;
  1703. border-right:0px;
  1704. border-radius:0px;
  1705. border-bottom-right-radius:0px;
  1706. border-bottom-left-radius:0px;
  1707. -moz-box-shadow:none;
  1708. -webkit-box-shadow:none;
  1709. box-shadow:none;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u23511 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:349px;
  1719. top:50px;
  1720. width:73px;
  1721. height:50px;
  1722. display:flex;
  1723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1724. font-weight:400;
  1725. font-style:normal;
  1726. font-size:18px;
  1727. }
  1728. #u23511 .text {
  1729. position:absolute;
  1730. align-self:center;
  1731. padding:0px 0px 0px 0px;
  1732. box-sizing:border-box;
  1733. width:100%;
  1734. }
  1735. #u23511_text {
  1736. border-width:0px;
  1737. white-space:nowrap;
  1738. text-transform:none;
  1739. }
  1740. #u23512 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:349px;
  1744. top:231px;
  1745. width:1222px;
  1746. height:322px;
  1747. }
  1748. #u23513_img {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:108px;
  1754. height:38px;
  1755. }
  1756. #u23513 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:108px;
  1762. height:38px;
  1763. display:flex;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:12px;
  1768. color:#FFFFFF;
  1769. }
  1770. #u23513 .text {
  1771. position:absolute;
  1772. align-self:center;
  1773. padding:2px 2px 2px 0px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u23513_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u23514_img {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:153px;
  1788. height:38px;
  1789. }
  1790. #u23514 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:108px;
  1794. top:0px;
  1795. width:153px;
  1796. height:38px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:12px;
  1802. color:#FFFFFF;
  1803. }
  1804. #u23514 .text {
  1805. position:absolute;
  1806. align-self:center;
  1807. padding:2px 2px 2px 0px;
  1808. box-sizing:border-box;
  1809. width:100%;
  1810. }
  1811. #u23514_text {
  1812. border-width:0px;
  1813. word-wrap:break-word;
  1814. text-transform:none;
  1815. }
  1816. #u23515_img {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:323px;
  1822. height:38px;
  1823. }
  1824. #u23515 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:261px;
  1828. top:0px;
  1829. width:323px;
  1830. height:38px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:12px;
  1836. color:#FFFFFF;
  1837. }
  1838. #u23515 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:2px 2px 2px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u23515_text {
  1846. border-width:0px;
  1847. word-wrap:break-word;
  1848. text-transform:none;
  1849. }
  1850. #u23516_img {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:126px;
  1856. height:38px;
  1857. }
  1858. #u23516 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:584px;
  1862. top:0px;
  1863. width:126px;
  1864. height:38px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u23516 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u23516_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. }
  1884. #u23517_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:126px;
  1890. height:38px;
  1891. }
  1892. #u23517 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:710px;
  1896. top:0px;
  1897. width:126px;
  1898. height:38px;
  1899. display:flex;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:12px;
  1904. color:#FFFFFF;
  1905. }
  1906. #u23517 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u23517_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. }
  1918. #u23518_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:153px;
  1924. height:38px;
  1925. }
  1926. #u23518 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:836px;
  1930. top:0px;
  1931. width:153px;
  1932. height:38px;
  1933. display:flex;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:12px;
  1938. color:#FFFFFF;
  1939. }
  1940. #u23518 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u23518_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u23519_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:153px;
  1958. height:38px;
  1959. }
  1960. #u23519 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:989px;
  1964. top:0px;
  1965. width:153px;
  1966. height:38px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. color:#FFFFFF;
  1973. }
  1974. #u23519 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u23519_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u23520_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:80px;
  1992. height:38px;
  1993. }
  1994. #u23520 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:1142px;
  1998. top:0px;
  1999. width:80px;
  2000. height:38px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:12px;
  2006. color:#FFFFFF;
  2007. }
  2008. #u23520 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:2px 2px 2px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u23520_text {
  2016. border-width:0px;
  2017. word-wrap:break-word;
  2018. text-transform:none;
  2019. }
  2020. #u23521_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:108px;
  2026. height:38px;
  2027. }
  2028. #u23521 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:38px;
  2033. width:108px;
  2034. height:38px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#333333;
  2041. }
  2042. #u23521 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u23521_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u23522_img {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:153px;
  2061. height:38px;
  2062. }
  2063. #u23522 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:108px;
  2067. top:38px;
  2068. width:153px;
  2069. height:38px;
  2070. display:flex;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. color:#333333;
  2076. }
  2077. #u23522 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u23522_text {
  2085. border-width:0px;
  2086. word-wrap:break-word;
  2087. text-transform:none;
  2088. visibility:hidden;
  2089. }
  2090. #u23523_img {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:323px;
  2096. height:38px;
  2097. }
  2098. #u23523 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:261px;
  2102. top:38px;
  2103. width:323px;
  2104. height:38px;
  2105. display:flex;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#333333;
  2111. }
  2112. #u23523 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u23523_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. }
  2124. #u23524_img {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:126px;
  2130. height:38px;
  2131. }
  2132. #u23524 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:584px;
  2136. top:38px;
  2137. width:126px;
  2138. height:38px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:12px;
  2144. color:#333333;
  2145. }
  2146. #u23524 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 2px 2px 0px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u23524_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. visibility:hidden;
  2158. }
  2159. #u23525_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:126px;
  2165. height:38px;
  2166. }
  2167. #u23525 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:710px;
  2171. top:38px;
  2172. width:126px;
  2173. height:38px;
  2174. display:flex;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:12px;
  2179. color:#333333;
  2180. }
  2181. #u23525 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 0px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u23525_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. visibility:hidden;
  2193. }
  2194. #u23526_img {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:153px;
  2200. height:38px;
  2201. }
  2202. #u23526 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:836px;
  2206. top:38px;
  2207. width:153px;
  2208. height:38px;
  2209. display:flex;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:12px;
  2214. color:#333333;
  2215. }
  2216. #u23526 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 0px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u23526_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. visibility:hidden;
  2228. }
  2229. #u23527_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:153px;
  2235. height:38px;
  2236. }
  2237. #u23527 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:989px;
  2241. top:38px;
  2242. width:153px;
  2243. height:38px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:12px;
  2249. color:#333333;
  2250. }
  2251. #u23527 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u23527_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u23528_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:80px;
  2270. height:38px;
  2271. }
  2272. #u23528 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:1142px;
  2276. top:38px;
  2277. width:80px;
  2278. height:38px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:12px;
  2284. color:#0089FE;
  2285. }
  2286. #u23528 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u23528_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. }
  2298. #u23529_img {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:108px;
  2304. height:38px;
  2305. }
  2306. #u23529 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:76px;
  2311. width:108px;
  2312. height:38px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. color:#333333;
  2319. }
  2320. #u23529 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u23529_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u23530_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:153px;
  2339. height:38px;
  2340. }
  2341. #u23530 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:108px;
  2345. top:76px;
  2346. width:153px;
  2347. height:38px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. color:#333333;
  2354. }
  2355. #u23530 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u23530_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u23531_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:323px;
  2374. height:38px;
  2375. }
  2376. #u23531 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:261px;
  2380. top:76px;
  2381. width:323px;
  2382. height:38px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. color:#333333;
  2389. }
  2390. #u23531 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u23531_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. visibility:hidden;
  2402. }
  2403. #u23532_img {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:126px;
  2409. height:38px;
  2410. }
  2411. #u23532 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:584px;
  2415. top:76px;
  2416. width:126px;
  2417. height:38px;
  2418. display:flex;
  2419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2420. font-weight:400;
  2421. font-style:normal;
  2422. font-size:12px;
  2423. color:#333333;
  2424. }
  2425. #u23532 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:2px 2px 2px 0px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u23532_text {
  2433. border-width:0px;
  2434. word-wrap:break-word;
  2435. text-transform:none;
  2436. visibility:hidden;
  2437. }
  2438. #u23533_img {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:126px;
  2444. height:38px;
  2445. }
  2446. #u23533 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:710px;
  2450. top:76px;
  2451. width:126px;
  2452. height:38px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:12px;
  2458. color:#333333;
  2459. }
  2460. #u23533 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 2px 2px 0px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u23533_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. visibility:hidden;
  2472. }
  2473. #u23534_img {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:153px;
  2479. height:38px;
  2480. }
  2481. #u23534 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:836px;
  2485. top:76px;
  2486. width:153px;
  2487. height:38px;
  2488. display:flex;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:12px;
  2493. color:#333333;
  2494. }
  2495. #u23534 .text {
  2496. position:absolute;
  2497. align-self:center;
  2498. padding:2px 2px 2px 0px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u23534_text {
  2503. border-width:0px;
  2504. word-wrap:break-word;
  2505. text-transform:none;
  2506. visibility:hidden;
  2507. }
  2508. #u23535_img {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:153px;
  2514. height:38px;
  2515. }
  2516. #u23535 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:989px;
  2520. top:76px;
  2521. width:153px;
  2522. height:38px;
  2523. display:flex;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:12px;
  2528. color:#333333;
  2529. }
  2530. #u23535 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:2px 2px 2px 0px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u23535_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u23536_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:80px;
  2549. height:38px;
  2550. }
  2551. #u23536 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:1142px;
  2555. top:76px;
  2556. width:80px;
  2557. height:38px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. color:#0089FE;
  2564. }
  2565. #u23536 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 0px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u23536_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. }
  2577. #u23537_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:108px;
  2583. height:38px;
  2584. }
  2585. #u23537 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:114px;
  2590. width:108px;
  2591. height:38px;
  2592. display:flex;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:12px;
  2597. color:#333333;
  2598. }
  2599. #u23537 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 0px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u23537_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u23538_img {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:153px;
  2618. height:38px;
  2619. }
  2620. #u23538 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:108px;
  2624. top:114px;
  2625. width:153px;
  2626. height:38px;
  2627. display:flex;
  2628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:12px;
  2632. color:#333333;
  2633. }
  2634. #u23538 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 0px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u23538_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u23539_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:323px;
  2653. height:38px;
  2654. }
  2655. #u23539 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:261px;
  2659. top:114px;
  2660. width:323px;
  2661. height:38px;
  2662. display:flex;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#333333;
  2668. }
  2669. #u23539 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u23539_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u23540_img {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:126px;
  2688. height:38px;
  2689. }
  2690. #u23540 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:584px;
  2694. top:114px;
  2695. width:126px;
  2696. height:38px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:12px;
  2702. color:#333333;
  2703. }
  2704. #u23540 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 0px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u23540_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u23541_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:126px;
  2723. height:38px;
  2724. }
  2725. #u23541 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:710px;
  2729. top:114px;
  2730. width:126px;
  2731. height:38px;
  2732. display:flex;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:12px;
  2737. color:#333333;
  2738. }
  2739. #u23541 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u23541_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u23542_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:153px;
  2758. height:38px;
  2759. }
  2760. #u23542 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:836px;
  2764. top:114px;
  2765. width:153px;
  2766. height:38px;
  2767. display:flex;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. font-size:12px;
  2772. color:#333333;
  2773. }
  2774. #u23542 .text {
  2775. position:absolute;
  2776. align-self:center;
  2777. padding:2px 2px 2px 0px;
  2778. box-sizing:border-box;
  2779. width:100%;
  2780. }
  2781. #u23542_text {
  2782. border-width:0px;
  2783. word-wrap:break-word;
  2784. text-transform:none;
  2785. visibility:hidden;
  2786. }
  2787. #u23543_img {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:153px;
  2793. height:38px;
  2794. }
  2795. #u23543 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:989px;
  2799. top:114px;
  2800. width:153px;
  2801. height:38px;
  2802. display:flex;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:12px;
  2807. color:#333333;
  2808. }
  2809. #u23543 .text {
  2810. position:absolute;
  2811. align-self:center;
  2812. padding:2px 2px 2px 0px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u23543_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. visibility:hidden;
  2821. }
  2822. #u23544_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:80px;
  2828. height:38px;
  2829. }
  2830. #u23544 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:1142px;
  2834. top:114px;
  2835. width:80px;
  2836. height:38px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#0089FE;
  2843. }
  2844. #u23544 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u23544_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. visibility:hidden;
  2856. }
  2857. #u23545_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:108px;
  2863. height:38px;
  2864. }
  2865. #u23545 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:152px;
  2870. width:108px;
  2871. height:38px;
  2872. display:flex;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. color:#333333;
  2878. }
  2879. #u23545 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u23545_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u23546_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:153px;
  2898. height:38px;
  2899. }
  2900. #u23546 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:108px;
  2904. top:152px;
  2905. width:153px;
  2906. height:38px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. color:#333333;
  2913. }
  2914. #u23546 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:2px 2px 2px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u23546_text {
  2922. border-width:0px;
  2923. word-wrap:break-word;
  2924. text-transform:none;
  2925. visibility:hidden;
  2926. }
  2927. #u23547_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:323px;
  2933. height:38px;
  2934. }
  2935. #u23547 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:261px;
  2939. top:152px;
  2940. width:323px;
  2941. height:38px;
  2942. display:flex;
  2943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:12px;
  2947. color:#333333;
  2948. }
  2949. #u23547 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 0px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u23547_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. visibility:hidden;
  2961. }
  2962. #u23548_img {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:126px;
  2968. height:38px;
  2969. }
  2970. #u23548 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:584px;
  2974. top:152px;
  2975. width:126px;
  2976. height:38px;
  2977. display:flex;
  2978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2979. font-weight:400;
  2980. font-style:normal;
  2981. font-size:12px;
  2982. color:#333333;
  2983. }
  2984. #u23548 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 0px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u23548_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u23549_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:126px;
  3003. height:38px;
  3004. }
  3005. #u23549 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:710px;
  3009. top:152px;
  3010. width:126px;
  3011. height:38px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. color:#333333;
  3018. }
  3019. #u23549 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 0px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u23549_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. visibility:hidden;
  3031. }
  3032. #u23550_img {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:153px;
  3038. height:38px;
  3039. }
  3040. #u23550 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:836px;
  3044. top:152px;
  3045. width:153px;
  3046. height:38px;
  3047. display:flex;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:12px;
  3052. color:#333333;
  3053. }
  3054. #u23550 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 2px 2px 0px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u23550_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u23551_img {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:153px;
  3073. height:38px;
  3074. }
  3075. #u23551 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:989px;
  3079. top:152px;
  3080. width:153px;
  3081. height:38px;
  3082. display:flex;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:12px;
  3087. color:#333333;
  3088. }
  3089. #u23551 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 0px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u23551_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. visibility:hidden;
  3101. }
  3102. #u23552_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:80px;
  3108. height:38px;
  3109. }
  3110. #u23552 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:1142px;
  3114. top:152px;
  3115. width:80px;
  3116. height:38px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:12px;
  3122. color:#AAAAAA;
  3123. }
  3124. #u23552 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 0px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u23552_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u23553_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:108px;
  3143. height:35px;
  3144. }
  3145. #u23553 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:190px;
  3150. width:108px;
  3151. height:35px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:12px;
  3157. color:#333333;
  3158. }
  3159. #u23553 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u23553_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u23554_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:153px;
  3178. height:35px;
  3179. }
  3180. #u23554 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:108px;
  3184. top:190px;
  3185. width:153px;
  3186. height:35px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#333333;
  3193. }
  3194. #u23554 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u23554_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. visibility:hidden;
  3206. }
  3207. #u23555_img {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:0px;
  3211. top:0px;
  3212. width:323px;
  3213. height:35px;
  3214. }
  3215. #u23555 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:261px;
  3219. top:190px;
  3220. width:323px;
  3221. height:35px;
  3222. display:flex;
  3223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:12px;
  3227. color:#333333;
  3228. }
  3229. #u23555 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u23555_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. visibility:hidden;
  3241. }
  3242. #u23556_img {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:126px;
  3248. height:35px;
  3249. }
  3250. #u23556 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:584px;
  3254. top:190px;
  3255. width:126px;
  3256. height:35px;
  3257. display:flex;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:12px;
  3262. color:#333333;
  3263. }
  3264. #u23556 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 0px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u23556_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. visibility:hidden;
  3276. }
  3277. #u23557_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:126px;
  3283. height:35px;
  3284. }
  3285. #u23557 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:710px;
  3289. top:190px;
  3290. width:126px;
  3291. height:35px;
  3292. display:flex;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. color:#333333;
  3298. }
  3299. #u23557 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 0px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u23557_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u23558_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:153px;
  3318. height:35px;
  3319. }
  3320. #u23558 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:836px;
  3324. top:190px;
  3325. width:153px;
  3326. height:35px;
  3327. display:flex;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:12px;
  3332. color:#333333;
  3333. }
  3334. #u23558 .text {
  3335. position:absolute;
  3336. align-self:center;
  3337. padding:2px 2px 2px 0px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u23558_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. visibility:hidden;
  3346. }
  3347. #u23559_img {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:153px;
  3353. height:35px;
  3354. }
  3355. #u23559 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:989px;
  3359. top:190px;
  3360. width:153px;
  3361. height:35px;
  3362. display:flex;
  3363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. font-size:12px;
  3367. color:#333333;
  3368. }
  3369. #u23559 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u23559_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u23560_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:80px;
  3388. height:35px;
  3389. }
  3390. #u23560 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:1142px;
  3394. top:190px;
  3395. width:80px;
  3396. height:35px;
  3397. display:flex;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. color:#AAAAAA;
  3403. }
  3404. #u23560 .text {
  3405. position:absolute;
  3406. align-self:center;
  3407. padding:2px 2px 2px 0px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u23560_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. visibility:hidden;
  3416. }
  3417. #u23561_img {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:108px;
  3423. height:35px;
  3424. }
  3425. #u23561 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:225px;
  3430. width:108px;
  3431. height:35px;
  3432. display:flex;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:12px;
  3437. color:#333333;
  3438. }
  3439. #u23561 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 0px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u23561_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u23562_img {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:153px;
  3458. height:35px;
  3459. }
  3460. #u23562 {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:108px;
  3464. top:225px;
  3465. width:153px;
  3466. height:35px;
  3467. display:flex;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:12px;
  3472. color:#333333;
  3473. }
  3474. #u23562 .text {
  3475. position:absolute;
  3476. align-self:center;
  3477. padding:2px 2px 2px 0px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u23562_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. visibility:hidden;
  3486. }
  3487. #u23563_img {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:323px;
  3493. height:35px;
  3494. }
  3495. #u23563 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:261px;
  3499. top:225px;
  3500. width:323px;
  3501. height:35px;
  3502. display:flex;
  3503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. font-size:12px;
  3507. color:#333333;
  3508. }
  3509. #u23563 .text {
  3510. position:absolute;
  3511. align-self:center;
  3512. padding:2px 2px 2px 0px;
  3513. box-sizing:border-box;
  3514. width:100%;
  3515. }
  3516. #u23563_text {
  3517. border-width:0px;
  3518. word-wrap:break-word;
  3519. text-transform:none;
  3520. visibility:hidden;
  3521. }
  3522. #u23564_img {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:126px;
  3528. height:35px;
  3529. }
  3530. #u23564 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:584px;
  3534. top:225px;
  3535. width:126px;
  3536. height:35px;
  3537. display:flex;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:12px;
  3542. color:#333333;
  3543. }
  3544. #u23564 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u23564_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. visibility:hidden;
  3556. }
  3557. #u23565_img {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:126px;
  3563. height:35px;
  3564. }
  3565. #u23565 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:710px;
  3569. top:225px;
  3570. width:126px;
  3571. height:35px;
  3572. display:flex;
  3573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:12px;
  3577. color:#333333;
  3578. }
  3579. #u23565 .text {
  3580. position:absolute;
  3581. align-self:center;
  3582. padding:2px 2px 2px 0px;
  3583. box-sizing:border-box;
  3584. width:100%;
  3585. }
  3586. #u23565_text {
  3587. border-width:0px;
  3588. word-wrap:break-word;
  3589. text-transform:none;
  3590. visibility:hidden;
  3591. }
  3592. #u23566_img {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:153px;
  3598. height:35px;
  3599. }
  3600. #u23566 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:836px;
  3604. top:225px;
  3605. width:153px;
  3606. height:35px;
  3607. display:flex;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:12px;
  3612. color:#333333;
  3613. }
  3614. #u23566 .text {
  3615. position:absolute;
  3616. align-self:center;
  3617. padding:2px 2px 2px 0px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u23566_text {
  3622. border-width:0px;
  3623. word-wrap:break-word;
  3624. text-transform:none;
  3625. visibility:hidden;
  3626. }
  3627. #u23567_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:153px;
  3633. height:35px;
  3634. }
  3635. #u23567 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:989px;
  3639. top:225px;
  3640. width:153px;
  3641. height:35px;
  3642. display:flex;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. color:#333333;
  3648. }
  3649. #u23567 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u23567_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u23568_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:80px;
  3668. height:35px;
  3669. }
  3670. #u23568 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:1142px;
  3674. top:225px;
  3675. width:80px;
  3676. height:35px;
  3677. display:flex;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. color:#333333;
  3683. }
  3684. #u23568 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u23568_text {
  3692. border-width:0px;
  3693. word-wrap:break-word;
  3694. text-transform:none;
  3695. visibility:hidden;
  3696. }
  3697. #u23569_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:108px;
  3703. height:32px;
  3704. }
  3705. #u23569 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:260px;
  3710. width:108px;
  3711. height:32px;
  3712. display:flex;
  3713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:12px;
  3717. color:#333333;
  3718. }
  3719. #u23569 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u23569_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u23570_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:153px;
  3738. height:32px;
  3739. }
  3740. #u23570 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:108px;
  3744. top:260px;
  3745. width:153px;
  3746. height:32px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:12px;
  3752. color:#333333;
  3753. }
  3754. #u23570 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 2px 2px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u23570_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u23571_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:323px;
  3773. height:32px;
  3774. }
  3775. #u23571 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:261px;
  3779. top:260px;
  3780. width:323px;
  3781. height:32px;
  3782. display:flex;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:12px;
  3787. color:#333333;
  3788. }
  3789. #u23571 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u23571_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u23572_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:126px;
  3808. height:32px;
  3809. }
  3810. #u23572 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:584px;
  3814. top:260px;
  3815. width:126px;
  3816. height:32px;
  3817. display:flex;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:12px;
  3822. color:#333333;
  3823. }
  3824. #u23572 .text {
  3825. position:absolute;
  3826. align-self:center;
  3827. padding:2px 2px 2px 0px;
  3828. box-sizing:border-box;
  3829. width:100%;
  3830. }
  3831. #u23572_text {
  3832. border-width:0px;
  3833. word-wrap:break-word;
  3834. text-transform:none;
  3835. visibility:hidden;
  3836. }
  3837. #u23573_img {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:126px;
  3843. height:32px;
  3844. }
  3845. #u23573 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:710px;
  3849. top:260px;
  3850. width:126px;
  3851. height:32px;
  3852. display:flex;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:12px;
  3857. color:#333333;
  3858. }
  3859. #u23573 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 0px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u23573_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u23574_img {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:153px;
  3878. height:32px;
  3879. }
  3880. #u23574 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:836px;
  3884. top:260px;
  3885. width:153px;
  3886. height:32px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:12px;
  3892. color:#333333;
  3893. }
  3894. #u23574 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u23574_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u23575_img {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:153px;
  3913. height:32px;
  3914. }
  3915. #u23575 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:989px;
  3919. top:260px;
  3920. width:153px;
  3921. height:32px;
  3922. display:flex;
  3923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. color:#333333;
  3928. }
  3929. #u23575 .text {
  3930. position:absolute;
  3931. align-self:center;
  3932. padding:2px 2px 2px 0px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u23575_text {
  3937. border-width:0px;
  3938. word-wrap:break-word;
  3939. text-transform:none;
  3940. visibility:hidden;
  3941. }
  3942. #u23576_img {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:80px;
  3948. height:32px;
  3949. }
  3950. #u23576 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:1142px;
  3954. top:260px;
  3955. width:80px;
  3956. height:32px;
  3957. display:flex;
  3958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3959. font-weight:400;
  3960. font-style:normal;
  3961. font-size:12px;
  3962. color:#333333;
  3963. }
  3964. #u23576 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 0px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u23576_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. visibility:hidden;
  3976. }
  3977. #u23577_img {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:108px;
  3983. height:30px;
  3984. }
  3985. #u23577 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:292px;
  3990. width:108px;
  3991. height:30px;
  3992. display:flex;
  3993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:12px;
  3997. color:#333333;
  3998. }
  3999. #u23577 .text {
  4000. position:absolute;
  4001. align-self:center;
  4002. padding:2px 2px 2px 0px;
  4003. box-sizing:border-box;
  4004. width:100%;
  4005. }
  4006. #u23577_text {
  4007. border-width:0px;
  4008. word-wrap:break-word;
  4009. text-transform:none;
  4010. visibility:hidden;
  4011. }
  4012. #u23578_img {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:153px;
  4018. height:30px;
  4019. }
  4020. #u23578 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:108px;
  4024. top:292px;
  4025. width:153px;
  4026. height:30px;
  4027. display:flex;
  4028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4029. font-weight:400;
  4030. font-style:normal;
  4031. font-size:12px;
  4032. color:#333333;
  4033. }
  4034. #u23578 .text {
  4035. position:absolute;
  4036. align-self:center;
  4037. padding:2px 2px 2px 0px;
  4038. box-sizing:border-box;
  4039. width:100%;
  4040. }
  4041. #u23578_text {
  4042. border-width:0px;
  4043. word-wrap:break-word;
  4044. text-transform:none;
  4045. visibility:hidden;
  4046. }
  4047. #u23579_img {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:323px;
  4053. height:30px;
  4054. }
  4055. #u23579 {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:261px;
  4059. top:292px;
  4060. width:323px;
  4061. height:30px;
  4062. display:flex;
  4063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4064. font-weight:400;
  4065. font-style:normal;
  4066. font-size:12px;
  4067. color:#333333;
  4068. }
  4069. #u23579 .text {
  4070. position:absolute;
  4071. align-self:center;
  4072. padding:2px 2px 2px 0px;
  4073. box-sizing:border-box;
  4074. width:100%;
  4075. }
  4076. #u23579_text {
  4077. border-width:0px;
  4078. word-wrap:break-word;
  4079. text-transform:none;
  4080. visibility:hidden;
  4081. }
  4082. #u23580_img {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:126px;
  4088. height:30px;
  4089. }
  4090. #u23580 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:584px;
  4094. top:292px;
  4095. width:126px;
  4096. height:30px;
  4097. display:flex;
  4098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4099. font-weight:400;
  4100. font-style:normal;
  4101. font-size:12px;
  4102. color:#333333;
  4103. }
  4104. #u23580 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:2px 2px 2px 0px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u23580_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u23581_img {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:126px;
  4123. height:30px;
  4124. }
  4125. #u23581 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:710px;
  4129. top:292px;
  4130. width:126px;
  4131. height:30px;
  4132. display:flex;
  4133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:12px;
  4137. color:#333333;
  4138. }
  4139. #u23581 .text {
  4140. position:absolute;
  4141. align-self:center;
  4142. padding:2px 2px 2px 0px;
  4143. box-sizing:border-box;
  4144. width:100%;
  4145. }
  4146. #u23581_text {
  4147. border-width:0px;
  4148. word-wrap:break-word;
  4149. text-transform:none;
  4150. visibility:hidden;
  4151. }
  4152. #u23582_img {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:153px;
  4158. height:30px;
  4159. }
  4160. #u23582 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:836px;
  4164. top:292px;
  4165. width:153px;
  4166. height:30px;
  4167. display:flex;
  4168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4169. font-weight:400;
  4170. font-style:normal;
  4171. font-size:12px;
  4172. color:#333333;
  4173. }
  4174. #u23582 .text {
  4175. position:absolute;
  4176. align-self:center;
  4177. padding:2px 2px 2px 0px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u23582_text {
  4182. border-width:0px;
  4183. word-wrap:break-word;
  4184. text-transform:none;
  4185. visibility:hidden;
  4186. }
  4187. #u23583_img {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:153px;
  4193. height:30px;
  4194. }
  4195. #u23583 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:989px;
  4199. top:292px;
  4200. width:153px;
  4201. height:30px;
  4202. display:flex;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:12px;
  4207. color:#333333;
  4208. }
  4209. #u23583 .text {
  4210. position:absolute;
  4211. align-self:center;
  4212. padding:2px 2px 2px 0px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u23583_text {
  4217. border-width:0px;
  4218. word-wrap:break-word;
  4219. text-transform:none;
  4220. visibility:hidden;
  4221. }
  4222. #u23584_img {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:80px;
  4228. height:30px;
  4229. }
  4230. #u23584 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:1142px;
  4234. top:292px;
  4235. width:80px;
  4236. height:30px;
  4237. display:flex;
  4238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:12px;
  4242. color:#333333;
  4243. }
  4244. #u23584 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 0px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u23584_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. visibility:hidden;
  4256. }
  4257. #u23585 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:0px;
  4263. height:0px;
  4264. }
  4265. #u23586_div {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:59px;
  4271. height:30px;
  4272. background:inherit;
  4273. background-color:rgba(24, 144, 255, 1);
  4274. box-sizing:border-box;
  4275. border-width:1px;
  4276. border-style:solid;
  4277. border-color:rgba(0, 153, 255, 1);
  4278. border-radius:4px;
  4279. -moz-box-shadow:none;
  4280. -webkit-box-shadow:none;
  4281. box-shadow:none;
  4282. font-family:'Microsoft YaHei', sans-serif;
  4283. font-weight:400;
  4284. font-style:normal;
  4285. font-size:14px;
  4286. color:#FFFFFF;
  4287. }
  4288. #u23586 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:647px;
  4292. top:142px;
  4293. width:59px;
  4294. height:30px;
  4295. display:flex;
  4296. font-family:'Microsoft YaHei', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:14px;
  4300. color:#FFFFFF;
  4301. }
  4302. #u23586 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:5px 15px 5px 15px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u23586_text {
  4310. border-width:0px;
  4311. white-space:nowrap;
  4312. text-transform:none;
  4313. }
  4314. #u23587_div {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:55px;
  4320. height:30px;
  4321. background:inherit;
  4322. background-color:rgba(255, 255, 255, 1);
  4323. box-sizing:border-box;
  4324. border-width:1px;
  4325. border-style:solid;
  4326. border-color:rgba(170, 170, 170, 1);
  4327. border-radius:4px;
  4328. -moz-box-shadow:none;
  4329. -webkit-box-shadow:none;
  4330. box-shadow:none;
  4331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:12px;
  4335. color:#555555;
  4336. }
  4337. #u23587 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:716px;
  4341. top:142px;
  4342. width:55px;
  4343. height:30px;
  4344. display:flex;
  4345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. font-size:12px;
  4349. color:#555555;
  4350. }
  4351. #u23587 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:5px 15px 5px 15px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u23587_text {
  4359. border-width:0px;
  4360. white-space:nowrap;
  4361. text-transform:none;
  4362. }
  4363. #u23588 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:0px;
  4369. height:0px;
  4370. }
  4371. #u23589_div {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:140px;
  4377. height:30px;
  4378. background:inherit;
  4379. background-color:rgba(255, 255, 255, 1);
  4380. box-sizing:border-box;
  4381. border-width:1px;
  4382. border-style:solid;
  4383. border-color:rgba(201, 201, 201, 1);
  4384. border-radius:4px;
  4385. -moz-box-shadow:none;
  4386. -webkit-box-shadow:none;
  4387. box-shadow:none;
  4388. font-family:'Microsoft YaHei', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:14px;
  4392. color:#CCCCCC;
  4393. text-align:left;
  4394. }
  4395. #u23589 {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:497px;
  4399. top:141px;
  4400. width:140px;
  4401. height:30px;
  4402. display:flex;
  4403. font-family:'Microsoft YaHei', sans-serif;
  4404. font-weight:400;
  4405. font-style:normal;
  4406. font-size:14px;
  4407. color:#CCCCCC;
  4408. text-align:left;
  4409. }
  4410. #u23589 .text {
  4411. position:absolute;
  4412. align-self:center;
  4413. padding:2px 8px 2px 8px;
  4414. box-sizing:border-box;
  4415. width:100%;
  4416. }
  4417. #u23589_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u23590_input {
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:127px;
  4428. height:25px;
  4429. padding:2px 2px 2px 2px;
  4430. font-family:'Microsoft YaHei', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:10px;
  4434. letter-spacing:normal;
  4435. color:#000000;
  4436. vertical-align:none;
  4437. text-align:left;
  4438. text-transform:none;
  4439. background-color:transparent;
  4440. border-color:transparent;
  4441. }
  4442. #u23590_input.disabled {
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:127px;
  4447. height:25px;
  4448. padding:2px 2px 2px 2px;
  4449. font-family:'Microsoft YaHei', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:10px;
  4453. letter-spacing:normal;
  4454. color:#000000;
  4455. vertical-align:none;
  4456. text-align:left;
  4457. text-transform:none;
  4458. background-color:transparent;
  4459. border-color:transparent;
  4460. }
  4461. #u23590_div {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:127px;
  4467. height:25px;
  4468. background:inherit;
  4469. background-color:rgba(255, 255, 255, 1);
  4470. border:none;
  4471. border-radius:0px;
  4472. -moz-box-shadow:none;
  4473. -webkit-box-shadow:none;
  4474. box-shadow:none;
  4475. font-family:'Microsoft YaHei', sans-serif;
  4476. font-weight:400;
  4477. font-style:normal;
  4478. font-size:10px;
  4479. }
  4480. #u23590 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:505px;
  4484. top:142px;
  4485. width:127px;
  4486. height:25px;
  4487. display:flex;
  4488. font-family:'Microsoft YaHei', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:10px;
  4492. }
  4493. #u23590 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 2px 2px 2px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u23590_div.disabled {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:127px;
  4506. height:25px;
  4507. background:inherit;
  4508. background-color:rgba(240, 240, 240, 1);
  4509. border:none;
  4510. border-radius:0px;
  4511. -moz-box-shadow:none;
  4512. -webkit-box-shadow:none;
  4513. box-shadow:none;
  4514. font-family:'Microsoft YaHei', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:10px;
  4518. }
  4519. #u23590.disabled {
  4520. }
  4521. #u23591_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:60px;
  4527. height:30px;
  4528. background:inherit;
  4529. background-color:rgba(24, 144, 255, 1);
  4530. box-sizing:border-box;
  4531. border-width:1px;
  4532. border-style:solid;
  4533. border-color:rgba(0, 153, 255, 1);
  4534. border-radius:4px;
  4535. -moz-box-shadow:none;
  4536. -webkit-box-shadow:none;
  4537. box-shadow:none;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:14px;
  4542. color:#FFFFFF;
  4543. }
  4544. #u23591 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:349px;
  4548. top:191px;
  4549. width:60px;
  4550. height:30px;
  4551. display:flex;
  4552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. font-size:14px;
  4556. color:#FFFFFF;
  4557. }
  4558. #u23591 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:5px 0px 5px 0px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u23591_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. }
  4570. #u23592 {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:0px;
  4576. height:0px;
  4577. }
  4578. #u23593_div {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:140px;
  4584. height:30px;
  4585. background:inherit;
  4586. background-color:rgba(255, 255, 255, 1);
  4587. box-sizing:border-box;
  4588. border-width:1px;
  4589. border-style:solid;
  4590. border-color:rgba(215, 215, 215, 1);
  4591. border-radius:4px;
  4592. -moz-box-shadow:none;
  4593. -webkit-box-shadow:none;
  4594. box-shadow:none;
  4595. font-size:11px;
  4596. }
  4597. #u23593 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:347px;
  4601. top:142px;
  4602. width:140px;
  4603. height:30px;
  4604. display:flex;
  4605. font-size:11px;
  4606. }
  4607. #u23593 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u23593_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u23594_input {
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:126px;
  4625. height:23px;
  4626. padding:2px 2px 2px 2px;
  4627. font-family:'ArialMT', 'Arial', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:11px;
  4631. letter-spacing:normal;
  4632. color:#AAAAAA;
  4633. vertical-align:none;
  4634. text-align:left;
  4635. text-transform:none;
  4636. background-color:transparent;
  4637. border-color:transparent;
  4638. }
  4639. #u23594_input.disabled {
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:126px;
  4644. height:23px;
  4645. padding:2px 2px 2px 2px;
  4646. font-family:'ArialMT', 'Arial', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:11px;
  4650. letter-spacing:normal;
  4651. color:#AAAAAA;
  4652. vertical-align:none;
  4653. text-align:left;
  4654. text-transform:none;
  4655. background-color:transparent;
  4656. border-color:transparent;
  4657. }
  4658. #u23594_div {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:126px;
  4664. height:23px;
  4665. background:inherit;
  4666. background-color:rgba(255, 255, 255, 1);
  4667. border:none;
  4668. border-radius:0px;
  4669. -moz-box-shadow:none;
  4670. -webkit-box-shadow:none;
  4671. box-shadow:none;
  4672. font-size:11px;
  4673. color:#AAAAAA;
  4674. }
  4675. #u23594 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:354px;
  4679. top:144px;
  4680. width:126px;
  4681. height:23px;
  4682. display:flex;
  4683. font-size:11px;
  4684. color:#AAAAAA;
  4685. }
  4686. #u23594 .text {
  4687. position:absolute;
  4688. align-self:flex-start;
  4689. padding:2px 2px 2px 2px;
  4690. box-sizing:border-box;
  4691. width:100%;
  4692. }
  4693. #u23594_div.disabled {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:126px;
  4699. height:23px;
  4700. background:inherit;
  4701. background-color:rgba(240, 240, 240, 1);
  4702. border:none;
  4703. border-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. font-size:11px;
  4708. color:#AAAAAA;
  4709. }
  4710. #u23594.disabled {
  4711. }
  4712. .u23594_input_option {
  4713. font-size:11px;
  4714. }
  4715. #u23596_div {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:200px;
  4721. height:1180px;
  4722. background:inherit;
  4723. background-color:rgba(255, 255, 255, 1);
  4724. border:none;
  4725. border-radius:0px;
  4726. -moz-box-shadow:none;
  4727. -webkit-box-shadow:none;
  4728. box-shadow:none;
  4729. }
  4730. #u23596 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:120px;
  4734. top:50px;
  4735. width:200px;
  4736. height:1180px;
  4737. display:flex;
  4738. }
  4739. #u23596 .text {
  4740. position:absolute;
  4741. align-self:center;
  4742. padding:2px 2px 2px 2px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u23596_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. visibility:hidden;
  4751. }
  4752. #u23597_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:200px;
  4758. height:60px;
  4759. background:inherit;
  4760. background-color:rgba(224, 231, 247, 1);
  4761. border:none;
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4767. font-weight:500;
  4768. font-style:normal;
  4769. font-size:18px;
  4770. }
  4771. #u23597 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:120px;
  4775. top:50px;
  4776. width:200px;
  4777. height:60px;
  4778. display:flex;
  4779. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4780. font-weight:500;
  4781. font-style:normal;
  4782. font-size:18px;
  4783. }
  4784. #u23597 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:0px 0px 0px 20px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u23597_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. }
  4796. #u23598_div {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:65px;
  4802. height:22px;
  4803. background:inherit;
  4804. background-color:rgba(255, 255, 255, 0);
  4805. border:none;
  4806. border-radius:0px;
  4807. -moz-box-shadow:none;
  4808. -webkit-box-shadow:none;
  4809. box-shadow:none;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:16px;
  4814. }
  4815. #u23598 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:147px;
  4819. top:170px;
  4820. width:65px;
  4821. height:22px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:16px;
  4827. }
  4828. #u23598 .text {
  4829. position:absolute;
  4830. align-self:flex-start;
  4831. padding:0px 0px 0px 0px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u23598_text {
  4836. border-width:0px;
  4837. white-space:nowrap;
  4838. text-transform:none;
  4839. }
  4840. #u23599_div {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:65px;
  4846. height:22px;
  4847. background:inherit;
  4848. background-color:rgba(255, 255, 255, 0);
  4849. border:none;
  4850. border-radius:0px;
  4851. -moz-box-shadow:none;
  4852. -webkit-box-shadow:none;
  4853. box-shadow:none;
  4854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:16px;
  4858. }
  4859. #u23599 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:147px;
  4863. top:212px;
  4864. width:65px;
  4865. height:22px;
  4866. display:flex;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:16px;
  4871. }
  4872. #u23599 .text {
  4873. position:absolute;
  4874. align-self:flex-start;
  4875. padding:0px 0px 0px 0px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u23599_text {
  4880. border-width:0px;
  4881. white-space:nowrap;
  4882. text-transform:none;
  4883. }
  4884. #u23600_div {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:49px;
  4890. height:17px;
  4891. background:inherit;
  4892. background-color:rgba(255, 255, 255, 0);
  4893. border:none;
  4894. border-radius:0px;
  4895. -moz-box-shadow:none;
  4896. -webkit-box-shadow:none;
  4897. box-shadow:none;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:12px;
  4902. color:#AAAAAA;
  4903. }
  4904. #u23600 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:147px;
  4908. top:130px;
  4909. width:49px;
  4910. height:17px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#AAAAAA;
  4917. }
  4918. #u23600 .text {
  4919. position:absolute;
  4920. align-self:flex-start;
  4921. padding:0px 0px 0px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u23600_text {
  4926. border-width:0px;
  4927. white-space:nowrap;
  4928. text-transform:none;
  4929. }
  4930. #u23601_div {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:183px;
  4936. height:20px;
  4937. background:inherit;
  4938. background-color:rgba(255, 255, 255, 0);
  4939. border:none;
  4940. border-left:0px;
  4941. border-top:0px;
  4942. border-right:0px;
  4943. border-radius:0px;
  4944. border-bottom-right-radius:0px;
  4945. border-bottom-left-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:14px;
  4953. color:#7F7F7F;
  4954. }
  4955. #u23601 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:352px;
  4959. top:100px;
  4960. width:183px;
  4961. height:20px;
  4962. display:flex;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:14px;
  4967. color:#7F7F7F;
  4968. }
  4969. #u23601 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:0px 0px 0px 0px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u23601_text {
  4977. border-width:0px;
  4978. white-space:nowrap;
  4979. text-transform:none;
  4980. }
  4981. #u23603 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:0px;
  4987. height:0px;
  4988. }
  4989. #u23604_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:30px;
  4995. height:30px;
  4996. background:inherit;
  4997. background-color:rgba(255, 255, 255, 1);
  4998. box-sizing:border-box;
  4999. border-width:1px;
  5000. border-style:solid;
  5001. border-color:rgba(228, 228, 228, 1);
  5002. border-radius:4px;
  5003. -moz-box-shadow:none;
  5004. -webkit-box-shadow:none;
  5005. box-shadow:none;
  5006. font-family:'Microsoft YaHei', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:14px;
  5010. }
  5011. #u23604 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:996px;
  5015. top:1183px;
  5016. width:30px;
  5017. height:30px;
  5018. display:flex;
  5019. font-family:'Microsoft YaHei', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:14px;
  5023. }
  5024. #u23604 .text {
  5025. position:absolute;
  5026. align-self:center;
  5027. padding:2px 2px 2px 2px;
  5028. box-sizing:border-box;
  5029. width:100%;
  5030. }
  5031. #u23604_text {
  5032. border-width:0px;
  5033. word-wrap:break-word;
  5034. text-transform:none;
  5035. }
  5036. #u23605_div {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:49px;
  5042. height:30px;
  5043. background:inherit;
  5044. background-color:rgba(255, 255, 255, 0);
  5045. box-sizing:border-box;
  5046. border-width:1px;
  5047. border-style:solid;
  5048. border-color:rgba(188, 188, 188, 1);
  5049. border-radius:4px;
  5050. -moz-box-shadow:none;
  5051. -webkit-box-shadow:none;
  5052. box-shadow:none;
  5053. font-family:'Microsoft YaHei', sans-serif;
  5054. font-weight:400;
  5055. font-style:normal;
  5056. font-size:14px;
  5057. color:#1E1E1E;
  5058. }
  5059. #u23605 {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:1512px;
  5063. top:1183px;
  5064. width:49px;
  5065. height:30px;
  5066. display:flex;
  5067. font-family:'Microsoft YaHei', sans-serif;
  5068. font-weight:400;
  5069. font-style:normal;
  5070. font-size:14px;
  5071. color:#1E1E1E;
  5072. }
  5073. #u23605 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:5px 10px 5px 10px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u23605_text {
  5081. border-width:0px;
  5082. white-space:nowrap;
  5083. text-transform:none;
  5084. }
  5085. #u23606 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:0px;
  5091. height:0px;
  5092. }
  5093. #u23607_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:33px;
  5099. height:24px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 1);
  5102. border:none;
  5103. border-radius:0px;
  5104. -moz-box-shadow:none;
  5105. -webkit-box-shadow:none;
  5106. box-shadow:none;
  5107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:14px;
  5111. color:#BCBCBC;
  5112. text-align:left;
  5113. }
  5114. #u23607 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:1280px;
  5118. top:1186px;
  5119. width:33px;
  5120. height:24px;
  5121. display:flex;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:14px;
  5126. color:#BCBCBC;
  5127. text-align:left;
  5128. }
  5129. #u23607 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:2px 2px 2px 2px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u23607_text {
  5137. border-width:0px;
  5138. white-space:nowrap;
  5139. text-transform:none;
  5140. }
  5141. #u23608_div {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:40px;
  5147. height:30px;
  5148. background:inherit;
  5149. background-color:rgba(255, 255, 255, 1);
  5150. box-sizing:border-box;
  5151. border-width:1px;
  5152. border-style:solid;
  5153. border-color:rgba(228, 228, 228, 1);
  5154. border-radius:4px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-family:'Microsoft YaHei', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:14px;
  5162. }
  5163. #u23608 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:1315px;
  5167. top:1183px;
  5168. width:40px;
  5169. height:30px;
  5170. display:flex;
  5171. font-family:'Microsoft YaHei', sans-serif;
  5172. font-weight:400;
  5173. font-style:normal;
  5174. font-size:14px;
  5175. }
  5176. #u23608 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:2px 2px 2px 2px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u23608_text {
  5184. border-width:0px;
  5185. word-wrap:break-word;
  5186. text-transform:none;
  5187. visibility:hidden;
  5188. }
  5189. #u23609_div {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:19px;
  5195. height:24px;
  5196. background:inherit;
  5197. background-color:rgba(255, 255, 255, 1);
  5198. border:none;
  5199. border-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'Microsoft YaHei', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:14px;
  5207. color:#BCBCBC;
  5208. text-align:left;
  5209. }
  5210. #u23609 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:1357px;
  5214. top:1187px;
  5215. width:19px;
  5216. height:24px;
  5217. display:flex;
  5218. font-family:'Microsoft YaHei', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:14px;
  5222. color:#BCBCBC;
  5223. text-align:left;
  5224. }
  5225. #u23609 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:2px 2px 2px 2px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u23609_text {
  5233. border-width:0px;
  5234. white-space:nowrap;
  5235. text-transform:none;
  5236. }
  5237. #u23610_input {
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:34px;
  5242. height:25px;
  5243. padding:2px 2px 2px 2px;
  5244. font-family:'Microsoft YaHei', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:13px;
  5248. letter-spacing:normal;
  5249. color:#000000;
  5250. vertical-align:none;
  5251. text-align:left;
  5252. text-transform:none;
  5253. background-color:transparent;
  5254. border-color:transparent;
  5255. }
  5256. #u23610_input.disabled {
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:34px;
  5261. height:25px;
  5262. padding:2px 2px 2px 2px;
  5263. font-family:'Microsoft YaHei', sans-serif;
  5264. font-weight:400;
  5265. font-style:normal;
  5266. font-size:13px;
  5267. letter-spacing:normal;
  5268. color:#000000;
  5269. vertical-align:none;
  5270. text-align:left;
  5271. text-transform:none;
  5272. background-color:transparent;
  5273. border-color:transparent;
  5274. }
  5275. #u23610_div {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:34px;
  5281. height:25px;
  5282. background:inherit;
  5283. background-color:rgba(255, 255, 255, 1);
  5284. border:none;
  5285. border-radius:0px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-family:'Microsoft YaHei', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. }
  5293. #u23610 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1318px;
  5297. top:1185px;
  5298. width:34px;
  5299. height:25px;
  5300. display:flex;
  5301. font-family:'Microsoft YaHei', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. }
  5305. #u23610 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:2px 2px 2px 2px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u23610_div.disabled {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:34px;
  5318. height:25px;
  5319. background:inherit;
  5320. background-color:rgba(240, 240, 240, 1);
  5321. border:none;
  5322. border-radius:0px;
  5323. -moz-box-shadow:none;
  5324. -webkit-box-shadow:none;
  5325. box-shadow:none;
  5326. font-family:'Microsoft YaHei', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. }
  5330. #u23610.disabled {
  5331. }
  5332. #u23611_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:30px;
  5338. height:30px;
  5339. background:inherit;
  5340. background-color:rgba(41, 143, 255, 1);
  5341. border:none;
  5342. border-radius:4px;
  5343. -moz-box-shadow:none;
  5344. -webkit-box-shadow:none;
  5345. box-shadow:none;
  5346. font-family:'Microsoft YaHei', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:14px;
  5350. color:#FFFFFF;
  5351. }
  5352. #u23611 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:1030px;
  5356. top:1183px;
  5357. width:30px;
  5358. height:30px;
  5359. display:flex;
  5360. font-family:'Microsoft YaHei', sans-serif;
  5361. font-weight:400;
  5362. font-style:normal;
  5363. font-size:14px;
  5364. color:#FFFFFF;
  5365. }
  5366. #u23611 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u23611_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. }
  5378. #u23612_div {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:30px;
  5384. height:30px;
  5385. background:inherit;
  5386. background-color:rgba(255, 255, 255, 1);
  5387. box-sizing:border-box;
  5388. border-width:1px;
  5389. border-style:solid;
  5390. border-color:rgba(228, 228, 228, 1);
  5391. border-radius:4px;
  5392. -moz-box-shadow:none;
  5393. -webkit-box-shadow:none;
  5394. box-shadow:none;
  5395. font-family:'Microsoft YaHei', sans-serif;
  5396. font-weight:400;
  5397. font-style:normal;
  5398. font-size:14px;
  5399. }
  5400. #u23612 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:1064px;
  5404. top:1183px;
  5405. width:30px;
  5406. height:30px;
  5407. display:flex;
  5408. font-family:'Microsoft YaHei', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:14px;
  5412. }
  5413. #u23612 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 2px 2px 2px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u23612_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. }
  5425. #u23613_div {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:30px;
  5431. height:30px;
  5432. background:inherit;
  5433. background-color:rgba(255, 255, 255, 1);
  5434. box-sizing:border-box;
  5435. border-width:1px;
  5436. border-style:solid;
  5437. border-color:rgba(228, 228, 228, 1);
  5438. border-radius:4px;
  5439. -moz-box-shadow:none;
  5440. -webkit-box-shadow:none;
  5441. box-shadow:none;
  5442. font-family:'Microsoft YaHei', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:14px;
  5446. }
  5447. #u23613 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:1098px;
  5451. top:1183px;
  5452. width:30px;
  5453. height:30px;
  5454. display:flex;
  5455. font-family:'Microsoft YaHei', sans-serif;
  5456. font-weight:400;
  5457. font-style:normal;
  5458. font-size:14px;
  5459. }
  5460. #u23613 .text {
  5461. position:absolute;
  5462. align-self:center;
  5463. padding:2px 2px 2px 2px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u23613_text {
  5468. border-width:0px;
  5469. word-wrap:break-word;
  5470. text-transform:none;
  5471. }
  5472. #u23614_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:30px;
  5478. height:30px;
  5479. background:inherit;
  5480. background-color:rgba(255, 255, 255, 1);
  5481. border:none;
  5482. border-radius:4px;
  5483. -moz-box-shadow:none;
  5484. -webkit-box-shadow:none;
  5485. box-shadow:none;
  5486. font-family:'Microsoft YaHei', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:14px;
  5490. }
  5491. #u23614 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:1128px;
  5495. top:1183px;
  5496. width:30px;
  5497. height:30px;
  5498. display:flex;
  5499. font-family:'Microsoft YaHei', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:14px;
  5503. }
  5504. #u23614 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 2px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u23614_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. }
  5516. #u23615_div {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:30px;
  5522. height:30px;
  5523. background:inherit;
  5524. background-color:rgba(255, 255, 255, 1);
  5525. box-sizing:border-box;
  5526. border-width:1px;
  5527. border-style:solid;
  5528. border-color:rgba(228, 228, 228, 1);
  5529. border-radius:4px;
  5530. -moz-box-shadow:none;
  5531. -webkit-box-shadow:none;
  5532. box-shadow:none;
  5533. font-family:'Microsoft YaHei', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:14px;
  5537. }
  5538. #u23615 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:1162px;
  5542. top:1183px;
  5543. width:30px;
  5544. height:30px;
  5545. display:flex;
  5546. font-family:'Microsoft YaHei', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:14px;
  5550. }
  5551. #u23615 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u23615_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. }
  5563. #u23616_div {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:32px;
  5569. height:21px;
  5570. background:inherit;
  5571. background-color:rgba(255, 255, 255, 1);
  5572. border:none;
  5573. border-radius:15px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. font-family:'Microsoft YaHei', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:14px;
  5581. color:#1E1E1E;
  5582. }
  5583. #u23616 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:1236px;
  5587. top:1188px;
  5588. width:32px;
  5589. height:21px;
  5590. display:flex;
  5591. font-family:'Microsoft YaHei', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:14px;
  5595. color:#1E1E1E;
  5596. }
  5597. #u23616 .text {
  5598. position:absolute;
  5599. align-self:center;
  5600. padding:2px 2px 2px 2px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u23616_text {
  5605. border-width:0px;
  5606. white-space:nowrap;
  5607. text-transform:none;
  5608. }
  5609. #u23617 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:0px;
  5615. height:0px;
  5616. }
  5617. #u23618_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:31px;
  5623. height:30px;
  5624. background:inherit;
  5625. background-color:rgba(255, 255, 255, 1);
  5626. box-sizing:border-box;
  5627. border-width:1px;
  5628. border-style:solid;
  5629. border-color:rgba(228, 228, 228, 1);
  5630. border-radius:4px;
  5631. -moz-box-shadow:none;
  5632. -webkit-box-shadow:none;
  5633. box-shadow:none;
  5634. font-family:'Microsoft YaHei', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:12px;
  5638. }
  5639. #u23618 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:961px;
  5643. top:1183px;
  5644. width:31px;
  5645. height:30px;
  5646. display:flex;
  5647. font-family:'Microsoft YaHei', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:12px;
  5651. }
  5652. #u23618 .text {
  5653. position:absolute;
  5654. align-self:center;
  5655. padding:2px 2px 2px 2px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u23618_text {
  5660. border-width:0px;
  5661. word-wrap:break-word;
  5662. text-transform:none;
  5663. visibility:hidden;
  5664. }
  5665. #u23619_img {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:8px;
  5671. height:14px;
  5672. }
  5673. #u23619 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:973px;
  5677. top:1191px;
  5678. width:8px;
  5679. height:14px;
  5680. display:flex;
  5681. font-family:'Microsoft YaHei', sans-serif;
  5682. font-weight:400;
  5683. font-style:normal;
  5684. font-size:12px;
  5685. }
  5686. #u23619 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 2px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u23619_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u23620 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:0px;
  5705. height:0px;
  5706. }
  5707. #u23621_div {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:31px;
  5713. height:30px;
  5714. background:inherit;
  5715. background-color:rgba(255, 255, 255, 1);
  5716. box-sizing:border-box;
  5717. border-width:1px;
  5718. border-style:solid;
  5719. border-color:rgba(228, 228, 228, 1);
  5720. border-radius:4px;
  5721. -moz-box-shadow:none;
  5722. -webkit-box-shadow:none;
  5723. box-shadow:none;
  5724. font-family:'Microsoft YaHei', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. }
  5729. #u23621 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:1195px;
  5733. top:1183px;
  5734. width:31px;
  5735. height:30px;
  5736. display:flex;
  5737. font-family:'Microsoft YaHei', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. }
  5742. #u23621 .text {
  5743. position:absolute;
  5744. align-self:center;
  5745. padding:2px 2px 2px 2px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u23621_text {
  5750. border-width:0px;
  5751. word-wrap:break-word;
  5752. text-transform:none;
  5753. visibility:hidden;
  5754. }
  5755. #u23622_img {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:8px;
  5761. height:14px;
  5762. }
  5763. #u23622 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:1208px;
  5767. top:1191px;
  5768. width:8px;
  5769. height:14px;
  5770. display:flex;
  5771. font-family:'Microsoft YaHei', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:12px;
  5775. }
  5776. #u23622 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:2px 2px 2px 2px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u23622_text {
  5784. border-width:0px;
  5785. word-wrap:break-word;
  5786. text-transform:none;
  5787. visibility:hidden;
  5788. }
  5789. #u23623 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:0px;
  5795. height:0px;
  5796. }
  5797. #u23624_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:33px;
  5803. height:24px;
  5804. background:inherit;
  5805. background-color:rgba(255, 255, 255, 1);
  5806. border:none;
  5807. border-radius:0px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:14px;
  5815. color:#BCBCBC;
  5816. text-align:left;
  5817. }
  5818. #u23624 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:1396px;
  5822. top:1186px;
  5823. width:33px;
  5824. height:24px;
  5825. display:flex;
  5826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:14px;
  5830. color:#BCBCBC;
  5831. text-align:left;
  5832. }
  5833. #u23624 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 2px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u23624_text {
  5841. border-width:0px;
  5842. white-space:nowrap;
  5843. text-transform:none;
  5844. }
  5845. #u23625_div {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:40px;
  5851. height:30px;
  5852. background:inherit;
  5853. background-color:rgba(255, 255, 255, 1);
  5854. box-sizing:border-box;
  5855. border-width:1px;
  5856. border-style:solid;
  5857. border-color:rgba(228, 228, 228, 1);
  5858. border-radius:4px;
  5859. -moz-box-shadow:none;
  5860. -webkit-box-shadow:none;
  5861. box-shadow:none;
  5862. font-family:'Microsoft YaHei', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:14px;
  5866. }
  5867. #u23625 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:1431px;
  5871. top:1183px;
  5872. width:40px;
  5873. height:30px;
  5874. display:flex;
  5875. font-family:'Microsoft YaHei', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:14px;
  5879. }
  5880. #u23625 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:2px 2px 2px 2px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u23625_text {
  5888. border-width:0px;
  5889. word-wrap:break-word;
  5890. text-transform:none;
  5891. visibility:hidden;
  5892. }
  5893. #u23626_div {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:19px;
  5899. height:24px;
  5900. background:inherit;
  5901. background-color:rgba(255, 255, 255, 1);
  5902. border:none;
  5903. border-radius:0px;
  5904. -moz-box-shadow:none;
  5905. -webkit-box-shadow:none;
  5906. box-shadow:none;
  5907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:14px;
  5911. color:#BCBCBC;
  5912. text-align:left;
  5913. }
  5914. #u23626 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1473px;
  5918. top:1187px;
  5919. width:19px;
  5920. height:24px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:14px;
  5926. color:#BCBCBC;
  5927. text-align:left;
  5928. }
  5929. #u23626 .text {
  5930. position:absolute;
  5931. align-self:center;
  5932. padding:2px 2px 2px 2px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u23626_text {
  5937. border-width:0px;
  5938. white-space:nowrap;
  5939. text-transform:none;
  5940. }
  5941. #u23627_input {
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:34px;
  5946. height:25px;
  5947. padding:2px 2px 2px 2px;
  5948. font-family:'Microsoft YaHei', sans-serif;
  5949. font-weight:400;
  5950. font-style:normal;
  5951. font-size:13px;
  5952. letter-spacing:normal;
  5953. color:#000000;
  5954. vertical-align:none;
  5955. text-align:left;
  5956. text-transform:none;
  5957. background-color:transparent;
  5958. border-color:transparent;
  5959. }
  5960. #u23627_input.disabled {
  5961. position:absolute;
  5962. left:0px;
  5963. top:0px;
  5964. width:34px;
  5965. height:25px;
  5966. padding:2px 2px 2px 2px;
  5967. font-family:'Microsoft YaHei', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:13px;
  5971. letter-spacing:normal;
  5972. color:#000000;
  5973. vertical-align:none;
  5974. text-align:left;
  5975. text-transform:none;
  5976. background-color:transparent;
  5977. border-color:transparent;
  5978. }
  5979. #u23627_div {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:34px;
  5985. height:25px;
  5986. background:inherit;
  5987. background-color:rgba(255, 255, 255, 1);
  5988. border:none;
  5989. border-radius:0px;
  5990. -moz-box-shadow:none;
  5991. -webkit-box-shadow:none;
  5992. box-shadow:none;
  5993. font-family:'Microsoft YaHei', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. }
  5997. #u23627 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:1434px;
  6001. top:1185px;
  6002. width:34px;
  6003. height:25px;
  6004. display:flex;
  6005. font-family:'Microsoft YaHei', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. }
  6009. #u23627 .text {
  6010. position:absolute;
  6011. align-self:center;
  6012. padding:2px 2px 2px 2px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u23627_div.disabled {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:34px;
  6022. height:25px;
  6023. background:inherit;
  6024. background-color:rgba(240, 240, 240, 1);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-family:'Microsoft YaHei', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. }
  6034. #u23627.disabled {
  6035. }
  6036. #u23628 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:0px;
  6042. height:0px;
  6043. }
  6044. #u23629 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:0px;
  6050. height:0px;
  6051. }
  6052. #u23630_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:380px;
  6058. height:140px;
  6059. background:inherit;
  6060. background-color:rgba(255, 255, 255, 1);
  6061. box-sizing:border-box;
  6062. border-width:1px;
  6063. border-style:solid;
  6064. border-color:rgba(204, 204, 204, 1);
  6065. border-radius:4px;
  6066. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6067. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6068. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6069. font-family:'Microsoft YaHei', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. }
  6073. #u23630 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:1144px;
  6077. top:475px;
  6078. width:380px;
  6079. height:140px;
  6080. display:flex;
  6081. font-family:'Microsoft YaHei', sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. }
  6085. #u23630 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:2px 2px 2px 2px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u23630_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. visibility:hidden;
  6097. }
  6098. #u23631_div {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:299px;
  6104. height:22px;
  6105. background:inherit;
  6106. background-color:rgba(255, 255, 255, 0);
  6107. border:none;
  6108. border-radius:0px;
  6109. -moz-box-shadow:none;
  6110. -webkit-box-shadow:none;
  6111. box-shadow:none;
  6112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:14px;
  6116. color:#666666;
  6117. line-height:22px;
  6118. }
  6119. #u23631 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:1204px;
  6123. top:530px;
  6124. width:299px;
  6125. height:22px;
  6126. display:flex;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. color:#666666;
  6132. line-height:22px;
  6133. }
  6134. #u23631 .text {
  6135. position:absolute;
  6136. align-self:flex-start;
  6137. padding:0px 0px 0px 0px;
  6138. box-sizing:border-box;
  6139. width:100%;
  6140. }
  6141. #u23631_text {
  6142. border-width:0px;
  6143. word-wrap:break-word;
  6144. text-transform:none;
  6145. }
  6146. #u23632_div {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:127px;
  6152. height:21px;
  6153. background:inherit;
  6154. background-color:rgba(255, 255, 255, 0);
  6155. border:none;
  6156. border-radius:0px;
  6157. -moz-box-shadow:none;
  6158. -webkit-box-shadow:none;
  6159. box-shadow:none;
  6160. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6161. font-weight:650;
  6162. font-style:normal;
  6163. font-size:18px;
  6164. color:#000000;
  6165. line-height:22px;
  6166. }
  6167. #u23632 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:1204px;
  6171. top:500px;
  6172. width:127px;
  6173. height:21px;
  6174. display:flex;
  6175. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6176. font-weight:650;
  6177. font-style:normal;
  6178. font-size:18px;
  6179. color:#000000;
  6180. line-height:22px;
  6181. }
  6182. #u23632 .text {
  6183. position:absolute;
  6184. align-self:flex-start;
  6185. padding:0px 0px 0px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u23632_text {
  6190. border-width:0px;
  6191. white-space:nowrap;
  6192. text-transform:none;
  6193. }
  6194. #u23633_div {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:61px;
  6200. height:30px;
  6201. background:inherit;
  6202. background-color:rgba(24, 144, 255, 1);
  6203. border:none;
  6204. border-radius:4px;
  6205. -moz-box-shadow:none;
  6206. -webkit-box-shadow:none;
  6207. box-shadow:none;
  6208. font-family:'Microsoft YaHei', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:14px;
  6212. color:#FFFFFF;
  6213. }
  6214. #u23633 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:1446px;
  6218. top:570px;
  6219. width:61px;
  6220. height:30px;
  6221. display:flex;
  6222. font-family:'Microsoft YaHei', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:14px;
  6226. color:#FFFFFF;
  6227. }
  6228. #u23633 .text {
  6229. position:absolute;
  6230. align-self:center;
  6231. padding:2px 16px 2px 16px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u23633_text {
  6236. border-width:0px;
  6237. white-space:nowrap;
  6238. text-transform:none;
  6239. }
  6240. #u23634_div {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:0px;
  6244. top:0px;
  6245. width:66px;
  6246. height:30px;
  6247. background:inherit;
  6248. background-color:rgba(255, 255, 255, 1);
  6249. box-sizing:border-box;
  6250. border-width:1px;
  6251. border-style:solid;
  6252. border-color:rgba(217, 217, 217, 1);
  6253. border-radius:4px;
  6254. -moz-box-shadow:none;
  6255. -webkit-box-shadow:none;
  6256. box-shadow:none;
  6257. font-family:'Microsoft YaHei', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:14px;
  6261. color:rgba(0, 0, 0, 0.647058823529412);
  6262. line-height:21px;
  6263. }
  6264. #u23634 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:1364px;
  6268. top:570px;
  6269. width:66px;
  6270. height:30px;
  6271. display:flex;
  6272. font-family:'Microsoft YaHei', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:14px;
  6276. color:rgba(0, 0, 0, 0.647058823529412);
  6277. line-height:21px;
  6278. }
  6279. #u23634 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:2px 16px 2px 16px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u23634_text {
  6287. border-width:0px;
  6288. white-space:nowrap;
  6289. text-transform:none;
  6290. }
  6291. #u23635_img {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:20px;
  6297. height:20px;
  6298. }
  6299. #u23635 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:1173px;
  6303. top:504px;
  6304. width:20px;
  6305. height:20px;
  6306. display:flex;
  6307. }
  6308. #u23635 .text {
  6309. position:absolute;
  6310. align-self:center;
  6311. padding:2px 2px 2px 2px;
  6312. box-sizing:border-box;
  6313. width:100%;
  6314. }
  6315. #u23635_text {
  6316. border-width:0px;
  6317. word-wrap:break-word;
  6318. text-transform:none;
  6319. visibility:hidden;
  6320. }
  6321. #u23636 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:0px;
  6327. height:0px;
  6328. }
  6329. #u23637_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:380px;
  6335. height:140px;
  6336. background:inherit;
  6337. background-color:rgba(255, 255, 255, 1);
  6338. box-sizing:border-box;
  6339. border-width:1px;
  6340. border-style:solid;
  6341. border-color:rgba(204, 204, 204, 1);
  6342. border-radius:4px;
  6343. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6344. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6345. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6346. font-family:'Microsoft YaHei', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. }
  6350. #u23637 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:1144px;
  6354. top:625px;
  6355. width:380px;
  6356. height:140px;
  6357. display:flex;
  6358. font-family:'Microsoft YaHei', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. }
  6362. #u23637 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:2px 2px 2px 2px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u23637_text {
  6370. border-width:0px;
  6371. word-wrap:break-word;
  6372. text-transform:none;
  6373. visibility:hidden;
  6374. }
  6375. #u23638_div {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:288px;
  6381. height:22px;
  6382. background:inherit;
  6383. background-color:rgba(255, 255, 255, 0);
  6384. border:none;
  6385. border-radius:0px;
  6386. -moz-box-shadow:none;
  6387. -webkit-box-shadow:none;
  6388. box-shadow:none;
  6389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:14px;
  6393. color:#666666;
  6394. line-height:22px;
  6395. }
  6396. #u23638 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:1204px;
  6400. top:680px;
  6401. width:288px;
  6402. height:22px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. color:#666666;
  6409. line-height:22px;
  6410. }
  6411. #u23638 .text {
  6412. position:absolute;
  6413. align-self:flex-start;
  6414. padding:0px 0px 0px 0px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u23638_text {
  6419. border-width:0px;
  6420. word-wrap:break-word;
  6421. text-transform:none;
  6422. }
  6423. #u23639_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:73px;
  6429. height:21px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 0);
  6432. border:none;
  6433. border-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6438. font-weight:650;
  6439. font-style:normal;
  6440. font-size:18px;
  6441. color:#000000;
  6442. line-height:22px;
  6443. }
  6444. #u23639 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:1204px;
  6448. top:650px;
  6449. width:73px;
  6450. height:21px;
  6451. display:flex;
  6452. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6453. font-weight:650;
  6454. font-style:normal;
  6455. font-size:18px;
  6456. color:#000000;
  6457. line-height:22px;
  6458. }
  6459. #u23639 .text {
  6460. position:absolute;
  6461. align-self:flex-start;
  6462. padding:0px 0px 0px 0px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u23639_text {
  6467. border-width:0px;
  6468. white-space:nowrap;
  6469. text-transform:none;
  6470. }
  6471. #u23640_div {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:61px;
  6477. height:30px;
  6478. background:inherit;
  6479. background-color:rgba(24, 144, 255, 1);
  6480. border:none;
  6481. border-radius:4px;
  6482. -moz-box-shadow:none;
  6483. -webkit-box-shadow:none;
  6484. box-shadow:none;
  6485. font-family:'Microsoft YaHei', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:14px;
  6489. color:#FFFFFF;
  6490. }
  6491. #u23640 {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:1443px;
  6495. top:720px;
  6496. width:61px;
  6497. height:30px;
  6498. display:flex;
  6499. font-family:'Microsoft YaHei', sans-serif;
  6500. font-weight:400;
  6501. font-style:normal;
  6502. font-size:14px;
  6503. color:#FFFFFF;
  6504. }
  6505. #u23640 .text {
  6506. position:absolute;
  6507. align-self:center;
  6508. padding:2px 16px 2px 16px;
  6509. box-sizing:border-box;
  6510. width:100%;
  6511. }
  6512. #u23640_text {
  6513. border-width:0px;
  6514. white-space:nowrap;
  6515. text-transform:none;
  6516. }
  6517. #u23641_div {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:66px;
  6523. height:30px;
  6524. background:inherit;
  6525. background-color:rgba(255, 255, 255, 1);
  6526. box-sizing:border-box;
  6527. border-width:1px;
  6528. border-style:solid;
  6529. border-color:rgba(217, 217, 217, 1);
  6530. border-radius:4px;
  6531. -moz-box-shadow:none;
  6532. -webkit-box-shadow:none;
  6533. box-shadow:none;
  6534. font-family:'Microsoft YaHei', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:14px;
  6538. color:rgba(0, 0, 0, 0.647058823529412);
  6539. line-height:21px;
  6540. }
  6541. #u23641 {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:1364px;
  6545. top:720px;
  6546. width:66px;
  6547. height:30px;
  6548. display:flex;
  6549. font-family:'Microsoft YaHei', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:14px;
  6553. color:rgba(0, 0, 0, 0.647058823529412);
  6554. line-height:21px;
  6555. }
  6556. #u23641 .text {
  6557. position:absolute;
  6558. align-self:center;
  6559. padding:2px 16px 2px 16px;
  6560. box-sizing:border-box;
  6561. width:100%;
  6562. }
  6563. #u23641_text {
  6564. border-width:0px;
  6565. white-space:nowrap;
  6566. text-transform:none;
  6567. }
  6568. #u23642_img {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:20px;
  6574. height:20px;
  6575. }
  6576. #u23642 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:1173px;
  6580. top:652px;
  6581. width:20px;
  6582. height:20px;
  6583. display:flex;
  6584. }
  6585. #u23642 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 2px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u23642_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. visibility:hidden;
  6597. }