styles.css 113 KB

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