styles.css 210 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2620px;
  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. #u15504_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u15504 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u15504 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u15504_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u15505_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u15505 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u15505 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u15505_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u15506_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u15506 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u15506 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u15506_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u15507 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u15508_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u15508 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u15508 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u15508_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u15509_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u15509 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u15509 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u15509_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u15510_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u15510 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u15510 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u15510_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u15511 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u15512_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. #u15512 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u15512 .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. #u15512_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u15513_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u15513 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u15513 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u15513_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u15514 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u15515_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. #u15515 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u15515 .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. #u15515_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u15516_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u15516 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u15516 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u15516_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u15517 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u15518_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u15518 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u15518 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u15518_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u15519_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u15519 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u15519 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u15519_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u15520 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u15521_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u15521 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u15521 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u15521_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u15522_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u15522 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u15522 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u15522_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u15523 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u15524_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u15524 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u15524 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u15524_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u15525_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u15525 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u15525 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u15525_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u15526 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u15527_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u15527 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u15527 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u15527_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u15528_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u15528 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u15528 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u15528_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u15529 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u15530_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u15530 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u15530 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u15530_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u15531_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u15531 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u15531 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u15531_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u15532 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u15533_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u15533 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u15533 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u15533_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u15534_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u15534 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u15534 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u15534_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u15535 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u15536_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u15536 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u15536 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u15536_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u15537_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u15537 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u15537 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u15537_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u15538 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u15539_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u15539 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u15539 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u15539_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u15540_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u15540 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u15540 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u15540_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u15541 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u15542_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u15542 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u15542 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u15542_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u15543_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u15543 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u15543 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u15543_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u15544 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u15545_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u15545_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u15545_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u15545 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u15545 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u15545_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u15545.disabled {
  1276. }
  1277. .u15545_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u15546_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u15546 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u15546 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u15546_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u15547_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u15547 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u15547 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u15547_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u15548_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u15548 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u15548 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u15548_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u15549 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u15550_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u15550 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u15550 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u15550_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u15551_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u15551 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u15551 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u15551_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u15552_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u15552 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u15552 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u15552_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u15553_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u15553 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u15553 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u15553_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u15554_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u15554 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u15554 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u15554_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u15555 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u15556_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u15556 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u15556 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u15556_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u15557_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u15557 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u15557 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u15557_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u15558_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1259px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u15558 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:330px;
  1661. top:50px;
  1662. width:1259px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u15558 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u15558_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u15559 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:350px;
  1683. top:272px;
  1684. width:1211px;
  1685. height:313px;
  1686. }
  1687. #u15560_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:163px;
  1693. height:35px;
  1694. }
  1695. #u15560 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:163px;
  1701. height:35px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. font-size:12px;
  1707. color:#FFFFFF;
  1708. }
  1709. #u15560 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u15560_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. }
  1721. #u15561_img {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:96px;
  1727. height:35px;
  1728. }
  1729. #u15561 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:163px;
  1733. top:0px;
  1734. width:96px;
  1735. height:35px;
  1736. display:flex;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:12px;
  1741. color:#FFFFFF;
  1742. }
  1743. #u15561 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u15561_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. }
  1755. #u15562_img {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:96px;
  1761. height:35px;
  1762. }
  1763. #u15562 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:259px;
  1767. top:0px;
  1768. width:96px;
  1769. height:35px;
  1770. display:flex;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. color:#FFFFFF;
  1776. }
  1777. #u15562 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u15562_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u15563_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:96px;
  1795. height:35px;
  1796. }
  1797. #u15563 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:355px;
  1801. top:0px;
  1802. width:96px;
  1803. height:35px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:#FFFFFF;
  1810. }
  1811. #u15563 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 0px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u15563_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u15564_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:100px;
  1829. height:35px;
  1830. }
  1831. #u15564 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:451px;
  1835. top:0px;
  1836. width:100px;
  1837. height:35px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#FFFFFF;
  1844. }
  1845. #u15564 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u15564_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u15565_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:96px;
  1863. height:35px;
  1864. }
  1865. #u15565 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:551px;
  1869. top:0px;
  1870. width:96px;
  1871. height:35px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u15565 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u15565_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u15566_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:96px;
  1897. height:35px;
  1898. }
  1899. #u15566 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:647px;
  1903. top:0px;
  1904. width:96px;
  1905. height:35px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u15566 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u15566_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u15567_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:96px;
  1931. height:35px;
  1932. }
  1933. #u15567 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:743px;
  1937. top:0px;
  1938. width:96px;
  1939. height:35px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u15567 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u15567_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u15568_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:96px;
  1965. height:35px;
  1966. }
  1967. #u15568 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:839px;
  1971. top:0px;
  1972. width:96px;
  1973. height:35px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u15568 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u15568_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u15569_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:96px;
  1999. height:35px;
  2000. }
  2001. #u15569 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:935px;
  2005. top:0px;
  2006. width:96px;
  2007. height:35px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u15569 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u15569_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u15570_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:96px;
  2033. height:35px;
  2034. }
  2035. #u15570 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:1031px;
  2039. top:0px;
  2040. width:96px;
  2041. height:35px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. color:#FFFFFF;
  2048. }
  2049. #u15570 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u15570_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. }
  2061. #u15571_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:84px;
  2067. height:35px;
  2068. }
  2069. #u15571 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:1127px;
  2073. top:0px;
  2074. width:84px;
  2075. height:35px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#FFFFFF;
  2082. }
  2083. #u15571 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u15571_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u15572_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:163px;
  2101. height:44px;
  2102. }
  2103. #u15572 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:35px;
  2108. width:163px;
  2109. height:44px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#333333;
  2116. line-height:40px;
  2117. }
  2118. #u15572 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u15572_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u15573_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:96px;
  2136. height:44px;
  2137. }
  2138. #u15573 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:163px;
  2142. top:35px;
  2143. width:96px;
  2144. height:44px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. color:#333333;
  2151. line-height:40px;
  2152. }
  2153. #u15573 .text {
  2154. position:absolute;
  2155. align-self:center;
  2156. padding:2px 2px 2px 0px;
  2157. box-sizing:border-box;
  2158. width:100%;
  2159. }
  2160. #u15573_text {
  2161. border-width:0px;
  2162. word-wrap:break-word;
  2163. text-transform:none;
  2164. visibility:hidden;
  2165. }
  2166. #u15574_img {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:96px;
  2172. height:44px;
  2173. }
  2174. #u15574 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:259px;
  2178. top:35px;
  2179. width:96px;
  2180. height:44px;
  2181. display:flex;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. color:#333333;
  2187. line-height:40px;
  2188. }
  2189. #u15574 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u15574_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u15575_img {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:96px;
  2207. height:44px;
  2208. }
  2209. #u15575 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:355px;
  2213. top:35px;
  2214. width:96px;
  2215. height:44px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:12px;
  2221. color:#333333;
  2222. line-height:40px;
  2223. }
  2224. #u15575 .text {
  2225. position:absolute;
  2226. align-self:center;
  2227. padding:2px 2px 2px 0px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u15575_text {
  2232. border-width:0px;
  2233. word-wrap:break-word;
  2234. text-transform:none;
  2235. visibility:hidden;
  2236. }
  2237. #u15576_img {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:100px;
  2243. height:44px;
  2244. }
  2245. #u15576 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:451px;
  2249. top:35px;
  2250. width:100px;
  2251. height:44px;
  2252. display:flex;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:12px;
  2257. color:#333333;
  2258. line-height:40px;
  2259. }
  2260. #u15576 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 2px 2px 0px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u15576_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. visibility:hidden;
  2272. }
  2273. #u15577_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:96px;
  2279. height:44px;
  2280. }
  2281. #u15577 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:551px;
  2285. top:35px;
  2286. width:96px;
  2287. height:44px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:12px;
  2293. }
  2294. #u15577 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 0px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u15577_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. }
  2306. #u15578_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:96px;
  2312. height:44px;
  2313. }
  2314. #u15578 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:647px;
  2318. top:35px;
  2319. width:96px;
  2320. height:44px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#606266;
  2327. }
  2328. #u15578 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u15578_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u15579_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:96px;
  2347. height:44px;
  2348. }
  2349. #u15579 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:743px;
  2353. top:35px;
  2354. width:96px;
  2355. height:44px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. color:#333333;
  2362. }
  2363. #u15579 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u15579_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u15580_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:96px;
  2382. height:44px;
  2383. }
  2384. #u15580 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:839px;
  2388. top:35px;
  2389. width:96px;
  2390. height:44px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. color:#333333;
  2397. }
  2398. #u15580 .text {
  2399. position:absolute;
  2400. align-self:center;
  2401. padding:2px 2px 2px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u15580_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. visibility:hidden;
  2410. }
  2411. #u15581_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:96px;
  2417. height:44px;
  2418. }
  2419. #u15581 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:935px;
  2423. top:35px;
  2424. width:96px;
  2425. height:44px;
  2426. display:flex;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. color:#333333;
  2432. }
  2433. #u15581 .text {
  2434. position:absolute;
  2435. align-self:center;
  2436. padding:2px 2px 2px 0px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u15581_text {
  2441. border-width:0px;
  2442. word-wrap:break-word;
  2443. text-transform:none;
  2444. }
  2445. #u15582_img {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:96px;
  2451. height:44px;
  2452. }
  2453. #u15582 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:1031px;
  2457. top:35px;
  2458. width:96px;
  2459. height:44px;
  2460. display:flex;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:#333333;
  2466. }
  2467. #u15582 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u15582_text {
  2475. border-width:0px;
  2476. word-wrap:break-word;
  2477. text-transform:none;
  2478. visibility:hidden;
  2479. }
  2480. #u15583_img {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:84px;
  2486. height:44px;
  2487. }
  2488. #u15583 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:1127px;
  2492. top:35px;
  2493. width:84px;
  2494. height:44px;
  2495. display:flex;
  2496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:12px;
  2500. color:#298FFF;
  2501. line-height:35px;
  2502. }
  2503. #u15583 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u15583_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. }
  2515. #u15584_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:163px;
  2521. height:44px;
  2522. }
  2523. #u15584 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:79px;
  2528. width:163px;
  2529. height:44px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. color:#333333;
  2536. line-height:40px;
  2537. }
  2538. #u15584 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u15584_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u15585_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:96px;
  2556. height:44px;
  2557. }
  2558. #u15585 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:163px;
  2562. top:79px;
  2563. width:96px;
  2564. height:44px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. color:#333333;
  2571. line-height:40px;
  2572. }
  2573. #u15585 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u15585_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u15586_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:96px;
  2592. height:44px;
  2593. }
  2594. #u15586 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:259px;
  2598. top:79px;
  2599. width:96px;
  2600. height:44px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:12px;
  2606. color:#333333;
  2607. line-height:40px;
  2608. }
  2609. #u15586 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u15586_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u15587_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:96px;
  2628. height:44px;
  2629. }
  2630. #u15587 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:355px;
  2634. top:79px;
  2635. width:96px;
  2636. height:44px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#333333;
  2643. line-height:40px;
  2644. }
  2645. #u15587 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u15587_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u15588_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:100px;
  2664. height:44px;
  2665. }
  2666. #u15588 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:451px;
  2670. top:79px;
  2671. width:100px;
  2672. height:44px;
  2673. display:flex;
  2674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:12px;
  2678. color:#333333;
  2679. line-height:40px;
  2680. }
  2681. #u15588 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u15588_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. visibility:hidden;
  2693. }
  2694. #u15589_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:96px;
  2700. height:44px;
  2701. }
  2702. #u15589 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:551px;
  2706. top:79px;
  2707. width:96px;
  2708. height:44px;
  2709. display:flex;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:12px;
  2714. }
  2715. #u15589 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 0px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u15589_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u15590_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:96px;
  2734. height:44px;
  2735. }
  2736. #u15590 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:647px;
  2740. top:79px;
  2741. width:96px;
  2742. height:44px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:12px;
  2748. color:#606266;
  2749. }
  2750. #u15590 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u15590_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u15591_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:96px;
  2769. height:44px;
  2770. }
  2771. #u15591 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:743px;
  2775. top:79px;
  2776. width:96px;
  2777. height:44px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#333333;
  2784. }
  2785. #u15591 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 0px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u15591_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. visibility:hidden;
  2797. }
  2798. #u15592_img {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:96px;
  2804. height:44px;
  2805. }
  2806. #u15592 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:839px;
  2810. top:79px;
  2811. width:96px;
  2812. height:44px;
  2813. display:flex;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:12px;
  2818. color:#333333;
  2819. }
  2820. #u15592 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u15592_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u15593_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:96px;
  2839. height:44px;
  2840. }
  2841. #u15593 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:935px;
  2845. top:79px;
  2846. width:96px;
  2847. height:44px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:12px;
  2853. color:#333333;
  2854. }
  2855. #u15593 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 0px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u15593_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. visibility:hidden;
  2867. }
  2868. #u15594_img {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:96px;
  2874. height:44px;
  2875. }
  2876. #u15594 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:1031px;
  2880. top:79px;
  2881. width:96px;
  2882. height:44px;
  2883. display:flex;
  2884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2885. font-weight:400;
  2886. font-style:normal;
  2887. font-size:12px;
  2888. color:#333333;
  2889. }
  2890. #u15594 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 0px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u15594_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u15595_img {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:84px;
  2909. height:44px;
  2910. }
  2911. #u15595 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:1127px;
  2915. top:79px;
  2916. width:84px;
  2917. height:44px;
  2918. display:flex;
  2919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:12px;
  2923. color:#1890FF;
  2924. }
  2925. #u15595 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 0px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u15595_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u15596_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:163px;
  2944. height:38px;
  2945. }
  2946. #u15596 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:123px;
  2951. width:163px;
  2952. height:38px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#333333;
  2959. line-height:40px;
  2960. }
  2961. #u15596 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u15596_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u15597_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:96px;
  2980. height:38px;
  2981. }
  2982. #u15597 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:163px;
  2986. top:123px;
  2987. width:96px;
  2988. height:38px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. color:#333333;
  2995. line-height:40px;
  2996. }
  2997. #u15597 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 0px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u15597_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u15598_img {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:96px;
  3016. height:38px;
  3017. }
  3018. #u15598 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:259px;
  3022. top:123px;
  3023. width:96px;
  3024. height:38px;
  3025. display:flex;
  3026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3027. font-weight:400;
  3028. font-style:normal;
  3029. font-size:12px;
  3030. color:#333333;
  3031. line-height:40px;
  3032. }
  3033. #u15598 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 2px 2px 0px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u15598_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. visibility:hidden;
  3045. }
  3046. #u15599_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:96px;
  3052. height:38px;
  3053. }
  3054. #u15599 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:355px;
  3058. top:123px;
  3059. width:96px;
  3060. height:38px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. color:#333333;
  3067. line-height:40px;
  3068. }
  3069. #u15599 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 0px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u15599_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. visibility:hidden;
  3081. }
  3082. #u15600_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:100px;
  3088. height:38px;
  3089. }
  3090. #u15600 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:451px;
  3094. top:123px;
  3095. width:100px;
  3096. height:38px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:12px;
  3102. color:#333333;
  3103. line-height:40px;
  3104. }
  3105. #u15600 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 2px 2px 0px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u15600_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u15601_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:96px;
  3124. height:38px;
  3125. }
  3126. #u15601 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:551px;
  3130. top:123px;
  3131. width:96px;
  3132. height:38px;
  3133. display:flex;
  3134. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. color:#606266;
  3139. }
  3140. #u15601 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u15601_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u15602_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:96px;
  3159. height:38px;
  3160. }
  3161. #u15602 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:647px;
  3165. top:123px;
  3166. width:96px;
  3167. height:38px;
  3168. display:flex;
  3169. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:12px;
  3173. color:#606266;
  3174. }
  3175. #u15602 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:2px 2px 2px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u15602_text {
  3183. border-width:0px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. visibility:hidden;
  3187. }
  3188. #u15603_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:96px;
  3194. height:38px;
  3195. }
  3196. #u15603 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:743px;
  3200. top:123px;
  3201. width:96px;
  3202. height:38px;
  3203. display:flex;
  3204. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. color:#606266;
  3209. }
  3210. #u15603 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:2px 2px 2px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u15603_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. visibility:hidden;
  3222. }
  3223. #u15604_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:96px;
  3229. height:38px;
  3230. }
  3231. #u15604 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:839px;
  3235. top:123px;
  3236. width:96px;
  3237. height:38px;
  3238. display:flex;
  3239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:12px;
  3243. color:#606266;
  3244. }
  3245. #u15604 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 0px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u15604_text {
  3253. border-width:0px;
  3254. word-wrap:break-word;
  3255. text-transform:none;
  3256. visibility:hidden;
  3257. }
  3258. #u15605_img {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:96px;
  3264. height:38px;
  3265. }
  3266. #u15605 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:935px;
  3270. top:123px;
  3271. width:96px;
  3272. height:38px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:12px;
  3278. color:#606266;
  3279. }
  3280. #u15605 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u15605_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. visibility:hidden;
  3292. }
  3293. #u15606_img {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:96px;
  3299. height:38px;
  3300. }
  3301. #u15606 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:1031px;
  3305. top:123px;
  3306. width:96px;
  3307. height:38px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:12px;
  3313. color:#606266;
  3314. }
  3315. #u15606 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u15606_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u15607_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:84px;
  3334. height:38px;
  3335. }
  3336. #u15607 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:1127px;
  3340. top:123px;
  3341. width:84px;
  3342. height:38px;
  3343. display:flex;
  3344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:12px;
  3348. color:#1890FF;
  3349. }
  3350. #u15607 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 0px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u15607_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u15608_img {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:163px;
  3369. height:38px;
  3370. }
  3371. #u15608 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:161px;
  3376. width:163px;
  3377. height:38px;
  3378. display:flex;
  3379. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:12px;
  3383. color:#606266;
  3384. }
  3385. #u15608 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 0px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u15608_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u15609_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:96px;
  3404. height:38px;
  3405. }
  3406. #u15609 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:163px;
  3410. top:161px;
  3411. width:96px;
  3412. height:38px;
  3413. display:flex;
  3414. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:12px;
  3418. color:#606266;
  3419. }
  3420. #u15609 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 2px 0px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u15609_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u15610_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:96px;
  3439. height:38px;
  3440. }
  3441. #u15610 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:259px;
  3445. top:161px;
  3446. width:96px;
  3447. height:38px;
  3448. display:flex;
  3449. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. color:#606266;
  3454. }
  3455. #u15610 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u15610_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u15611_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:96px;
  3474. height:38px;
  3475. }
  3476. #u15611 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:355px;
  3480. top:161px;
  3481. width:96px;
  3482. height:38px;
  3483. display:flex;
  3484. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. color:#606266;
  3489. }
  3490. #u15611 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:2px 2px 2px 0px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u15611_text {
  3498. border-width:0px;
  3499. word-wrap:break-word;
  3500. text-transform:none;
  3501. visibility:hidden;
  3502. }
  3503. #u15612_img {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:100px;
  3509. height:38px;
  3510. }
  3511. #u15612 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:451px;
  3515. top:161px;
  3516. width:100px;
  3517. height:38px;
  3518. display:flex;
  3519. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:12px;
  3523. color:#606266;
  3524. }
  3525. #u15612 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 2px 2px 0px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u15612_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u15613_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:96px;
  3544. height:38px;
  3545. }
  3546. #u15613 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:551px;
  3550. top:161px;
  3551. width:96px;
  3552. height:38px;
  3553. display:flex;
  3554. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. color:#606266;
  3559. }
  3560. #u15613 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 0px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u15613_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. visibility:hidden;
  3572. }
  3573. #u15614_img {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:96px;
  3579. height:38px;
  3580. }
  3581. #u15614 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:647px;
  3585. top:161px;
  3586. width:96px;
  3587. height:38px;
  3588. display:flex;
  3589. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:12px;
  3593. color:#606266;
  3594. }
  3595. #u15614 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 0px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u15614_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u15615_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:96px;
  3614. height:38px;
  3615. }
  3616. #u15615 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:743px;
  3620. top:161px;
  3621. width:96px;
  3622. height:38px;
  3623. display:flex;
  3624. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. color:#606266;
  3629. }
  3630. #u15615 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u15615_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u15616_img {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:96px;
  3649. height:38px;
  3650. }
  3651. #u15616 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:839px;
  3655. top:161px;
  3656. width:96px;
  3657. height:38px;
  3658. display:flex;
  3659. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:12px;
  3663. color:#606266;
  3664. }
  3665. #u15616 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 0px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u15616_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u15617_img {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:96px;
  3684. height:38px;
  3685. }
  3686. #u15617 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:935px;
  3690. top:161px;
  3691. width:96px;
  3692. height:38px;
  3693. display:flex;
  3694. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:12px;
  3698. color:#606266;
  3699. }
  3700. #u15617 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 0px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u15617_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u15618_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:96px;
  3719. height:38px;
  3720. }
  3721. #u15618 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:1031px;
  3725. top:161px;
  3726. width:96px;
  3727. height:38px;
  3728. display:flex;
  3729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. color:#606266;
  3734. }
  3735. #u15618 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u15618_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u15619_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:84px;
  3754. height:38px;
  3755. }
  3756. #u15619 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:1127px;
  3760. top:161px;
  3761. width:84px;
  3762. height:38px;
  3763. display:flex;
  3764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#606266;
  3769. }
  3770. #u15619 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u15619_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u15620_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:163px;
  3789. height:38px;
  3790. }
  3791. #u15620 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:199px;
  3796. width:163px;
  3797. height:38px;
  3798. display:flex;
  3799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#606266;
  3804. }
  3805. #u15620 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u15620_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u15621_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:96px;
  3824. height:38px;
  3825. }
  3826. #u15621 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:163px;
  3830. top:199px;
  3831. width:96px;
  3832. height:38px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. color:#606266;
  3839. }
  3840. #u15621 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u15621_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u15622_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:96px;
  3859. height:38px;
  3860. }
  3861. #u15622 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:259px;
  3865. top:199px;
  3866. width:96px;
  3867. height:38px;
  3868. display:flex;
  3869. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#606266;
  3874. }
  3875. #u15622 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u15622_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u15623_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:96px;
  3894. height:38px;
  3895. }
  3896. #u15623 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:355px;
  3900. top:199px;
  3901. width:96px;
  3902. height:38px;
  3903. display:flex;
  3904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u15623 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u15623_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u15624_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:100px;
  3929. height:38px;
  3930. }
  3931. #u15624 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:451px;
  3935. top:199px;
  3936. width:100px;
  3937. height:38px;
  3938. display:flex;
  3939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#606266;
  3944. }
  3945. #u15624 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u15624_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u15625_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:96px;
  3964. height:38px;
  3965. }
  3966. #u15625 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:551px;
  3970. top:199px;
  3971. width:96px;
  3972. height:38px;
  3973. display:flex;
  3974. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. color:#606266;
  3979. }
  3980. #u15625 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u15625_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u15626_img {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:96px;
  3999. height:38px;
  4000. }
  4001. #u15626 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:647px;
  4005. top:199px;
  4006. width:96px;
  4007. height:38px;
  4008. display:flex;
  4009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. color:#606266;
  4014. }
  4015. #u15626 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u15626_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u15627_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:96px;
  4034. height:38px;
  4035. }
  4036. #u15627 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:743px;
  4040. top:199px;
  4041. width:96px;
  4042. height:38px;
  4043. display:flex;
  4044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#606266;
  4049. }
  4050. #u15627 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u15627_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u15628_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:96px;
  4069. height:38px;
  4070. }
  4071. #u15628 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:839px;
  4075. top:199px;
  4076. width:96px;
  4077. height:38px;
  4078. display:flex;
  4079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u15628 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u15628_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u15629_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:96px;
  4104. height:38px;
  4105. }
  4106. #u15629 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:935px;
  4110. top:199px;
  4111. width:96px;
  4112. height:38px;
  4113. display:flex;
  4114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u15629 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u15629_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u15630_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:96px;
  4139. height:38px;
  4140. }
  4141. #u15630 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:1031px;
  4145. top:199px;
  4146. width:96px;
  4147. height:38px;
  4148. display:flex;
  4149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u15630 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u15630_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u15631_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:84px;
  4174. height:38px;
  4175. }
  4176. #u15631 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:1127px;
  4180. top:199px;
  4181. width:84px;
  4182. height:38px;
  4183. display:flex;
  4184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u15631 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u15631_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u15632_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:163px;
  4209. height:38px;
  4210. }
  4211. #u15632 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:237px;
  4216. width:163px;
  4217. height:38px;
  4218. display:flex;
  4219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#606266;
  4224. }
  4225. #u15632 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u15632_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u15633_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:96px;
  4244. height:38px;
  4245. }
  4246. #u15633 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:163px;
  4250. top:237px;
  4251. width:96px;
  4252. height:38px;
  4253. display:flex;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u15633 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u15633_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u15634_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:96px;
  4279. height:38px;
  4280. }
  4281. #u15634 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:259px;
  4285. top:237px;
  4286. width:96px;
  4287. height:38px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. color:#606266;
  4294. }
  4295. #u15634 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u15634_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u15635_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:96px;
  4314. height:38px;
  4315. }
  4316. #u15635 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:355px;
  4320. top:237px;
  4321. width:96px;
  4322. height:38px;
  4323. display:flex;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u15635 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u15635_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u15636_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:100px;
  4349. height:38px;
  4350. }
  4351. #u15636 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:451px;
  4355. top:237px;
  4356. width:100px;
  4357. height:38px;
  4358. display:flex;
  4359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#606266;
  4364. }
  4365. #u15636 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u15636_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u15637_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:96px;
  4384. height:38px;
  4385. }
  4386. #u15637 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:551px;
  4390. top:237px;
  4391. width:96px;
  4392. height:38px;
  4393. display:flex;
  4394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#606266;
  4399. }
  4400. #u15637 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u15637_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u15638_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:96px;
  4419. height:38px;
  4420. }
  4421. #u15638 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:647px;
  4425. top:237px;
  4426. width:96px;
  4427. height:38px;
  4428. display:flex;
  4429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#606266;
  4434. }
  4435. #u15638 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u15638_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u15639_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:96px;
  4454. height:38px;
  4455. }
  4456. #u15639 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:743px;
  4460. top:237px;
  4461. width:96px;
  4462. height:38px;
  4463. display:flex;
  4464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#606266;
  4469. }
  4470. #u15639 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u15639_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u15640_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:96px;
  4489. height:38px;
  4490. }
  4491. #u15640 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:839px;
  4495. top:237px;
  4496. width:96px;
  4497. height:38px;
  4498. display:flex;
  4499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. color:#606266;
  4504. }
  4505. #u15640 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u15640_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u15641_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:96px;
  4524. height:38px;
  4525. }
  4526. #u15641 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:935px;
  4530. top:237px;
  4531. width:96px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#606266;
  4539. }
  4540. #u15641 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u15641_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u15642_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:96px;
  4559. height:38px;
  4560. }
  4561. #u15642 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:1031px;
  4565. top:237px;
  4566. width:96px;
  4567. height:38px;
  4568. display:flex;
  4569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#606266;
  4574. }
  4575. #u15642 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u15642_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u15643_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:84px;
  4594. height:38px;
  4595. }
  4596. #u15643 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1127px;
  4600. top:237px;
  4601. width:84px;
  4602. height:38px;
  4603. display:flex;
  4604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#606266;
  4609. }
  4610. #u15643 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u15643_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u15644_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:163px;
  4629. height:38px;
  4630. }
  4631. #u15644 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:275px;
  4636. width:163px;
  4637. height:38px;
  4638. display:flex;
  4639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#606266;
  4644. }
  4645. #u15644 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u15644_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u15645_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:96px;
  4664. height:38px;
  4665. }
  4666. #u15645 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:163px;
  4670. top:275px;
  4671. width:96px;
  4672. height:38px;
  4673. display:flex;
  4674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#606266;
  4679. }
  4680. #u15645 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u15645_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u15646_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:96px;
  4699. height:38px;
  4700. }
  4701. #u15646 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:259px;
  4705. top:275px;
  4706. width:96px;
  4707. height:38px;
  4708. display:flex;
  4709. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#606266;
  4714. }
  4715. #u15646 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u15646_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u15647_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:96px;
  4734. height:38px;
  4735. }
  4736. #u15647 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:355px;
  4740. top:275px;
  4741. width:96px;
  4742. height:38px;
  4743. display:flex;
  4744. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. color:#606266;
  4749. }
  4750. #u15647 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 0px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u15647_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u15648_img {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:100px;
  4769. height:38px;
  4770. }
  4771. #u15648 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:451px;
  4775. top:275px;
  4776. width:100px;
  4777. height:38px;
  4778. display:flex;
  4779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:12px;
  4783. color:#606266;
  4784. }
  4785. #u15648 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u15648_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u15649_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:96px;
  4804. height:38px;
  4805. }
  4806. #u15649 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:551px;
  4810. top:275px;
  4811. width:96px;
  4812. height:38px;
  4813. display:flex;
  4814. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#606266;
  4819. }
  4820. #u15649 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 0px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u15649_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u15650_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:96px;
  4839. height:38px;
  4840. }
  4841. #u15650 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:647px;
  4845. top:275px;
  4846. width:96px;
  4847. height:38px;
  4848. display:flex;
  4849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:#606266;
  4854. }
  4855. #u15650 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u15650_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. visibility:hidden;
  4867. }
  4868. #u15651_img {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:96px;
  4874. height:38px;
  4875. }
  4876. #u15651 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:743px;
  4880. top:275px;
  4881. width:96px;
  4882. height:38px;
  4883. display:flex;
  4884. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. color:#606266;
  4889. }
  4890. #u15651 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 0px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u15651_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u15652_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:96px;
  4909. height:38px;
  4910. }
  4911. #u15652 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:839px;
  4915. top:275px;
  4916. width:96px;
  4917. height:38px;
  4918. display:flex;
  4919. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:12px;
  4923. color:#606266;
  4924. }
  4925. #u15652 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u15652_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. visibility:hidden;
  4937. }
  4938. #u15653_img {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:96px;
  4944. height:38px;
  4945. }
  4946. #u15653 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:935px;
  4950. top:275px;
  4951. width:96px;
  4952. height:38px;
  4953. display:flex;
  4954. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. font-size:12px;
  4958. color:#606266;
  4959. }
  4960. #u15653 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u15653_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u15654_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:96px;
  4979. height:38px;
  4980. }
  4981. #u15654 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:1031px;
  4985. top:275px;
  4986. width:96px;
  4987. height:38px;
  4988. display:flex;
  4989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#606266;
  4994. }
  4995. #u15654 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u15654_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u15655_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:84px;
  5014. height:38px;
  5015. }
  5016. #u15655 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:1127px;
  5020. top:275px;
  5021. width:84px;
  5022. height:38px;
  5023. display:flex;
  5024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:12px;
  5028. color:#606266;
  5029. }
  5030. #u15655 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 0px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u15655_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u15656_div {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:60px;
  5049. height:30px;
  5050. background:inherit;
  5051. background-color:rgba(24, 144, 255, 1);
  5052. border:none;
  5053. border-radius:4px;
  5054. -moz-box-shadow:none;
  5055. -webkit-box-shadow:none;
  5056. box-shadow:none;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:14px;
  5061. color:#FFFFFF;
  5062. }
  5063. #u15656 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:350px;
  5067. top:232px;
  5068. width:60px;
  5069. height:30px;
  5070. display:flex;
  5071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5072. font-weight:400;
  5073. font-style:normal;
  5074. font-size:14px;
  5075. color:#FFFFFF;
  5076. }
  5077. #u15656 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 2px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u15656_text {
  5085. border-width:0px;
  5086. word-wrap:break-word;
  5087. text-transform:none;
  5088. }
  5089. #u15657_div {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:73px;
  5095. height:50px;
  5096. background:inherit;
  5097. background-color:rgba(255, 255, 255, 0);
  5098. border:none;
  5099. border-left:0px;
  5100. border-top:0px;
  5101. border-right:0px;
  5102. border-radius:0px;
  5103. border-bottom-right-radius:0px;
  5104. border-bottom-left-radius:0px;
  5105. -moz-box-shadow:none;
  5106. -webkit-box-shadow:none;
  5107. box-shadow:none;
  5108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5109. font-weight:400;
  5110. font-style:normal;
  5111. font-size:18px;
  5112. }
  5113. #u15657 {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:349px;
  5117. top:52px;
  5118. width:73px;
  5119. height:50px;
  5120. display:flex;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:18px;
  5125. }
  5126. #u15657 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:0px 0px 0px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u15657_text {
  5134. border-width:0px;
  5135. white-space:nowrap;
  5136. text-transform:none;
  5137. }
  5138. #u15658 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:0px;
  5144. height:0px;
  5145. }
  5146. #u15659_div {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:80px;
  5152. height:100px;
  5153. background:inherit;
  5154. background-color:rgba(255, 255, 255, 1);
  5155. box-sizing:border-box;
  5156. border-width:1px;
  5157. border-style:solid;
  5158. border-color:rgba(242, 242, 242, 1);
  5159. border-radius:4px;
  5160. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5161. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5162. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:14px;
  5167. text-align:left;
  5168. }
  5169. #u15659 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:1461px;
  5173. top:338px;
  5174. width:80px;
  5175. height:100px;
  5176. display:flex;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:14px;
  5181. text-align:left;
  5182. }
  5183. #u15659 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 2px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u15659_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u15660_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:66px;
  5202. height:40px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 1);
  5205. box-sizing:border-box;
  5206. border-width:1px;
  5207. border-style:solid;
  5208. border-color:rgba(215, 215, 215, 1);
  5209. border-left:0px;
  5210. border-top:0px;
  5211. border-right:0px;
  5212. border-radius:0px;
  5213. border-bottom-right-radius:0px;
  5214. border-bottom-left-radius:0px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:14px;
  5222. }
  5223. #u15660 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:1467px;
  5227. top:348px;
  5228. width:66px;
  5229. height:40px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:14px;
  5235. }
  5236. #u15660 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 2px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u15660_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. }
  5248. #u15661_div {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:66px;
  5254. height:40px;
  5255. background:inherit;
  5256. background-color:rgba(255, 255, 255, 1);
  5257. border:none;
  5258. border-left:0px;
  5259. border-top:0px;
  5260. border-right:0px;
  5261. border-radius:0px;
  5262. border-bottom-right-radius:0px;
  5263. border-bottom-left-radius:0px;
  5264. -moz-box-shadow:none;
  5265. -webkit-box-shadow:none;
  5266. box-shadow:none;
  5267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:14px;
  5271. }
  5272. #u15661 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:1467px;
  5276. top:388px;
  5277. width:66px;
  5278. height:40px;
  5279. display:flex;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:14px;
  5284. }
  5285. #u15661 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:2px 2px 2px 2px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u15661_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. }
  5297. #u15662 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:0px;
  5303. height:0px;
  5304. }
  5305. #u15663_div {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:400px;
  5311. height:160px;
  5312. background:inherit;
  5313. background-color:rgba(255, 255, 255, 1);
  5314. box-sizing:border-box;
  5315. border-width:1px;
  5316. border-style:solid;
  5317. border-color:rgba(204, 204, 204, 1);
  5318. border-radius:0px;
  5319. -moz-box-shadow:none;
  5320. -webkit-box-shadow:none;
  5321. box-shadow:none;
  5322. font-family:'Microsoft YaHei', sans-serif;
  5323. font-weight:400;
  5324. font-style:normal;
  5325. }
  5326. #u15663 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:685px;
  5330. top:543px;
  5331. width:400px;
  5332. height:160px;
  5333. display:flex;
  5334. font-family:'Microsoft YaHei', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. }
  5338. #u15663 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 2px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u15663_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. visibility:hidden;
  5350. }
  5351. #u15664_div {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:127px;
  5357. height:21px;
  5358. background:inherit;
  5359. background-color:rgba(255, 255, 255, 0);
  5360. border:none;
  5361. border-radius:0px;
  5362. -moz-box-shadow:none;
  5363. -webkit-box-shadow:none;
  5364. box-shadow:none;
  5365. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5366. font-weight:650;
  5367. font-style:normal;
  5368. font-size:18px;
  5369. color:#000000;
  5370. line-height:22px;
  5371. }
  5372. #u15664 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:735px;
  5376. top:568px;
  5377. width:127px;
  5378. height:21px;
  5379. display:flex;
  5380. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5381. font-weight:650;
  5382. font-style:normal;
  5383. font-size:18px;
  5384. color:#000000;
  5385. line-height:22px;
  5386. }
  5387. #u15664 .text {
  5388. position:absolute;
  5389. align-self:flex-start;
  5390. padding:0px 0px 0px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u15664_text {
  5395. border-width:0px;
  5396. white-space:nowrap;
  5397. text-transform:none;
  5398. }
  5399. #u15665_div {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:61px;
  5405. height:32px;
  5406. background:inherit;
  5407. background-color:rgba(24, 144, 255, 1);
  5408. border:none;
  5409. border-radius:4px;
  5410. -moz-box-shadow:none;
  5411. -webkit-box-shadow:none;
  5412. box-shadow:none;
  5413. font-family:'Microsoft YaHei', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. color:#FFFFFF;
  5418. }
  5419. #u15665 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:1004px;
  5423. top:651px;
  5424. width:61px;
  5425. height:32px;
  5426. display:flex;
  5427. font-family:'Microsoft YaHei', sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. font-size:14px;
  5431. color:#FFFFFF;
  5432. }
  5433. #u15665 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 16px 2px 16px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u15665_text {
  5441. border-width:0px;
  5442. white-space:nowrap;
  5443. text-transform:none;
  5444. }
  5445. #u15666_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:66px;
  5451. height:32px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 1);
  5454. box-sizing:border-box;
  5455. border-width:1px;
  5456. border-style:solid;
  5457. border-color:rgba(217, 217, 217, 1);
  5458. border-radius:4px;
  5459. -moz-box-shadow:none;
  5460. -webkit-box-shadow:none;
  5461. box-shadow:none;
  5462. font-family:'Microsoft YaHei', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. color:rgba(0, 0, 0, 0.647058823529412);
  5467. line-height:21px;
  5468. }
  5469. #u15666 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:922px;
  5473. top:651px;
  5474. width:66px;
  5475. height:32px;
  5476. display:flex;
  5477. font-family:'Microsoft YaHei', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:14px;
  5481. color:rgba(0, 0, 0, 0.647058823529412);
  5482. line-height:21px;
  5483. }
  5484. #u15666 .text {
  5485. position:absolute;
  5486. align-self:center;
  5487. padding:2px 16px 2px 16px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u15666_text {
  5492. border-width:0px;
  5493. white-space:nowrap;
  5494. text-transform:none;
  5495. }
  5496. #u15667_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:24px;
  5502. height:24px;
  5503. }
  5504. #u15667 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:699px;
  5508. top:566px;
  5509. width:24px;
  5510. height:24px;
  5511. display:flex;
  5512. font-family:'Microsoft YaHei', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:52px;
  5516. color:#FAAD14;
  5517. }
  5518. #u15667 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 2px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u15667_text {
  5526. border-width:0px;
  5527. word-wrap:break-word;
  5528. text-transform:none;
  5529. visibility:hidden;
  5530. }
  5531. #u15668_div {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:326px;
  5537. height:22px;
  5538. background:inherit;
  5539. background-color:rgba(255, 255, 255, 0);
  5540. border:none;
  5541. border-radius:0px;
  5542. -moz-box-shadow:none;
  5543. -webkit-box-shadow:none;
  5544. box-shadow:none;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:12px;
  5549. color:#7F7F7F;
  5550. line-height:22px;
  5551. }
  5552. #u15668 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:735px;
  5556. top:600px;
  5557. width:326px;
  5558. height:22px;
  5559. display:flex;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:12px;
  5564. color:#7F7F7F;
  5565. line-height:22px;
  5566. }
  5567. #u15668 .text {
  5568. position:absolute;
  5569. align-self:flex-start;
  5570. padding:0px 0px 0px 0px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u15668_text {
  5575. border-width:0px;
  5576. word-wrap:break-word;
  5577. text-transform:none;
  5578. }
  5579. #u15669 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:0px;
  5585. height:0px;
  5586. }
  5587. #u15670_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:400px;
  5593. height:160px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 1);
  5596. box-sizing:border-box;
  5597. border-width:1px;
  5598. border-style:solid;
  5599. border-color:rgba(204, 204, 204, 1);
  5600. border-radius:0px;
  5601. -moz-box-shadow:none;
  5602. -webkit-box-shadow:none;
  5603. box-shadow:none;
  5604. font-family:'Microsoft YaHei', sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. }
  5608. #u15670 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1104px;
  5612. top:543px;
  5613. width:400px;
  5614. height:160px;
  5615. display:flex;
  5616. font-family:'Microsoft YaHei', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. }
  5620. #u15670 .text {
  5621. position:absolute;
  5622. align-self:center;
  5623. padding:2px 2px 2px 2px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u15670_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. visibility:hidden;
  5632. }
  5633. #u15671_div {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:127px;
  5639. height:21px;
  5640. background:inherit;
  5641. background-color:rgba(255, 255, 255, 0);
  5642. border:none;
  5643. border-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5648. font-weight:650;
  5649. font-style:normal;
  5650. font-size:18px;
  5651. color:#000000;
  5652. line-height:22px;
  5653. }
  5654. #u15671 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:1164px;
  5658. top:578px;
  5659. width:127px;
  5660. height:21px;
  5661. display:flex;
  5662. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5663. font-weight:650;
  5664. font-style:normal;
  5665. font-size:18px;
  5666. color:#000000;
  5667. line-height:22px;
  5668. }
  5669. #u15671 .text {
  5670. position:absolute;
  5671. align-self:flex-start;
  5672. padding:0px 0px 0px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u15671_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }
  5681. #u15672_div {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:61px;
  5687. height:32px;
  5688. background:inherit;
  5689. background-color:rgba(24, 144, 255, 1);
  5690. border:none;
  5691. border-radius:4px;
  5692. -moz-box-shadow:none;
  5693. -webkit-box-shadow:none;
  5694. box-shadow:none;
  5695. font-family:'Microsoft YaHei', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:14px;
  5699. color:#FFFFFF;
  5700. }
  5701. #u15672 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:1423px;
  5705. top:648px;
  5706. width:61px;
  5707. height:32px;
  5708. display:flex;
  5709. font-family:'Microsoft YaHei', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:14px;
  5713. color:#FFFFFF;
  5714. }
  5715. #u15672 .text {
  5716. position:absolute;
  5717. align-self:center;
  5718. padding:2px 16px 2px 16px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u15672_text {
  5723. border-width:0px;
  5724. white-space:nowrap;
  5725. text-transform:none;
  5726. }
  5727. #u15673_div {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:66px;
  5733. height:32px;
  5734. background:inherit;
  5735. background-color:rgba(255, 255, 255, 1);
  5736. box-sizing:border-box;
  5737. border-width:1px;
  5738. border-style:solid;
  5739. border-color:rgba(217, 217, 217, 1);
  5740. border-radius:4px;
  5741. -moz-box-shadow:none;
  5742. -webkit-box-shadow:none;
  5743. box-shadow:none;
  5744. font-family:'Microsoft YaHei', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:14px;
  5748. color:rgba(0, 0, 0, 0.647058823529412);
  5749. line-height:21px;
  5750. }
  5751. #u15673 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:1341px;
  5755. top:648px;
  5756. width:66px;
  5757. height:32px;
  5758. display:flex;
  5759. font-family:'Microsoft YaHei', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:14px;
  5763. color:rgba(0, 0, 0, 0.647058823529412);
  5764. line-height:21px;
  5765. }
  5766. #u15673 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:2px 16px 2px 16px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u15673_text {
  5774. border-width:0px;
  5775. white-space:nowrap;
  5776. text-transform:none;
  5777. }
  5778. #u15674_div {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:241px;
  5784. height:22px;
  5785. background:inherit;
  5786. background-color:rgba(255, 255, 255, 0);
  5787. border:none;
  5788. border-radius:0px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:12px;
  5796. color:#7F7F7F;
  5797. line-height:22px;
  5798. }
  5799. #u15674 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:1164px;
  5803. top:610px;
  5804. width:241px;
  5805. height:22px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:12px;
  5811. color:#7F7F7F;
  5812. line-height:22px;
  5813. }
  5814. #u15674 .text {
  5815. position:absolute;
  5816. align-self:flex-start;
  5817. padding:0px 0px 0px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u15674_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u15675_img {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:24px;
  5832. height:24px;
  5833. }
  5834. #u15675 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:1128px;
  5838. top:578px;
  5839. width:24px;
  5840. height:24px;
  5841. display:flex;
  5842. }
  5843. #u15675 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:2px 2px 2px 2px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u15675_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. visibility:hidden;
  5855. }
  5856. #u15677 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:0px;
  5862. height:0px;
  5863. }
  5864. #u15678_div {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:200px;
  5870. height:1190px;
  5871. background:inherit;
  5872. background-color:rgba(255, 255, 255, 1);
  5873. border:none;
  5874. border-radius:0px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. }
  5879. #u15678 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:120px;
  5883. top:50px;
  5884. width:200px;
  5885. height:1190px;
  5886. display:flex;
  5887. }
  5888. #u15678 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:2px 2px 2px 2px;
  5892. box-sizing:border-box;
  5893. width:100%;
  5894. }
  5895. #u15678_text {
  5896. border-width:0px;
  5897. word-wrap:break-word;
  5898. text-transform:none;
  5899. visibility:hidden;
  5900. }
  5901. #u15679_div {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:200px;
  5907. height:60px;
  5908. background:inherit;
  5909. background-color:rgba(224, 231, 247, 1);
  5910. border:none;
  5911. border-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5916. font-weight:500;
  5917. font-style:normal;
  5918. font-size:18px;
  5919. }
  5920. #u15679 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:120px;
  5924. top:50px;
  5925. width:200px;
  5926. height:60px;
  5927. display:flex;
  5928. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5929. font-weight:500;
  5930. font-style:normal;
  5931. font-size:18px;
  5932. }
  5933. #u15679 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:0px 0px 0px 20px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u15679_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. }
  5945. #u15680_div {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:65px;
  5951. height:22px;
  5952. background:inherit;
  5953. background-color:rgba(255, 255, 255, 0);
  5954. border:none;
  5955. border-radius:0px;
  5956. -moz-box-shadow:none;
  5957. -webkit-box-shadow:none;
  5958. box-shadow:none;
  5959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:16px;
  5963. }
  5964. #u15680 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:145px;
  5968. top:536px;
  5969. width:65px;
  5970. height:22px;
  5971. display:flex;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:16px;
  5976. }
  5977. #u15680 .text {
  5978. position:absolute;
  5979. align-self:flex-start;
  5980. padding:0px 0px 0px 0px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u15680_text {
  5985. border-width:0px;
  5986. white-space:nowrap;
  5987. text-transform:none;
  5988. }
  5989. #u15681_div {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:49px;
  5995. height:17px;
  5996. background:inherit;
  5997. background-color:rgba(255, 255, 255, 0);
  5998. border:none;
  5999. border-radius:0px;
  6000. -moz-box-shadow:none;
  6001. -webkit-box-shadow:none;
  6002. box-shadow:none;
  6003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:12px;
  6007. color:#AAAAAA;
  6008. }
  6009. #u15681 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:143px;
  6013. top:499px;
  6014. width:49px;
  6015. height:17px;
  6016. display:flex;
  6017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:12px;
  6021. color:#AAAAAA;
  6022. }
  6023. #u15681 .text {
  6024. position:absolute;
  6025. align-self:flex-start;
  6026. padding:0px 0px 0px 0px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u15681_text {
  6031. border-width:0px;
  6032. white-space:nowrap;
  6033. text-transform:none;
  6034. }
  6035. #u15682_div {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:49px;
  6041. height:17px;
  6042. background:inherit;
  6043. background-color:rgba(255, 255, 255, 0);
  6044. border:none;
  6045. border-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. color:#AAAAAA;
  6054. }
  6055. #u15682 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:144px;
  6059. top:131px;
  6060. width:49px;
  6061. height:17px;
  6062. display:flex;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:12px;
  6067. color:#AAAAAA;
  6068. }
  6069. #u15682 .text {
  6070. position:absolute;
  6071. align-self:flex-start;
  6072. padding:0px 0px 0px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u15682_text {
  6077. border-width:0px;
  6078. white-space:nowrap;
  6079. text-transform:none;
  6080. }
  6081. #u15683_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:65px;
  6087. height:22px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 0);
  6090. border:none;
  6091. border-radius:0px;
  6092. -moz-box-shadow:none;
  6093. -webkit-box-shadow:none;
  6094. box-shadow:none;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:16px;
  6099. }
  6100. #u15683 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:146px;
  6104. top:168px;
  6105. width:65px;
  6106. height:22px;
  6107. display:flex;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:16px;
  6112. }
  6113. #u15683 .text {
  6114. position:absolute;
  6115. align-self:flex-start;
  6116. padding:0px 0px 0px 0px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u15683_text {
  6121. border-width:0px;
  6122. white-space:nowrap;
  6123. text-transform:none;
  6124. }
  6125. #u15684_img {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:201px;
  6131. height:2px;
  6132. }
  6133. #u15684 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:120px;
  6137. top:478px;
  6138. width:200px;
  6139. height:1px;
  6140. display:flex;
  6141. }
  6142. #u15684 .text {
  6143. position:absolute;
  6144. align-self:center;
  6145. padding:2px 2px 2px 2px;
  6146. box-sizing:border-box;
  6147. width:100%;
  6148. }
  6149. #u15684_text {
  6150. border-width:0px;
  6151. word-wrap:break-word;
  6152. text-transform:none;
  6153. visibility:hidden;
  6154. }
  6155. #u15685_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:65px;
  6161. height:22px;
  6162. background:inherit;
  6163. background-color:rgba(255, 255, 255, 0);
  6164. border:none;
  6165. border-radius:0px;
  6166. -moz-box-shadow:none;
  6167. -webkit-box-shadow:none;
  6168. box-shadow:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:16px;
  6173. }
  6174. #u15685 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:145px;
  6178. top:578px;
  6179. width:65px;
  6180. height:22px;
  6181. display:flex;
  6182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:16px;
  6186. }
  6187. #u15685 .text {
  6188. position:absolute;
  6189. align-self:flex-start;
  6190. padding:0px 0px 0px 0px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u15685_text {
  6195. border-width:0px;
  6196. white-space:nowrap;
  6197. text-transform:none;
  6198. }
  6199. #u15686_div {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:49px;
  6205. height:17px;
  6206. background:inherit;
  6207. background-color:rgba(255, 255, 255, 0);
  6208. border:none;
  6209. border-radius:0px;
  6210. -moz-box-shadow:none;
  6211. -webkit-box-shadow:none;
  6212. box-shadow:none;
  6213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6214. font-weight:400;
  6215. font-style:normal;
  6216. font-size:12px;
  6217. color:#AAAAAA;
  6218. }
  6219. #u15686 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:144px;
  6223. top:315px;
  6224. width:49px;
  6225. height:17px;
  6226. display:flex;
  6227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:12px;
  6231. color:#AAAAAA;
  6232. }
  6233. #u15686 .text {
  6234. position:absolute;
  6235. align-self:flex-start;
  6236. padding:0px 0px 0px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u15686_text {
  6241. border-width:0px;
  6242. white-space:nowrap;
  6243. text-transform:none;
  6244. }
  6245. #u15687_img {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:201px;
  6251. height:2px;
  6252. }
  6253. #u15687 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:121px;
  6257. top:294px;
  6258. width:200px;
  6259. height:1px;
  6260. display:flex;
  6261. }
  6262. #u15687 .text {
  6263. position:absolute;
  6264. align-self:center;
  6265. padding:2px 2px 2px 2px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u15687_text {
  6270. border-width:0px;
  6271. word-wrap:break-word;
  6272. text-transform:none;
  6273. visibility:hidden;
  6274. }
  6275. #u15688_div {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:65px;
  6281. height:22px;
  6282. background:inherit;
  6283. background-color:rgba(255, 255, 255, 0);
  6284. border:none;
  6285. border-radius:0px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:16px;
  6293. }
  6294. #u15688 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:146px;
  6298. top:352px;
  6299. width:65px;
  6300. height:22px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:16px;
  6306. }
  6307. #u15688 .text {
  6308. position:absolute;
  6309. align-self:flex-start;
  6310. padding:0px 0px 0px 0px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u15688_text {
  6315. border-width:0px;
  6316. white-space:nowrap;
  6317. text-transform:none;
  6318. }
  6319. #u15689_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:65px;
  6325. height:22px;
  6326. background:inherit;
  6327. background-color:rgba(255, 255, 255, 0);
  6328. border:none;
  6329. border-radius:0px;
  6330. -moz-box-shadow:none;
  6331. -webkit-box-shadow:none;
  6332. box-shadow:none;
  6333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6334. font-weight:400;
  6335. font-style:normal;
  6336. font-size:16px;
  6337. }
  6338. #u15689 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:146px;
  6342. top:394px;
  6343. width:65px;
  6344. height:22px;
  6345. display:flex;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:16px;
  6350. }
  6351. #u15689 .text {
  6352. position:absolute;
  6353. align-self:flex-start;
  6354. padding:0px 0px 0px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u15689_text {
  6359. border-width:0px;
  6360. white-space:nowrap;
  6361. text-transform:none;
  6362. }
  6363. #u15690_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:65px;
  6369. height:22px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 0);
  6372. border:none;
  6373. border-radius:0px;
  6374. -moz-box-shadow:none;
  6375. -webkit-box-shadow:none;
  6376. box-shadow:none;
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:16px;
  6381. }
  6382. #u15690 {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:145px;
  6386. top:886px;
  6387. width:65px;
  6388. height:22px;
  6389. display:flex;
  6390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6391. font-weight:400;
  6392. font-style:normal;
  6393. font-size:16px;
  6394. }
  6395. #u15690 .text {
  6396. position:absolute;
  6397. align-self:flex-start;
  6398. padding:0px 0px 0px 0px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u15690_text {
  6403. border-width:0px;
  6404. white-space:nowrap;
  6405. text-transform:none;
  6406. }
  6407. #u15691_div {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:97px;
  6413. height:22px;
  6414. background:inherit;
  6415. background-color:rgba(255, 255, 255, 0);
  6416. border:none;
  6417. border-radius:0px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:16px;
  6425. }
  6426. #u15691 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:145px;
  6430. top:678px;
  6431. width:97px;
  6432. height:22px;
  6433. display:flex;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:16px;
  6438. }
  6439. #u15691 .text {
  6440. position:absolute;
  6441. align-self:flex-start;
  6442. padding:0px 0px 0px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u15691_text {
  6447. border-width:0px;
  6448. white-space:nowrap;
  6449. text-transform:none;
  6450. }
  6451. #u15692_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:49px;
  6457. height:17px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:12px;
  6469. color:#AAAAAA;
  6470. }
  6471. #u15692 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:143px;
  6475. top:641px;
  6476. width:49px;
  6477. height:17px;
  6478. display:flex;
  6479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:12px;
  6483. color:#AAAAAA;
  6484. }
  6485. #u15692 .text {
  6486. position:absolute;
  6487. align-self:flex-start;
  6488. padding:0px 0px 0px 0px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u15692_text {
  6493. border-width:0px;
  6494. white-space:nowrap;
  6495. text-transform:none;
  6496. }
  6497. #u15693_img {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:201px;
  6503. height:2px;
  6504. }
  6505. #u15693 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:120px;
  6509. top:620px;
  6510. width:200px;
  6511. height:1px;
  6512. display:flex;
  6513. }
  6514. #u15693 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u15693_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u15694_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:97px;
  6533. height:22px;
  6534. background:inherit;
  6535. background-color:rgba(255, 255, 255, 0);
  6536. border:none;
  6537. border-radius:0px;
  6538. -moz-box-shadow:none;
  6539. -webkit-box-shadow:none;
  6540. box-shadow:none;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:16px;
  6545. }
  6546. #u15694 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:145px;
  6550. top:760px;
  6551. width:97px;
  6552. height:22px;
  6553. display:flex;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:16px;
  6558. }
  6559. #u15694 .text {
  6560. position:absolute;
  6561. align-self:flex-start;
  6562. padding:0px 0px 0px 0px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u15694_text {
  6567. border-width:0px;
  6568. white-space:nowrap;
  6569. text-transform:none;
  6570. }
  6571. #u15695_div {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:97px;
  6577. height:22px;
  6578. background:inherit;
  6579. background-color:rgba(255, 255, 255, 0);
  6580. border:none;
  6581. border-radius:0px;
  6582. -moz-box-shadow:none;
  6583. -webkit-box-shadow:none;
  6584. box-shadow:none;
  6585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6586. font-weight:400;
  6587. font-style:normal;
  6588. font-size:16px;
  6589. }
  6590. #u15695 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:145px;
  6594. top:802px;
  6595. width:97px;
  6596. height:22px;
  6597. display:flex;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:16px;
  6602. }
  6603. #u15695 .text {
  6604. position:absolute;
  6605. align-self:flex-start;
  6606. padding:0px 0px 0px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u15695_text {
  6611. border-width:0px;
  6612. white-space:nowrap;
  6613. text-transform:none;
  6614. }
  6615. #u15696_div {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:65px;
  6621. height:22px;
  6622. background:inherit;
  6623. background-color:rgba(255, 255, 255, 0);
  6624. border:none;
  6625. border-radius:0px;
  6626. -moz-box-shadow:none;
  6627. -webkit-box-shadow:none;
  6628. box-shadow:none;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:16px;
  6633. }
  6634. #u15696 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:145px;
  6638. top:986px;
  6639. width:65px;
  6640. height:22px;
  6641. display:flex;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:16px;
  6646. }
  6647. #u15696 .text {
  6648. position:absolute;
  6649. align-self:flex-start;
  6650. padding:0px 0px 0px 0px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u15696_text {
  6655. border-width:0px;
  6656. white-space:nowrap;
  6657. text-transform:none;
  6658. }
  6659. #u15697_div {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:49px;
  6665. height:17px;
  6666. background:inherit;
  6667. background-color:rgba(255, 255, 255, 0);
  6668. border:none;
  6669. border-radius:0px;
  6670. -moz-box-shadow:none;
  6671. -webkit-box-shadow:none;
  6672. box-shadow:none;
  6673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6674. font-weight:400;
  6675. font-style:normal;
  6676. font-size:12px;
  6677. color:#AAAAAA;
  6678. }
  6679. #u15697 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:143px;
  6683. top:949px;
  6684. width:49px;
  6685. height:17px;
  6686. display:flex;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:12px;
  6691. color:#AAAAAA;
  6692. }
  6693. #u15697 .text {
  6694. position:absolute;
  6695. align-self:flex-start;
  6696. padding:0px 0px 0px 0px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u15697_text {
  6701. border-width:0px;
  6702. white-space:nowrap;
  6703. text-transform:none;
  6704. }
  6705. #u15698_img {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:201px;
  6711. height:2px;
  6712. }
  6713. #u15698 {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:120px;
  6717. top:928px;
  6718. width:200px;
  6719. height:1px;
  6720. display:flex;
  6721. }
  6722. #u15698 .text {
  6723. position:absolute;
  6724. align-self:center;
  6725. padding:2px 2px 2px 2px;
  6726. box-sizing:border-box;
  6727. width:100%;
  6728. }
  6729. #u15698_text {
  6730. border-width:0px;
  6731. word-wrap:break-word;
  6732. text-transform:none;
  6733. visibility:hidden;
  6734. }
  6735. #u15699_div {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:65px;
  6741. height:22px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 0);
  6744. border:none;
  6745. border-radius:0px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6750. font-weight:400;
  6751. font-style:normal;
  6752. font-size:16px;
  6753. }
  6754. #u15699 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:145px;
  6758. top:1028px;
  6759. width:65px;
  6760. height:22px;
  6761. display:flex;
  6762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6763. font-weight:400;
  6764. font-style:normal;
  6765. font-size:16px;
  6766. }
  6767. #u15699 .text {
  6768. position:absolute;
  6769. align-self:flex-start;
  6770. padding:0px 0px 0px 0px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u15699_text {
  6775. border-width:0px;
  6776. white-space:nowrap;
  6777. text-transform:none;
  6778. }
  6779. #u15700_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:97px;
  6785. height:22px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border:none;
  6789. border-radius:0px;
  6790. -moz-box-shadow:none;
  6791. -webkit-box-shadow:none;
  6792. box-shadow:none;
  6793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6794. font-weight:400;
  6795. font-style:normal;
  6796. font-size:16px;
  6797. }
  6798. #u15700 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:145px;
  6802. top:844px;
  6803. width:97px;
  6804. height:22px;
  6805. display:flex;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:16px;
  6810. }
  6811. #u15700 .text {
  6812. position:absolute;
  6813. align-self:flex-start;
  6814. padding:0px 0px 0px 0px;
  6815. box-sizing:border-box;
  6816. width:100%;
  6817. }
  6818. #u15700_text {
  6819. border-width:0px;
  6820. white-space:nowrap;
  6821. text-transform:none;
  6822. }
  6823. #u15701_div {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:81px;
  6829. height:22px;
  6830. background:inherit;
  6831. background-color:rgba(255, 255, 255, 0);
  6832. border:none;
  6833. border-radius:0px;
  6834. -moz-box-shadow:none;
  6835. -webkit-box-shadow:none;
  6836. box-shadow:none;
  6837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:16px;
  6841. }
  6842. #u15701 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:146px;
  6846. top:436px;
  6847. width:81px;
  6848. height:22px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:16px;
  6854. }
  6855. #u15701 .text {
  6856. position:absolute;
  6857. align-self:flex-start;
  6858. padding:0px 0px 0px 0px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u15701_text {
  6863. border-width:0px;
  6864. white-space:nowrap;
  6865. text-transform:none;
  6866. }
  6867. #u15702_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:97px;
  6873. height:22px;
  6874. background:inherit;
  6875. background-color:rgba(255, 255, 255, 0);
  6876. border:none;
  6877. border-radius:0px;
  6878. -moz-box-shadow:none;
  6879. -webkit-box-shadow:none;
  6880. box-shadow:none;
  6881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:16px;
  6885. }
  6886. #u15702 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:145px;
  6890. top:720px;
  6891. width:97px;
  6892. height:22px;
  6893. display:flex;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:16px;
  6898. }
  6899. #u15702 .text {
  6900. position:absolute;
  6901. align-self:flex-start;
  6902. padding:0px 0px 0px 0px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u15702_text {
  6907. border-width:0px;
  6908. white-space:nowrap;
  6909. text-transform:none;
  6910. }
  6911. #u15703_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:65px;
  6917. height:22px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 0);
  6920. border:none;
  6921. border-radius:0px;
  6922. -moz-box-shadow:none;
  6923. -webkit-box-shadow:none;
  6924. box-shadow:none;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:16px;
  6929. }
  6930. #u15703 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:145px;
  6934. top:210px;
  6935. width:65px;
  6936. height:22px;
  6937. display:flex;
  6938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. font-size:16px;
  6942. }
  6943. #u15703 .text {
  6944. position:absolute;
  6945. align-self:flex-start;
  6946. padding:0px 0px 0px 0px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u15703_text {
  6951. border-width:0px;
  6952. white-space:nowrap;
  6953. text-transform:none;
  6954. }
  6955. #u15704_div {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:65px;
  6961. height:22px;
  6962. background:inherit;
  6963. background-color:rgba(255, 255, 255, 0);
  6964. border:none;
  6965. border-radius:0px;
  6966. -moz-box-shadow:none;
  6967. -webkit-box-shadow:none;
  6968. box-shadow:none;
  6969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6970. font-weight:400;
  6971. font-style:normal;
  6972. font-size:16px;
  6973. }
  6974. #u15704 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:146px;
  6978. top:252px;
  6979. width:65px;
  6980. height:22px;
  6981. display:flex;
  6982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:16px;
  6986. }
  6987. #u15704 .text {
  6988. position:absolute;
  6989. align-self:flex-start;
  6990. padding:0px 0px 0px 0px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u15704_text {
  6995. border-width:0px;
  6996. white-space:nowrap;
  6997. text-transform:none;
  6998. }
  6999. #u15705_div {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:407px;
  7005. height:20px;
  7006. background:inherit;
  7007. background-color:rgba(255, 255, 255, 0);
  7008. border:none;
  7009. border-left:0px;
  7010. border-top:0px;
  7011. border-right:0px;
  7012. border-radius:0px;
  7013. border-bottom-right-radius:0px;
  7014. border-bottom-left-radius:0px;
  7015. -moz-box-shadow:none;
  7016. -webkit-box-shadow:none;
  7017. box-shadow:none;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:14px;
  7022. color:#7F7F7F;
  7023. }
  7024. #u15705 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:352px;
  7028. top:100px;
  7029. width:407px;
  7030. height:20px;
  7031. display:flex;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:14px;
  7036. color:#7F7F7F;
  7037. }
  7038. #u15705 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:0px 0px 0px 0px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u15705_text {
  7046. border-width:0px;
  7047. white-space:nowrap;
  7048. text-transform:none;
  7049. }
  7050. #u15706_div {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:55px;
  7056. height:30px;
  7057. background:inherit;
  7058. background-color:rgba(255, 255, 255, 1);
  7059. box-sizing:border-box;
  7060. border-width:1px;
  7061. border-style:solid;
  7062. border-color:rgba(170, 170, 170, 1);
  7063. border-radius:4px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:12px;
  7071. color:#555555;
  7072. }
  7073. #u15706 {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:489px;
  7077. top:232px;
  7078. width:55px;
  7079. height:30px;
  7080. display:flex;
  7081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7082. font-weight:400;
  7083. font-style:normal;
  7084. font-size:12px;
  7085. color:#555555;
  7086. }
  7087. #u15706 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:5px 15px 5px 15px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u15706_text {
  7095. border-width:0px;
  7096. white-space:nowrap;
  7097. text-transform:none;
  7098. }
  7099. #u15707_div {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:59px;
  7105. height:30px;
  7106. background:inherit;
  7107. background-color:rgba(255, 255, 255, 1);
  7108. box-sizing:border-box;
  7109. border-width:1px;
  7110. border-style:solid;
  7111. border-color:rgba(170, 170, 170, 1);
  7112. border-radius:4px;
  7113. -moz-box-shadow:none;
  7114. -webkit-box-shadow:none;
  7115. box-shadow:none;
  7116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7117. font-weight:400;
  7118. font-style:normal;
  7119. font-size:14px;
  7120. color:#555555;
  7121. }
  7122. #u15707 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:420px;
  7126. top:232px;
  7127. width:59px;
  7128. height:30px;
  7129. display:flex;
  7130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:14px;
  7134. color:#555555;
  7135. }
  7136. #u15707 .text {
  7137. position:absolute;
  7138. align-self:center;
  7139. padding:5px 15px 5px 15px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u15707_text {
  7144. border-width:0px;
  7145. white-space:nowrap;
  7146. text-transform:none;
  7147. }
  7148. #u15708 {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:0px;
  7154. height:0px;
  7155. }
  7156. #u15709_div {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:0px;
  7160. top:0px;
  7161. width:60px;
  7162. height:30px;
  7163. background:inherit;
  7164. background-color:rgba(24, 144, 255, 1);
  7165. border:none;
  7166. border-radius:4px;
  7167. -moz-box-shadow:none;
  7168. -webkit-box-shadow:none;
  7169. box-shadow:none;
  7170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:14px;
  7174. color:#FFFFFF;
  7175. }
  7176. #u15709 {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:350px;
  7180. top:183px;
  7181. width:60px;
  7182. height:30px;
  7183. display:flex;
  7184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:14px;
  7188. color:#FFFFFF;
  7189. }
  7190. #u15709 .text {
  7191. position:absolute;
  7192. align-self:center;
  7193. padding:2px 2px 2px 2px;
  7194. box-sizing:border-box;
  7195. width:100%;
  7196. }
  7197. #u15709_text {
  7198. border-width:0px;
  7199. word-wrap:break-word;
  7200. text-transform:none;
  7201. }
  7202. #u15710_div {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:60px;
  7208. height:30px;
  7209. background:inherit;
  7210. background-color:rgba(255, 255, 255, 1);
  7211. box-sizing:border-box;
  7212. border-width:1px;
  7213. border-style:solid;
  7214. border-color:rgba(170, 170, 170, 1);
  7215. border-radius:4px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:14px;
  7223. }
  7224. #u15710 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:420px;
  7228. top:183px;
  7229. width:60px;
  7230. height:30px;
  7231. display:flex;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:14px;
  7236. }
  7237. #u15710 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 2px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u15710_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. }
  7249. #u15711 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:0px;
  7255. height:0px;
  7256. }
  7257. #u15712_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:140px;
  7263. height:30px;
  7264. background:inherit;
  7265. background-color:rgba(255, 255, 255, 1);
  7266. box-sizing:border-box;
  7267. border-width:1px;
  7268. border-style:solid;
  7269. border-color:rgba(201, 201, 201, 1);
  7270. border-radius:4px;
  7271. -moz-box-shadow:none;
  7272. -webkit-box-shadow:none;
  7273. box-shadow:none;
  7274. font-family:'Microsoft YaHei', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:14px;
  7278. color:#CCCCCC;
  7279. text-align:left;
  7280. }
  7281. #u15712 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:800px;
  7285. top:143px;
  7286. width:140px;
  7287. height:30px;
  7288. display:flex;
  7289. font-family:'Microsoft YaHei', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:14px;
  7293. color:#CCCCCC;
  7294. text-align:left;
  7295. }
  7296. #u15712 .text {
  7297. position:absolute;
  7298. align-self:center;
  7299. padding:2px 8px 2px 8px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u15712_text {
  7304. border-width:0px;
  7305. word-wrap:break-word;
  7306. text-transform:none;
  7307. visibility:hidden;
  7308. }
  7309. #u15713_input {
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:127px;
  7314. height:25px;
  7315. padding:2px 2px 2px 2px;
  7316. font-family:'Microsoft YaHei', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:10px;
  7320. letter-spacing:normal;
  7321. color:#000000;
  7322. vertical-align:none;
  7323. text-align:left;
  7324. text-transform:none;
  7325. background-color:transparent;
  7326. border-color:transparent;
  7327. }
  7328. #u15713_input.disabled {
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:127px;
  7333. height:25px;
  7334. padding:2px 2px 2px 2px;
  7335. font-family:'Microsoft YaHei', sans-serif;
  7336. font-weight:400;
  7337. font-style:normal;
  7338. font-size:10px;
  7339. letter-spacing:normal;
  7340. color:#000000;
  7341. vertical-align:none;
  7342. text-align:left;
  7343. text-transform:none;
  7344. background-color:transparent;
  7345. border-color:transparent;
  7346. }
  7347. #u15713_div {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:127px;
  7353. height:25px;
  7354. background:inherit;
  7355. background-color:rgba(255, 255, 255, 1);
  7356. border:none;
  7357. border-radius:0px;
  7358. -moz-box-shadow:none;
  7359. -webkit-box-shadow:none;
  7360. box-shadow:none;
  7361. font-family:'Microsoft YaHei', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:10px;
  7365. }
  7366. #u15713 {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:808px;
  7370. top:144px;
  7371. width:127px;
  7372. height:25px;
  7373. display:flex;
  7374. font-family:'Microsoft YaHei', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:10px;
  7378. }
  7379. #u15713 .text {
  7380. position:absolute;
  7381. align-self:center;
  7382. padding:2px 2px 2px 2px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u15713_div.disabled {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:127px;
  7392. height:25px;
  7393. background:inherit;
  7394. background-color:rgba(240, 240, 240, 1);
  7395. border:none;
  7396. border-radius:0px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. font-family:'Microsoft YaHei', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:10px;
  7404. }
  7405. #u15713.disabled {
  7406. }
  7407. #u15714 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:0px;
  7413. height:0px;
  7414. }
  7415. #u15715_div {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:140px;
  7421. height:30px;
  7422. background:inherit;
  7423. background-color:rgba(255, 255, 255, 1);
  7424. box-sizing:border-box;
  7425. border-width:1px;
  7426. border-style:solid;
  7427. border-color:rgba(201, 201, 201, 1);
  7428. border-radius:4px;
  7429. -moz-box-shadow:none;
  7430. -webkit-box-shadow:none;
  7431. box-shadow:none;
  7432. font-family:'Microsoft YaHei', sans-serif;
  7433. font-weight:400;
  7434. font-style:normal;
  7435. font-size:14px;
  7436. color:#CCCCCC;
  7437. text-align:left;
  7438. }
  7439. #u15715 {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:950px;
  7443. top:143px;
  7444. width:140px;
  7445. height:30px;
  7446. display:flex;
  7447. font-family:'Microsoft YaHei', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:14px;
  7451. color:#CCCCCC;
  7452. text-align:left;
  7453. }
  7454. #u15715 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:2px 8px 2px 8px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u15715_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. visibility:hidden;
  7466. }
  7467. #u15716_input {
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:127px;
  7472. height:25px;
  7473. padding:2px 2px 2px 2px;
  7474. font-family:'Microsoft YaHei', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:10px;
  7478. letter-spacing:normal;
  7479. color:#000000;
  7480. vertical-align:none;
  7481. text-align:left;
  7482. text-transform:none;
  7483. background-color:transparent;
  7484. border-color:transparent;
  7485. }
  7486. #u15716_input.disabled {
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:127px;
  7491. height:25px;
  7492. padding:2px 2px 2px 2px;
  7493. font-family:'Microsoft YaHei', sans-serif;
  7494. font-weight:400;
  7495. font-style:normal;
  7496. font-size:10px;
  7497. letter-spacing:normal;
  7498. color:#000000;
  7499. vertical-align:none;
  7500. text-align:left;
  7501. text-transform:none;
  7502. background-color:transparent;
  7503. border-color:transparent;
  7504. }
  7505. #u15716_div {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:127px;
  7511. height:25px;
  7512. background:inherit;
  7513. background-color:rgba(255, 255, 255, 1);
  7514. border:none;
  7515. border-radius:0px;
  7516. -moz-box-shadow:none;
  7517. -webkit-box-shadow:none;
  7518. box-shadow:none;
  7519. font-family:'Microsoft YaHei', sans-serif;
  7520. font-weight:400;
  7521. font-style:normal;
  7522. font-size:10px;
  7523. }
  7524. #u15716 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:958px;
  7528. top:144px;
  7529. width:127px;
  7530. height:25px;
  7531. display:flex;
  7532. font-family:'Microsoft YaHei', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:10px;
  7536. }
  7537. #u15716 .text {
  7538. position:absolute;
  7539. align-self:center;
  7540. padding:2px 2px 2px 2px;
  7541. box-sizing:border-box;
  7542. width:100%;
  7543. }
  7544. #u15716_div.disabled {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:127px;
  7550. height:25px;
  7551. background:inherit;
  7552. background-color:rgba(240, 240, 240, 1);
  7553. border:none;
  7554. border-radius:0px;
  7555. -moz-box-shadow:none;
  7556. -webkit-box-shadow:none;
  7557. box-shadow:none;
  7558. font-family:'Microsoft YaHei', sans-serif;
  7559. font-weight:400;
  7560. font-style:normal;
  7561. font-size:10px;
  7562. }
  7563. #u15716.disabled {
  7564. }
  7565. #u15717 {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:0px;
  7571. height:0px;
  7572. }
  7573. #u15718_div {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:140px;
  7579. height:30px;
  7580. background:inherit;
  7581. background-color:rgba(255, 255, 255, 1);
  7582. box-sizing:border-box;
  7583. border-width:1px;
  7584. border-style:solid;
  7585. border-color:rgba(201, 201, 201, 1);
  7586. border-radius:4px;
  7587. -moz-box-shadow:none;
  7588. -webkit-box-shadow:none;
  7589. box-shadow:none;
  7590. font-family:'Microsoft YaHei', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:14px;
  7594. color:#CCCCCC;
  7595. text-align:left;
  7596. }
  7597. #u15718 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:1250px;
  7601. top:143px;
  7602. width:140px;
  7603. height:30px;
  7604. display:flex;
  7605. font-family:'Microsoft YaHei', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:14px;
  7609. color:#CCCCCC;
  7610. text-align:left;
  7611. }
  7612. #u15718 .text {
  7613. position:absolute;
  7614. align-self:center;
  7615. padding:2px 8px 2px 8px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u15718_text {
  7620. border-width:0px;
  7621. word-wrap:break-word;
  7622. text-transform:none;
  7623. visibility:hidden;
  7624. }
  7625. #u15719_input {
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:127px;
  7630. height:25px;
  7631. padding:2px 2px 2px 2px;
  7632. font-family:'Microsoft YaHei', sans-serif;
  7633. font-weight:400;
  7634. font-style:normal;
  7635. font-size:10px;
  7636. letter-spacing:normal;
  7637. color:#000000;
  7638. vertical-align:none;
  7639. text-align:left;
  7640. text-transform:none;
  7641. background-color:transparent;
  7642. border-color:transparent;
  7643. }
  7644. #u15719_input.disabled {
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:127px;
  7649. height:25px;
  7650. padding:2px 2px 2px 2px;
  7651. font-family:'Microsoft YaHei', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:10px;
  7655. letter-spacing:normal;
  7656. color:#000000;
  7657. vertical-align:none;
  7658. text-align:left;
  7659. text-transform:none;
  7660. background-color:transparent;
  7661. border-color:transparent;
  7662. }
  7663. #u15719_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:127px;
  7669. height:25px;
  7670. background:inherit;
  7671. background-color:rgba(255, 255, 255, 1);
  7672. border:none;
  7673. border-radius:0px;
  7674. -moz-box-shadow:none;
  7675. -webkit-box-shadow:none;
  7676. box-shadow:none;
  7677. font-family:'Microsoft YaHei', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:10px;
  7681. }
  7682. #u15719 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:1258px;
  7686. top:144px;
  7687. width:127px;
  7688. height:25px;
  7689. display:flex;
  7690. font-family:'Microsoft YaHei', sans-serif;
  7691. font-weight:400;
  7692. font-style:normal;
  7693. font-size:10px;
  7694. }
  7695. #u15719 .text {
  7696. position:absolute;
  7697. align-self:center;
  7698. padding:2px 2px 2px 2px;
  7699. box-sizing:border-box;
  7700. width:100%;
  7701. }
  7702. #u15719_div.disabled {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:127px;
  7708. height:25px;
  7709. background:inherit;
  7710. background-color:rgba(240, 240, 240, 1);
  7711. border:none;
  7712. border-radius:0px;
  7713. -moz-box-shadow:none;
  7714. -webkit-box-shadow:none;
  7715. box-shadow:none;
  7716. font-family:'Microsoft YaHei', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:10px;
  7720. }
  7721. #u15719.disabled {
  7722. }
  7723. #u15720 {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:0px;
  7728. width:0px;
  7729. height:0px;
  7730. }
  7731. #u15721_div {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:140px;
  7737. height:30px;
  7738. background:inherit;
  7739. background-color:rgba(255, 255, 255, 1);
  7740. box-sizing:border-box;
  7741. border-width:1px;
  7742. border-style:solid;
  7743. border-color:rgba(215, 215, 215, 1);
  7744. border-radius:4px;
  7745. -moz-box-shadow:none;
  7746. -webkit-box-shadow:none;
  7747. box-shadow:none;
  7748. font-size:14px;
  7749. }
  7750. #u15721 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:1100px;
  7754. top:143px;
  7755. width:140px;
  7756. height:30px;
  7757. display:flex;
  7758. font-size:14px;
  7759. }
  7760. #u15721 .text {
  7761. position:absolute;
  7762. align-self:center;
  7763. padding:2px 2px 2px 2px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u15721_text {
  7768. border-width:0px;
  7769. word-wrap:break-word;
  7770. text-transform:none;
  7771. visibility:hidden;
  7772. }
  7773. #u15722_input {
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:134px;
  7778. height:23px;
  7779. padding:2px 2px 2px 2px;
  7780. font-family:'ArialMT', 'Arial', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:14px;
  7784. letter-spacing:normal;
  7785. color:#AAAAAA;
  7786. vertical-align:none;
  7787. text-align:left;
  7788. text-transform:none;
  7789. background-color:transparent;
  7790. border-color:transparent;
  7791. }
  7792. #u15722_input.disabled {
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:134px;
  7797. height:23px;
  7798. padding:2px 2px 2px 2px;
  7799. font-family:'ArialMT', 'Arial', sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:14px;
  7803. letter-spacing:normal;
  7804. color:#AAAAAA;
  7805. vertical-align:none;
  7806. text-align:left;
  7807. text-transform:none;
  7808. background-color:transparent;
  7809. border-color:transparent;
  7810. }
  7811. #u15722_div {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:134px;
  7817. height:23px;
  7818. background:inherit;
  7819. background-color:rgba(255, 255, 255, 1);
  7820. border:none;
  7821. border-radius:0px;
  7822. -moz-box-shadow:none;
  7823. -webkit-box-shadow:none;
  7824. box-shadow:none;
  7825. font-size:14px;
  7826. color:#AAAAAA;
  7827. }
  7828. #u15722 {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:1104px;
  7832. top:145px;
  7833. width:134px;
  7834. height:23px;
  7835. display:flex;
  7836. font-size:14px;
  7837. color:#AAAAAA;
  7838. }
  7839. #u15722 .text {
  7840. position:absolute;
  7841. align-self:flex-start;
  7842. padding:2px 2px 2px 2px;
  7843. box-sizing:border-box;
  7844. width:100%;
  7845. }
  7846. #u15722_div.disabled {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:134px;
  7852. height:23px;
  7853. background:inherit;
  7854. background-color:rgba(240, 240, 240, 1);
  7855. border:none;
  7856. border-radius:0px;
  7857. -moz-box-shadow:none;
  7858. -webkit-box-shadow:none;
  7859. box-shadow:none;
  7860. font-size:14px;
  7861. color:#AAAAAA;
  7862. }
  7863. #u15722.disabled {
  7864. }
  7865. .u15722_input_option {
  7866. font-size:14px;
  7867. }
  7868. #u15723 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:0px;
  7872. top:0px;
  7873. width:0px;
  7874. height:0px;
  7875. }
  7876. #u15724_div {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:140px;
  7882. height:30px;
  7883. background:inherit;
  7884. background-color:rgba(255, 255, 255, 1);
  7885. box-sizing:border-box;
  7886. border-width:1px;
  7887. border-style:solid;
  7888. border-color:rgba(215, 215, 215, 1);
  7889. border-radius:4px;
  7890. -moz-box-shadow:none;
  7891. -webkit-box-shadow:none;
  7892. box-shadow:none;
  7893. font-size:14px;
  7894. }
  7895. #u15724 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:350px;
  7899. top:143px;
  7900. width:140px;
  7901. height:30px;
  7902. display:flex;
  7903. font-size:14px;
  7904. }
  7905. #u15724 .text {
  7906. position:absolute;
  7907. align-self:center;
  7908. padding:2px 2px 2px 2px;
  7909. box-sizing:border-box;
  7910. width:100%;
  7911. }
  7912. #u15724_text {
  7913. border-width:0px;
  7914. word-wrap:break-word;
  7915. text-transform:none;
  7916. visibility:hidden;
  7917. }
  7918. #u15725_input {
  7919. position:absolute;
  7920. left:0px;
  7921. top:0px;
  7922. width:134px;
  7923. height:23px;
  7924. padding:2px 2px 2px 2px;
  7925. font-family:'ArialMT', 'Arial', sans-serif;
  7926. font-weight:400;
  7927. font-style:normal;
  7928. font-size:14px;
  7929. letter-spacing:normal;
  7930. color:#AAAAAA;
  7931. vertical-align:none;
  7932. text-align:left;
  7933. text-transform:none;
  7934. background-color:transparent;
  7935. border-color:transparent;
  7936. }
  7937. #u15725_input.disabled {
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:134px;
  7942. height:23px;
  7943. padding:2px 2px 2px 2px;
  7944. font-family:'ArialMT', 'Arial', sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:14px;
  7948. letter-spacing:normal;
  7949. color:#AAAAAA;
  7950. vertical-align:none;
  7951. text-align:left;
  7952. text-transform:none;
  7953. background-color:transparent;
  7954. border-color:transparent;
  7955. }
  7956. #u15725_div {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:0px;
  7960. top:0px;
  7961. width:134px;
  7962. height:23px;
  7963. background:inherit;
  7964. background-color:rgba(255, 255, 255, 1);
  7965. border:none;
  7966. border-radius:0px;
  7967. -moz-box-shadow:none;
  7968. -webkit-box-shadow:none;
  7969. box-shadow:none;
  7970. font-size:14px;
  7971. color:#AAAAAA;
  7972. }
  7973. #u15725 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:354px;
  7977. top:145px;
  7978. width:134px;
  7979. height:23px;
  7980. display:flex;
  7981. font-size:14px;
  7982. color:#AAAAAA;
  7983. }
  7984. #u15725 .text {
  7985. position:absolute;
  7986. align-self:flex-start;
  7987. padding:2px 2px 2px 2px;
  7988. box-sizing:border-box;
  7989. width:100%;
  7990. }
  7991. #u15725_div.disabled {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:134px;
  7997. height:23px;
  7998. background:inherit;
  7999. background-color:rgba(240, 240, 240, 1);
  8000. border:none;
  8001. border-radius:0px;
  8002. -moz-box-shadow:none;
  8003. -webkit-box-shadow:none;
  8004. box-shadow:none;
  8005. font-size:14px;
  8006. color:#AAAAAA;
  8007. }
  8008. #u15725.disabled {
  8009. }
  8010. .u15725_input_option {
  8011. font-size:14px;
  8012. }
  8013. #u15726_div {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:680px;
  8019. height:44px;
  8020. background:inherit;
  8021. background-color:rgba(255, 255, 255, 0);
  8022. border:none;
  8023. border-top:0px;
  8024. border-right:0px;
  8025. border-bottom:0px;
  8026. border-radius:0px;
  8027. border-top-left-radius:0px;
  8028. border-bottom-left-radius:0px;
  8029. -moz-box-shadow:none;
  8030. -webkit-box-shadow:none;
  8031. box-shadow:none;
  8032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:12px;
  8036. color:#D9001B;
  8037. }
  8038. #u15726 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:685px;
  8042. top:490px;
  8043. width:680px;
  8044. height:44px;
  8045. display:flex;
  8046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8047. font-weight:400;
  8048. font-style:normal;
  8049. font-size:12px;
  8050. color:#D9001B;
  8051. }
  8052. #u15726 .text {
  8053. position:absolute;
  8054. align-self:center;
  8055. padding:5px 0px 5px 0px;
  8056. box-sizing:border-box;
  8057. width:100%;
  8058. }
  8059. #u15726_text {
  8060. border-width:0px;
  8061. white-space:nowrap;
  8062. text-transform:none;
  8063. }
  8064. #u15727 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:0px;
  8070. height:0px;
  8071. }
  8072. #u15728_div {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:140px;
  8078. height:30px;
  8079. background:inherit;
  8080. background-color:rgba(255, 255, 255, 1);
  8081. box-sizing:border-box;
  8082. border-width:1px;
  8083. border-style:solid;
  8084. border-color:rgba(215, 215, 215, 1);
  8085. border-radius:4px;
  8086. -moz-box-shadow:none;
  8087. -webkit-box-shadow:none;
  8088. box-shadow:none;
  8089. font-size:14px;
  8090. }
  8091. #u15728 {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:648px;
  8095. top:145px;
  8096. width:140px;
  8097. height:30px;
  8098. display:flex;
  8099. font-size:14px;
  8100. }
  8101. #u15728 .text {
  8102. position:absolute;
  8103. align-self:center;
  8104. padding:2px 2px 2px 2px;
  8105. box-sizing:border-box;
  8106. width:100%;
  8107. }
  8108. #u15728_text {
  8109. border-width:0px;
  8110. word-wrap:break-word;
  8111. text-transform:none;
  8112. visibility:hidden;
  8113. }
  8114. #u15729_input {
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:134px;
  8119. height:23px;
  8120. padding:2px 2px 2px 2px;
  8121. font-family:'ArialMT', 'Arial', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:14px;
  8125. letter-spacing:normal;
  8126. color:#AAAAAA;
  8127. vertical-align:none;
  8128. text-align:left;
  8129. text-transform:none;
  8130. background-color:transparent;
  8131. border-color:transparent;
  8132. }
  8133. #u15729_input.disabled {
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:134px;
  8138. height:23px;
  8139. padding:2px 2px 2px 2px;
  8140. font-family:'ArialMT', 'Arial', sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. font-size:14px;
  8144. letter-spacing:normal;
  8145. color:#AAAAAA;
  8146. vertical-align:none;
  8147. text-align:left;
  8148. text-transform:none;
  8149. background-color:transparent;
  8150. border-color:transparent;
  8151. }
  8152. #u15729_div {
  8153. border-width:0px;
  8154. position:absolute;
  8155. left:0px;
  8156. top:0px;
  8157. width:134px;
  8158. height:23px;
  8159. background:inherit;
  8160. background-color:rgba(255, 255, 255, 1);
  8161. border:none;
  8162. border-radius:0px;
  8163. -moz-box-shadow:none;
  8164. -webkit-box-shadow:none;
  8165. box-shadow:none;
  8166. font-size:14px;
  8167. color:#AAAAAA;
  8168. }
  8169. #u15729 {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:652px;
  8173. top:147px;
  8174. width:134px;
  8175. height:23px;
  8176. display:flex;
  8177. font-size:14px;
  8178. color:#AAAAAA;
  8179. }
  8180. #u15729 .text {
  8181. position:absolute;
  8182. align-self:flex-start;
  8183. padding:2px 2px 2px 2px;
  8184. box-sizing:border-box;
  8185. width:100%;
  8186. }
  8187. #u15729_div.disabled {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:0px;
  8191. top:0px;
  8192. width:134px;
  8193. height:23px;
  8194. background:inherit;
  8195. background-color:rgba(240, 240, 240, 1);
  8196. border:none;
  8197. border-radius:0px;
  8198. -moz-box-shadow:none;
  8199. -webkit-box-shadow:none;
  8200. box-shadow:none;
  8201. font-size:14px;
  8202. color:#AAAAAA;
  8203. }
  8204. #u15729.disabled {
  8205. }
  8206. .u15729_input_option {
  8207. font-size:14px;
  8208. }
  8209. #u15730 {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:0px;
  8213. top:0px;
  8214. width:0px;
  8215. height:0px;
  8216. }
  8217. #u15731_div {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:0px;
  8221. top:0px;
  8222. width:140px;
  8223. height:30px;
  8224. background:inherit;
  8225. background-color:rgba(255, 255, 255, 1);
  8226. box-sizing:border-box;
  8227. border-width:1px;
  8228. border-style:solid;
  8229. border-color:rgba(215, 215, 215, 1);
  8230. border-radius:4px;
  8231. -moz-box-shadow:none;
  8232. -webkit-box-shadow:none;
  8233. box-shadow:none;
  8234. font-size:14px;
  8235. }
  8236. #u15731 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:498px;
  8240. top:145px;
  8241. width:140px;
  8242. height:30px;
  8243. display:flex;
  8244. font-size:14px;
  8245. }
  8246. #u15731 .text {
  8247. position:absolute;
  8248. align-self:center;
  8249. padding:2px 2px 2px 2px;
  8250. box-sizing:border-box;
  8251. width:100%;
  8252. }
  8253. #u15731_text {
  8254. border-width:0px;
  8255. word-wrap:break-word;
  8256. text-transform:none;
  8257. visibility:hidden;
  8258. }
  8259. #u15732_input {
  8260. position:absolute;
  8261. left:0px;
  8262. top:0px;
  8263. width:134px;
  8264. height:23px;
  8265. padding:2px 2px 2px 2px;
  8266. font-family:'ArialMT', 'Arial', sans-serif;
  8267. font-weight:400;
  8268. font-style:normal;
  8269. font-size:14px;
  8270. letter-spacing:normal;
  8271. color:#AAAAAA;
  8272. vertical-align:none;
  8273. text-align:left;
  8274. text-transform:none;
  8275. background-color:transparent;
  8276. border-color:transparent;
  8277. }
  8278. #u15732_input.disabled {
  8279. position:absolute;
  8280. left:0px;
  8281. top:0px;
  8282. width:134px;
  8283. height:23px;
  8284. padding:2px 2px 2px 2px;
  8285. font-family:'ArialMT', 'Arial', sans-serif;
  8286. font-weight:400;
  8287. font-style:normal;
  8288. font-size:14px;
  8289. letter-spacing:normal;
  8290. color:#AAAAAA;
  8291. vertical-align:none;
  8292. text-align:left;
  8293. text-transform:none;
  8294. background-color:transparent;
  8295. border-color:transparent;
  8296. }
  8297. #u15732_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:134px;
  8303. height:23px;
  8304. background:inherit;
  8305. background-color:rgba(255, 255, 255, 1);
  8306. border:none;
  8307. border-radius:0px;
  8308. -moz-box-shadow:none;
  8309. -webkit-box-shadow:none;
  8310. box-shadow:none;
  8311. font-size:14px;
  8312. color:#AAAAAA;
  8313. }
  8314. #u15732 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:502px;
  8318. top:147px;
  8319. width:134px;
  8320. height:23px;
  8321. display:flex;
  8322. font-size:14px;
  8323. color:#AAAAAA;
  8324. }
  8325. #u15732 .text {
  8326. position:absolute;
  8327. align-self:flex-start;
  8328. padding:2px 2px 2px 2px;
  8329. box-sizing:border-box;
  8330. width:100%;
  8331. }
  8332. #u15732_div.disabled {
  8333. border-width:0px;
  8334. position:absolute;
  8335. left:0px;
  8336. top:0px;
  8337. width:134px;
  8338. height:23px;
  8339. background:inherit;
  8340. background-color:rgba(240, 240, 240, 1);
  8341. border:none;
  8342. border-radius:0px;
  8343. -moz-box-shadow:none;
  8344. -webkit-box-shadow:none;
  8345. box-shadow:none;
  8346. font-size:14px;
  8347. color:#AAAAAA;
  8348. }
  8349. #u15732.disabled {
  8350. }
  8351. .u15732_input_option {
  8352. font-size:14px;
  8353. }
  8354. #u15733_div {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:115px;
  8360. height:30px;
  8361. background:inherit;
  8362. background-color:rgba(255, 255, 255, 1);
  8363. border:none;
  8364. border-radius:4px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8369. font-weight:400;
  8370. font-style:normal;
  8371. font-size:12px;
  8372. text-decoration:underline ;
  8373. color:#298FFF;
  8374. }
  8375. #u15733 {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:1446px;
  8379. top:232px;
  8380. width:115px;
  8381. height:30px;
  8382. display:flex;
  8383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8384. font-weight:400;
  8385. font-style:normal;
  8386. font-size:12px;
  8387. text-decoration:underline ;
  8388. color:#298FFF;
  8389. }
  8390. #u15733 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:5px 15px 5px 15px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u15733_text {
  8398. border-width:0px;
  8399. white-space:nowrap;
  8400. text-transform:none;
  8401. }
  8402. #u15734 {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:0px;
  8408. height:0px;
  8409. }
  8410. #u15735_div {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:0px;
  8414. top:0px;
  8415. width:140px;
  8416. height:30px;
  8417. background:inherit;
  8418. background-color:rgba(255, 255, 255, 1);
  8419. box-sizing:border-box;
  8420. border-width:1px;
  8421. border-style:solid;
  8422. border-color:rgba(215, 215, 215, 1);
  8423. border-radius:4px;
  8424. -moz-box-shadow:none;
  8425. -webkit-box-shadow:none;
  8426. box-shadow:none;
  8427. font-size:14px;
  8428. }
  8429. #u15735 {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:1400px;
  8433. top:143px;
  8434. width:140px;
  8435. height:30px;
  8436. display:flex;
  8437. font-size:14px;
  8438. }
  8439. #u15735 .text {
  8440. position:absolute;
  8441. align-self:center;
  8442. padding:2px 2px 2px 2px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u15735_text {
  8447. border-width:0px;
  8448. word-wrap:break-word;
  8449. text-transform:none;
  8450. visibility:hidden;
  8451. }
  8452. #u15736_input {
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:134px;
  8457. height:23px;
  8458. padding:2px 2px 2px 2px;
  8459. font-family:'ArialMT', 'Arial', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:14px;
  8463. letter-spacing:normal;
  8464. color:#AAAAAA;
  8465. vertical-align:none;
  8466. text-align:left;
  8467. text-transform:none;
  8468. background-color:transparent;
  8469. border-color:transparent;
  8470. }
  8471. #u15736_input.disabled {
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:134px;
  8476. height:23px;
  8477. padding:2px 2px 2px 2px;
  8478. font-family:'ArialMT', 'Arial', sans-serif;
  8479. font-weight:400;
  8480. font-style:normal;
  8481. font-size:14px;
  8482. letter-spacing:normal;
  8483. color:#AAAAAA;
  8484. vertical-align:none;
  8485. text-align:left;
  8486. text-transform:none;
  8487. background-color:transparent;
  8488. border-color:transparent;
  8489. }
  8490. #u15736_div {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:134px;
  8496. height:23px;
  8497. background:inherit;
  8498. background-color:rgba(255, 255, 255, 1);
  8499. border:none;
  8500. border-radius:0px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. font-size:14px;
  8505. color:#AAAAAA;
  8506. }
  8507. #u15736 {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:1404px;
  8511. top:145px;
  8512. width:134px;
  8513. height:23px;
  8514. display:flex;
  8515. font-size:14px;
  8516. color:#AAAAAA;
  8517. }
  8518. #u15736 .text {
  8519. position:absolute;
  8520. align-self:flex-start;
  8521. padding:2px 2px 2px 2px;
  8522. box-sizing:border-box;
  8523. width:100%;
  8524. }
  8525. #u15736_div.disabled {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:134px;
  8531. height:23px;
  8532. background:inherit;
  8533. background-color:rgba(240, 240, 240, 1);
  8534. border:none;
  8535. border-radius:0px;
  8536. -moz-box-shadow:none;
  8537. -webkit-box-shadow:none;
  8538. box-shadow:none;
  8539. font-size:14px;
  8540. color:#AAAAAA;
  8541. }
  8542. #u15736.disabled {
  8543. }
  8544. .u15736_input_option {
  8545. font-size:14px;
  8546. }
  8547. #u15737 {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:0px;
  8551. top:0px;
  8552. width:0px;
  8553. height:0px;
  8554. }
  8555. #u15738_div {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:1000px;
  8561. height:1196px;
  8562. background:inherit;
  8563. background-color:rgba(255, 255, 255, 1);
  8564. box-sizing:border-box;
  8565. border-width:1px;
  8566. border-style:solid;
  8567. border-color:rgba(215, 215, 215, 1);
  8568. border-radius:0px;
  8569. -moz-box-shadow:none;
  8570. -webkit-box-shadow:none;
  8571. box-shadow:none;
  8572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:14px;
  8576. color:#AAAAAA;
  8577. text-align:center;
  8578. line-height:30px;
  8579. }
  8580. #u15738 {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:1620px;
  8584. top:47px;
  8585. width:1000px;
  8586. height:1196px;
  8587. display:flex;
  8588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8589. font-weight:400;
  8590. font-style:normal;
  8591. font-size:14px;
  8592. color:#AAAAAA;
  8593. text-align:center;
  8594. line-height:30px;
  8595. }
  8596. #u15738 .text {
  8597. position:absolute;
  8598. align-self:center;
  8599. padding:5px 10px 5px 10px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u15738_text {
  8604. border-width:0px;
  8605. word-wrap:break-word;
  8606. text-transform:none;
  8607. visibility:hidden;
  8608. }
  8609. #u15739_div {
  8610. border-width:0px;
  8611. position:absolute;
  8612. left:0px;
  8613. top:0px;
  8614. width:137px;
  8615. height:35px;
  8616. background:inherit;
  8617. background-color:rgba(255, 255, 255, 0);
  8618. border:none;
  8619. border-top:0px;
  8620. border-right:0px;
  8621. border-bottom:0px;
  8622. border-radius:0px;
  8623. border-top-left-radius:0px;
  8624. border-bottom-left-radius:0px;
  8625. -moz-box-shadow:none;
  8626. -webkit-box-shadow:none;
  8627. box-shadow:none;
  8628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8629. font-weight:500;
  8630. font-style:normal;
  8631. font-size:18px;
  8632. }
  8633. #u15739 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:1640px;
  8637. top:65px;
  8638. width:137px;
  8639. height:35px;
  8640. display:flex;
  8641. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8642. font-weight:500;
  8643. font-style:normal;
  8644. font-size:18px;
  8645. }
  8646. #u15739 .text {
  8647. position:absolute;
  8648. align-self:center;
  8649. padding:5px 10px 5px 0px;
  8650. box-sizing:border-box;
  8651. width:100%;
  8652. }
  8653. #u15739_text {
  8654. border-width:0px;
  8655. white-space:nowrap;
  8656. text-transform:none;
  8657. }
  8658. #u15740 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:0px;
  8664. height:0px;
  8665. }
  8666. #u15741_div {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:0px;
  8670. top:0px;
  8671. width:40px;
  8672. height:40px;
  8673. background:inherit;
  8674. background-color:rgba(255, 255, 255, 0);
  8675. border:none;
  8676. border-top:0px;
  8677. border-right:0px;
  8678. border-bottom:0px;
  8679. border-radius:0px;
  8680. border-top-left-radius:0px;
  8681. border-bottom-left-radius:0px;
  8682. -moz-box-shadow:none;
  8683. -webkit-box-shadow:none;
  8684. box-shadow:none;
  8685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8686. font-weight:500;
  8687. font-style:normal;
  8688. font-size:18px;
  8689. text-align:center;
  8690. }
  8691. #u15741 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:2580px;
  8695. top:47px;
  8696. width:40px;
  8697. height:40px;
  8698. display:flex;
  8699. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8700. font-weight:500;
  8701. font-style:normal;
  8702. font-size:18px;
  8703. text-align:center;
  8704. }
  8705. #u15741 .text {
  8706. position:absolute;
  8707. align-self:center;
  8708. padding:5px 10px 5px 0px;
  8709. box-sizing:border-box;
  8710. width:100%;
  8711. }
  8712. #u15741_text {
  8713. border-width:0px;
  8714. word-wrap:break-word;
  8715. text-transform:none;
  8716. }
  8717. #u15742_img {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:0px;
  8721. top:0px;
  8722. width:13px;
  8723. height:13px;
  8724. }
  8725. #u15742 {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:2568px;
  8729. top:63px;
  8730. width:13px;
  8731. height:13px;
  8732. display:flex;
  8733. }
  8734. #u15742 .text {
  8735. position:absolute;
  8736. align-self:center;
  8737. padding:2px 2px 2px 2px;
  8738. box-sizing:border-box;
  8739. width:100%;
  8740. }
  8741. #u15742_text {
  8742. border-width:0px;
  8743. word-wrap:break-word;
  8744. text-transform:none;
  8745. visibility:hidden;
  8746. }
  8747. #u15743 {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:0px;
  8751. top:0px;
  8752. width:0px;
  8753. height:0px;
  8754. }
  8755. #u15744_div {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:1000px;
  8761. height:50px;
  8762. background:inherit;
  8763. background-color:rgba(255, 255, 255, 1);
  8764. box-sizing:border-box;
  8765. border-width:1px;
  8766. border-style:solid;
  8767. border-color:rgba(215, 215, 215, 1);
  8768. border-radius:0px;
  8769. -moz-box-shadow:none;
  8770. -webkit-box-shadow:none;
  8771. box-shadow:none;
  8772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8773. font-weight:400;
  8774. font-style:normal;
  8775. font-size:14px;
  8776. color:#AAAAAA;
  8777. text-align:center;
  8778. line-height:30px;
  8779. }
  8780. #u15744 {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:1620px;
  8784. top:1193px;
  8785. width:1000px;
  8786. height:50px;
  8787. display:flex;
  8788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8789. font-weight:400;
  8790. font-style:normal;
  8791. font-size:14px;
  8792. color:#AAAAAA;
  8793. text-align:center;
  8794. line-height:30px;
  8795. }
  8796. #u15744 .text {
  8797. position:absolute;
  8798. align-self:center;
  8799. padding:5px 10px 5px 10px;
  8800. box-sizing:border-box;
  8801. width:100%;
  8802. }
  8803. #u15744_text {
  8804. border-width:0px;
  8805. word-wrap:break-word;
  8806. text-transform:none;
  8807. visibility:hidden;
  8808. }
  8809. #u15745_div {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:80px;
  8815. height:30px;
  8816. background:inherit;
  8817. background-color:rgba(255, 255, 255, 1);
  8818. box-sizing:border-box;
  8819. border-width:1px;
  8820. border-style:solid;
  8821. border-color:rgba(121, 121, 121, 1);
  8822. border-radius:4px;
  8823. -moz-box-shadow:none;
  8824. -webkit-box-shadow:none;
  8825. box-shadow:none;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. font-size:14px;
  8830. }
  8831. #u15745 {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:2520px;
  8835. top:1203px;
  8836. width:80px;
  8837. height:30px;
  8838. display:flex;
  8839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:14px;
  8843. }
  8844. #u15745 .text {
  8845. position:absolute;
  8846. align-self:center;
  8847. padding:2px 2px 2px 2px;
  8848. box-sizing:border-box;
  8849. width:100%;
  8850. }
  8851. #u15745_text {
  8852. border-width:0px;
  8853. word-wrap:break-word;
  8854. text-transform:none;
  8855. }
  8856. #u15746 {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:1640px;
  8860. top:170px;
  8861. width:960px;
  8862. height:213px;
  8863. }
  8864. #u15747_img {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:59px;
  8870. height:30px;
  8871. }
  8872. #u15747 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:59px;
  8878. height:30px;
  8879. display:flex;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. color:#FFFFFF;
  8884. }
  8885. #u15747 .text {
  8886. position:absolute;
  8887. align-self:center;
  8888. padding:2px 2px 2px 2px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u15747_text {
  8893. border-width:0px;
  8894. word-wrap:break-word;
  8895. text-transform:none;
  8896. }
  8897. #u15748_img {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:113px;
  8903. height:30px;
  8904. }
  8905. #u15748 {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:59px;
  8909. top:0px;
  8910. width:113px;
  8911. height:30px;
  8912. display:flex;
  8913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8914. font-weight:400;
  8915. font-style:normal;
  8916. color:#FFFFFF;
  8917. }
  8918. #u15748 .text {
  8919. position:absolute;
  8920. align-self:center;
  8921. padding:2px 2px 2px 2px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u15748_text {
  8926. border-width:0px;
  8927. word-wrap:break-word;
  8928. text-transform:none;
  8929. }
  8930. #u15749_img {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:0px;
  8934. top:0px;
  8935. width:113px;
  8936. height:30px;
  8937. }
  8938. #u15749 {
  8939. border-width:0px;
  8940. position:absolute;
  8941. left:172px;
  8942. top:0px;
  8943. width:113px;
  8944. height:30px;
  8945. display:flex;
  8946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8947. font-weight:400;
  8948. font-style:normal;
  8949. color:#FFFFFF;
  8950. }
  8951. #u15749 .text {
  8952. position:absolute;
  8953. align-self:center;
  8954. padding:2px 2px 2px 2px;
  8955. box-sizing:border-box;
  8956. width:100%;
  8957. }
  8958. #u15749_text {
  8959. border-width:0px;
  8960. word-wrap:break-word;
  8961. text-transform:none;
  8962. }
  8963. #u15750_img {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:113px;
  8969. height:30px;
  8970. }
  8971. #u15750 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:285px;
  8975. top:0px;
  8976. width:113px;
  8977. height:30px;
  8978. display:flex;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. color:#FFFFFF;
  8983. }
  8984. #u15750 .text {
  8985. position:absolute;
  8986. align-self:center;
  8987. padding:2px 2px 2px 2px;
  8988. box-sizing:border-box;
  8989. width:100%;
  8990. }
  8991. #u15750_text {
  8992. border-width:0px;
  8993. word-wrap:break-word;
  8994. text-transform:none;
  8995. }
  8996. #u15751_img {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:113px;
  9002. height:30px;
  9003. }
  9004. #u15751 {
  9005. border-width:0px;
  9006. position:absolute;
  9007. left:398px;
  9008. top:0px;
  9009. width:113px;
  9010. height:30px;
  9011. display:flex;
  9012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9013. font-weight:400;
  9014. font-style:normal;
  9015. color:#FFFFFF;
  9016. }
  9017. #u15751 .text {
  9018. position:absolute;
  9019. align-self:center;
  9020. padding:2px 2px 2px 2px;
  9021. box-sizing:border-box;
  9022. width:100%;
  9023. }
  9024. #u15751_text {
  9025. border-width:0px;
  9026. word-wrap:break-word;
  9027. text-transform:none;
  9028. }
  9029. #u15752_img {
  9030. border-width:0px;
  9031. position:absolute;
  9032. left:0px;
  9033. top:0px;
  9034. width:113px;
  9035. height:30px;
  9036. }
  9037. #u15752 {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:511px;
  9041. top:0px;
  9042. width:113px;
  9043. height:30px;
  9044. display:flex;
  9045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9046. font-weight:400;
  9047. font-style:normal;
  9048. color:#FFFFFF;
  9049. }
  9050. #u15752 .text {
  9051. position:absolute;
  9052. align-self:center;
  9053. padding:2px 2px 2px 2px;
  9054. box-sizing:border-box;
  9055. width:100%;
  9056. }
  9057. #u15752_text {
  9058. border-width:0px;
  9059. word-wrap:break-word;
  9060. text-transform:none;
  9061. }
  9062. #u15753_img {
  9063. border-width:0px;
  9064. position:absolute;
  9065. left:0px;
  9066. top:0px;
  9067. width:113px;
  9068. height:30px;
  9069. }
  9070. #u15753 {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:624px;
  9074. top:0px;
  9075. width:113px;
  9076. height:30px;
  9077. display:flex;
  9078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9079. font-weight:400;
  9080. font-style:normal;
  9081. color:#FFFFFF;
  9082. }
  9083. #u15753 .text {
  9084. position:absolute;
  9085. align-self:center;
  9086. padding:2px 2px 2px 2px;
  9087. box-sizing:border-box;
  9088. width:100%;
  9089. }
  9090. #u15753_text {
  9091. border-width:0px;
  9092. word-wrap:break-word;
  9093. text-transform:none;
  9094. }
  9095. #u15754_img {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:0px;
  9099. top:0px;
  9100. width:113px;
  9101. height:30px;
  9102. }
  9103. #u15754 {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:737px;
  9107. top:0px;
  9108. width:113px;
  9109. height:30px;
  9110. display:flex;
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. color:#FFFFFF;
  9115. }
  9116. #u15754 .text {
  9117. position:absolute;
  9118. align-self:center;
  9119. padding:2px 2px 2px 2px;
  9120. box-sizing:border-box;
  9121. width:100%;
  9122. }
  9123. #u15754_text {
  9124. border-width:0px;
  9125. word-wrap:break-word;
  9126. text-transform:none;
  9127. }
  9128. #u15755_img {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:0px;
  9132. top:0px;
  9133. width:110px;
  9134. height:30px;
  9135. }
  9136. #u15755 {
  9137. border-width:0px;
  9138. position:absolute;
  9139. left:850px;
  9140. top:0px;
  9141. width:110px;
  9142. height:30px;
  9143. display:flex;
  9144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9145. font-weight:400;
  9146. font-style:normal;
  9147. color:#FFFFFF;
  9148. }
  9149. #u15755 .text {
  9150. position:absolute;
  9151. align-self:center;
  9152. padding:2px 2px 2px 2px;
  9153. box-sizing:border-box;
  9154. width:100%;
  9155. }
  9156. #u15755_text {
  9157. border-width:0px;
  9158. word-wrap:break-word;
  9159. text-transform:none;
  9160. }
  9161. #u15756_img {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:59px;
  9167. height:40px;
  9168. }
  9169. #u15756 {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:30px;
  9174. width:59px;
  9175. height:40px;
  9176. display:flex;
  9177. }
  9178. #u15756 .text {
  9179. position:absolute;
  9180. align-self:center;
  9181. padding:2px 2px 2px 2px;
  9182. box-sizing:border-box;
  9183. width:100%;
  9184. }
  9185. #u15756_text {
  9186. border-width:0px;
  9187. word-wrap:break-word;
  9188. text-transform:none;
  9189. }
  9190. #u15757_img {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:0px;
  9194. top:0px;
  9195. width:113px;
  9196. height:40px;
  9197. }
  9198. #u15757 {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:59px;
  9202. top:30px;
  9203. width:113px;
  9204. height:40px;
  9205. display:flex;
  9206. }
  9207. #u15757 .text {
  9208. position:absolute;
  9209. align-self:center;
  9210. padding:2px 2px 2px 2px;
  9211. box-sizing:border-box;
  9212. width:100%;
  9213. }
  9214. #u15757_text {
  9215. border-width:0px;
  9216. word-wrap:break-word;
  9217. text-transform:none;
  9218. }
  9219. #u15758_img {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:113px;
  9225. height:40px;
  9226. }
  9227. #u15758 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:172px;
  9231. top:30px;
  9232. width:113px;
  9233. height:40px;
  9234. display:flex;
  9235. }
  9236. #u15758 .text {
  9237. position:absolute;
  9238. align-self:center;
  9239. padding:2px 2px 2px 2px;
  9240. box-sizing:border-box;
  9241. width:100%;
  9242. }
  9243. #u15758_text {
  9244. border-width:0px;
  9245. word-wrap:break-word;
  9246. text-transform:none;
  9247. }
  9248. #u15759_img {
  9249. border-width:0px;
  9250. position:absolute;
  9251. left:0px;
  9252. top:0px;
  9253. width:113px;
  9254. height:40px;
  9255. }
  9256. #u15759 {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:285px;
  9260. top:30px;
  9261. width:113px;
  9262. height:40px;
  9263. display:flex;
  9264. }
  9265. #u15759 .text {
  9266. position:absolute;
  9267. align-self:center;
  9268. padding:2px 2px 2px 2px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u15759_text {
  9273. border-width:0px;
  9274. word-wrap:break-word;
  9275. text-transform:none;
  9276. }
  9277. #u15760_img {
  9278. border-width:0px;
  9279. position:absolute;
  9280. left:0px;
  9281. top:0px;
  9282. width:113px;
  9283. height:40px;
  9284. }
  9285. #u15760 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:398px;
  9289. top:30px;
  9290. width:113px;
  9291. height:40px;
  9292. display:flex;
  9293. }
  9294. #u15760 .text {
  9295. position:absolute;
  9296. align-self:center;
  9297. padding:2px 2px 2px 2px;
  9298. box-sizing:border-box;
  9299. width:100%;
  9300. }
  9301. #u15760_text {
  9302. border-width:0px;
  9303. word-wrap:break-word;
  9304. text-transform:none;
  9305. visibility:hidden;
  9306. }
  9307. #u15761_img {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:113px;
  9313. height:40px;
  9314. }
  9315. #u15761 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:511px;
  9319. top:30px;
  9320. width:113px;
  9321. height:40px;
  9322. display:flex;
  9323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9324. font-weight:400;
  9325. font-style:normal;
  9326. }
  9327. #u15761 .text {
  9328. position:absolute;
  9329. align-self:center;
  9330. padding:2px 2px 2px 2px;
  9331. box-sizing:border-box;
  9332. width:100%;
  9333. }
  9334. #u15761_text {
  9335. border-width:0px;
  9336. word-wrap:break-word;
  9337. text-transform:none;
  9338. }
  9339. #u15762_img {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:0px;
  9343. top:0px;
  9344. width:113px;
  9345. height:40px;
  9346. }
  9347. #u15762 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:624px;
  9351. top:30px;
  9352. width:113px;
  9353. height:40px;
  9354. display:flex;
  9355. }
  9356. #u15762 .text {
  9357. position:absolute;
  9358. align-self:center;
  9359. padding:2px 2px 2px 2px;
  9360. box-sizing:border-box;
  9361. width:100%;
  9362. }
  9363. #u15762_text {
  9364. border-width:0px;
  9365. word-wrap:break-word;
  9366. text-transform:none;
  9367. }
  9368. #u15763_img {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:0px;
  9372. top:0px;
  9373. width:113px;
  9374. height:40px;
  9375. }
  9376. #u15763 {
  9377. border-width:0px;
  9378. position:absolute;
  9379. left:737px;
  9380. top:30px;
  9381. width:113px;
  9382. height:40px;
  9383. display:flex;
  9384. }
  9385. #u15763 .text {
  9386. position:absolute;
  9387. align-self:center;
  9388. padding:2px 2px 2px 2px;
  9389. box-sizing:border-box;
  9390. width:100%;
  9391. }
  9392. #u15763_text {
  9393. border-width:0px;
  9394. word-wrap:break-word;
  9395. text-transform:none;
  9396. }
  9397. #u15764_img {
  9398. border-width:0px;
  9399. position:absolute;
  9400. left:0px;
  9401. top:0px;
  9402. width:110px;
  9403. height:40px;
  9404. }
  9405. #u15764 {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:850px;
  9409. top:30px;
  9410. width:110px;
  9411. height:40px;
  9412. display:flex;
  9413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9414. font-weight:400;
  9415. font-style:normal;
  9416. color:#298FFF;
  9417. }
  9418. #u15764 .text {
  9419. position:absolute;
  9420. align-self:center;
  9421. padding:2px 2px 2px 2px;
  9422. box-sizing:border-box;
  9423. width:100%;
  9424. }
  9425. #u15764_text {
  9426. border-width:0px;
  9427. word-wrap:break-word;
  9428. text-transform:none;
  9429. }
  9430. #u15765_img {
  9431. border-width:0px;
  9432. position:absolute;
  9433. left:0px;
  9434. top:0px;
  9435. width:59px;
  9436. height:30px;
  9437. }
  9438. #u15765 {
  9439. border-width:0px;
  9440. position:absolute;
  9441. left:0px;
  9442. top:70px;
  9443. width:59px;
  9444. height:30px;
  9445. display:flex;
  9446. }
  9447. #u15765 .text {
  9448. position:absolute;
  9449. align-self:center;
  9450. padding:2px 2px 2px 2px;
  9451. box-sizing:border-box;
  9452. width:100%;
  9453. }
  9454. #u15765_text {
  9455. border-width:0px;
  9456. word-wrap:break-word;
  9457. text-transform:none;
  9458. }
  9459. #u15766_img {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:0px;
  9463. top:0px;
  9464. width:113px;
  9465. height:30px;
  9466. }
  9467. #u15766 {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:59px;
  9471. top:70px;
  9472. width:113px;
  9473. height:30px;
  9474. display:flex;
  9475. }
  9476. #u15766 .text {
  9477. position:absolute;
  9478. align-self:center;
  9479. padding:2px 2px 2px 2px;
  9480. box-sizing:border-box;
  9481. width:100%;
  9482. }
  9483. #u15766_text {
  9484. border-width:0px;
  9485. word-wrap:break-word;
  9486. text-transform:none;
  9487. visibility:hidden;
  9488. }
  9489. #u15767_img {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:113px;
  9495. height:30px;
  9496. }
  9497. #u15767 {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:172px;
  9501. top:70px;
  9502. width:113px;
  9503. height:30px;
  9504. display:flex;
  9505. }
  9506. #u15767 .text {
  9507. position:absolute;
  9508. align-self:center;
  9509. padding:2px 2px 2px 2px;
  9510. box-sizing:border-box;
  9511. width:100%;
  9512. }
  9513. #u15767_text {
  9514. border-width:0px;
  9515. word-wrap:break-word;
  9516. text-transform:none;
  9517. visibility:hidden;
  9518. }
  9519. #u15768_img {
  9520. border-width:0px;
  9521. position:absolute;
  9522. left:0px;
  9523. top:0px;
  9524. width:113px;
  9525. height:30px;
  9526. }
  9527. #u15768 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:285px;
  9531. top:70px;
  9532. width:113px;
  9533. height:30px;
  9534. display:flex;
  9535. }
  9536. #u15768 .text {
  9537. position:absolute;
  9538. align-self:center;
  9539. padding:2px 2px 2px 2px;
  9540. box-sizing:border-box;
  9541. width:100%;
  9542. }
  9543. #u15768_text {
  9544. border-width:0px;
  9545. word-wrap:break-word;
  9546. text-transform:none;
  9547. visibility:hidden;
  9548. }
  9549. #u15769_img {
  9550. border-width:0px;
  9551. position:absolute;
  9552. left:0px;
  9553. top:0px;
  9554. width:113px;
  9555. height:30px;
  9556. }
  9557. #u15769 {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:398px;
  9561. top:70px;
  9562. width:113px;
  9563. height:30px;
  9564. display:flex;
  9565. }
  9566. #u15769 .text {
  9567. position:absolute;
  9568. align-self:center;
  9569. padding:2px 2px 2px 2px;
  9570. box-sizing:border-box;
  9571. width:100%;
  9572. }
  9573. #u15769_text {
  9574. border-width:0px;
  9575. word-wrap:break-word;
  9576. text-transform:none;
  9577. visibility:hidden;
  9578. }
  9579. #u15770_img {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:0px;
  9583. top:0px;
  9584. width:113px;
  9585. height:30px;
  9586. }
  9587. #u15770 {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:511px;
  9591. top:70px;
  9592. width:113px;
  9593. height:30px;
  9594. display:flex;
  9595. }
  9596. #u15770 .text {
  9597. position:absolute;
  9598. align-self:center;
  9599. padding:2px 2px 2px 2px;
  9600. box-sizing:border-box;
  9601. width:100%;
  9602. }
  9603. #u15770_text {
  9604. border-width:0px;
  9605. word-wrap:break-word;
  9606. text-transform:none;
  9607. visibility:hidden;
  9608. }
  9609. #u15771_img {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:0px;
  9613. top:0px;
  9614. width:113px;
  9615. height:30px;
  9616. }
  9617. #u15771 {
  9618. border-width:0px;
  9619. position:absolute;
  9620. left:624px;
  9621. top:70px;
  9622. width:113px;
  9623. height:30px;
  9624. display:flex;
  9625. }
  9626. #u15771 .text {
  9627. position:absolute;
  9628. align-self:center;
  9629. padding:2px 2px 2px 2px;
  9630. box-sizing:border-box;
  9631. width:100%;
  9632. }
  9633. #u15771_text {
  9634. border-width:0px;
  9635. word-wrap:break-word;
  9636. text-transform:none;
  9637. visibility:hidden;
  9638. }
  9639. #u15772_img {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:0px;
  9643. top:0px;
  9644. width:113px;
  9645. height:30px;
  9646. }
  9647. #u15772 {
  9648. border-width:0px;
  9649. position:absolute;
  9650. left:737px;
  9651. top:70px;
  9652. width:113px;
  9653. height:30px;
  9654. display:flex;
  9655. }
  9656. #u15772 .text {
  9657. position:absolute;
  9658. align-self:center;
  9659. padding:2px 2px 2px 2px;
  9660. box-sizing:border-box;
  9661. width:100%;
  9662. }
  9663. #u15772_text {
  9664. border-width:0px;
  9665. word-wrap:break-word;
  9666. text-transform:none;
  9667. visibility:hidden;
  9668. }
  9669. #u15773_img {
  9670. border-width:0px;
  9671. position:absolute;
  9672. left:0px;
  9673. top:0px;
  9674. width:110px;
  9675. height:30px;
  9676. }
  9677. #u15773 {
  9678. border-width:0px;
  9679. position:absolute;
  9680. left:850px;
  9681. top:70px;
  9682. width:110px;
  9683. height:30px;
  9684. display:flex;
  9685. }
  9686. #u15773 .text {
  9687. position:absolute;
  9688. align-self:center;
  9689. padding:2px 2px 2px 2px;
  9690. box-sizing:border-box;
  9691. width:100%;
  9692. }
  9693. #u15773_text {
  9694. border-width:0px;
  9695. word-wrap:break-word;
  9696. text-transform:none;
  9697. visibility:hidden;
  9698. }
  9699. #u15774_img {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:0px;
  9703. top:0px;
  9704. width:59px;
  9705. height:30px;
  9706. }
  9707. #u15774 {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:0px;
  9711. top:100px;
  9712. width:59px;
  9713. height:30px;
  9714. display:flex;
  9715. }
  9716. #u15774 .text {
  9717. position:absolute;
  9718. align-self:center;
  9719. padding:2px 2px 2px 2px;
  9720. box-sizing:border-box;
  9721. width:100%;
  9722. }
  9723. #u15774_text {
  9724. border-width:0px;
  9725. word-wrap:break-word;
  9726. text-transform:none;
  9727. }
  9728. #u15775_img {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:0px;
  9732. top:0px;
  9733. width:113px;
  9734. height:30px;
  9735. }
  9736. #u15775 {
  9737. border-width:0px;
  9738. position:absolute;
  9739. left:59px;
  9740. top:100px;
  9741. width:113px;
  9742. height:30px;
  9743. display:flex;
  9744. }
  9745. #u15775 .text {
  9746. position:absolute;
  9747. align-self:center;
  9748. padding:2px 2px 2px 2px;
  9749. box-sizing:border-box;
  9750. width:100%;
  9751. }
  9752. #u15775_text {
  9753. border-width:0px;
  9754. word-wrap:break-word;
  9755. text-transform:none;
  9756. visibility:hidden;
  9757. }
  9758. #u15776_img {
  9759. border-width:0px;
  9760. position:absolute;
  9761. left:0px;
  9762. top:0px;
  9763. width:113px;
  9764. height:30px;
  9765. }
  9766. #u15776 {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:172px;
  9770. top:100px;
  9771. width:113px;
  9772. height:30px;
  9773. display:flex;
  9774. }
  9775. #u15776 .text {
  9776. position:absolute;
  9777. align-self:center;
  9778. padding:2px 2px 2px 2px;
  9779. box-sizing:border-box;
  9780. width:100%;
  9781. }
  9782. #u15776_text {
  9783. border-width:0px;
  9784. word-wrap:break-word;
  9785. text-transform:none;
  9786. visibility:hidden;
  9787. }
  9788. #u15777_img {
  9789. border-width:0px;
  9790. position:absolute;
  9791. left:0px;
  9792. top:0px;
  9793. width:113px;
  9794. height:30px;
  9795. }
  9796. #u15777 {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:285px;
  9800. top:100px;
  9801. width:113px;
  9802. height:30px;
  9803. display:flex;
  9804. }
  9805. #u15777 .text {
  9806. position:absolute;
  9807. align-self:center;
  9808. padding:2px 2px 2px 2px;
  9809. box-sizing:border-box;
  9810. width:100%;
  9811. }
  9812. #u15777_text {
  9813. border-width:0px;
  9814. word-wrap:break-word;
  9815. text-transform:none;
  9816. visibility:hidden;
  9817. }
  9818. #u15778_img {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:0px;
  9822. top:0px;
  9823. width:113px;
  9824. height:30px;
  9825. }
  9826. #u15778 {
  9827. border-width:0px;
  9828. position:absolute;
  9829. left:398px;
  9830. top:100px;
  9831. width:113px;
  9832. height:30px;
  9833. display:flex;
  9834. }
  9835. #u15778 .text {
  9836. position:absolute;
  9837. align-self:center;
  9838. padding:2px 2px 2px 2px;
  9839. box-sizing:border-box;
  9840. width:100%;
  9841. }
  9842. #u15778_text {
  9843. border-width:0px;
  9844. word-wrap:break-word;
  9845. text-transform:none;
  9846. visibility:hidden;
  9847. }
  9848. #u15779_img {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:0px;
  9852. top:0px;
  9853. width:113px;
  9854. height:30px;
  9855. }
  9856. #u15779 {
  9857. border-width:0px;
  9858. position:absolute;
  9859. left:511px;
  9860. top:100px;
  9861. width:113px;
  9862. height:30px;
  9863. display:flex;
  9864. }
  9865. #u15779 .text {
  9866. position:absolute;
  9867. align-self:center;
  9868. padding:2px 2px 2px 2px;
  9869. box-sizing:border-box;
  9870. width:100%;
  9871. }
  9872. #u15779_text {
  9873. border-width:0px;
  9874. word-wrap:break-word;
  9875. text-transform:none;
  9876. visibility:hidden;
  9877. }
  9878. #u15780_img {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:0px;
  9882. top:0px;
  9883. width:113px;
  9884. height:30px;
  9885. }
  9886. #u15780 {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:624px;
  9890. top:100px;
  9891. width:113px;
  9892. height:30px;
  9893. display:flex;
  9894. }
  9895. #u15780 .text {
  9896. position:absolute;
  9897. align-self:center;
  9898. padding:2px 2px 2px 2px;
  9899. box-sizing:border-box;
  9900. width:100%;
  9901. }
  9902. #u15780_text {
  9903. border-width:0px;
  9904. word-wrap:break-word;
  9905. text-transform:none;
  9906. visibility:hidden;
  9907. }
  9908. #u15781_img {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:113px;
  9914. height:30px;
  9915. }
  9916. #u15781 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:737px;
  9920. top:100px;
  9921. width:113px;
  9922. height:30px;
  9923. display:flex;
  9924. }
  9925. #u15781 .text {
  9926. position:absolute;
  9927. align-self:center;
  9928. padding:2px 2px 2px 2px;
  9929. box-sizing:border-box;
  9930. width:100%;
  9931. }
  9932. #u15781_text {
  9933. border-width:0px;
  9934. word-wrap:break-word;
  9935. text-transform:none;
  9936. visibility:hidden;
  9937. }
  9938. #u15782_img {
  9939. border-width:0px;
  9940. position:absolute;
  9941. left:0px;
  9942. top:0px;
  9943. width:110px;
  9944. height:30px;
  9945. }
  9946. #u15782 {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:850px;
  9950. top:100px;
  9951. width:110px;
  9952. height:30px;
  9953. display:flex;
  9954. }
  9955. #u15782 .text {
  9956. position:absolute;
  9957. align-self:center;
  9958. padding:2px 2px 2px 2px;
  9959. box-sizing:border-box;
  9960. width:100%;
  9961. }
  9962. #u15782_text {
  9963. border-width:0px;
  9964. word-wrap:break-word;
  9965. text-transform:none;
  9966. visibility:hidden;
  9967. }
  9968. #u15783_img {
  9969. border-width:0px;
  9970. position:absolute;
  9971. left:0px;
  9972. top:0px;
  9973. width:59px;
  9974. height:30px;
  9975. }
  9976. #u15783 {
  9977. border-width:0px;
  9978. position:absolute;
  9979. left:0px;
  9980. top:130px;
  9981. width:59px;
  9982. height:30px;
  9983. display:flex;
  9984. }
  9985. #u15783 .text {
  9986. position:absolute;
  9987. align-self:center;
  9988. padding:2px 2px 2px 2px;
  9989. box-sizing:border-box;
  9990. width:100%;
  9991. }
  9992. #u15783_text {
  9993. border-width:0px;
  9994. word-wrap:break-word;
  9995. text-transform:none;
  9996. }
  9997. #u15784_img {
  9998. border-width:0px;
  9999. position:absolute;
  10000. left:0px;
  10001. top:0px;
  10002. width:113px;
  10003. height:30px;
  10004. }
  10005. #u15784 {
  10006. border-width:0px;
  10007. position:absolute;
  10008. left:59px;
  10009. top:130px;
  10010. width:113px;
  10011. height:30px;
  10012. display:flex;
  10013. }
  10014. #u15784 .text {
  10015. position:absolute;
  10016. align-self:center;
  10017. padding:2px 2px 2px 2px;
  10018. box-sizing:border-box;
  10019. width:100%;
  10020. }
  10021. #u15784_text {
  10022. border-width:0px;
  10023. word-wrap:break-word;
  10024. text-transform:none;
  10025. visibility:hidden;
  10026. }
  10027. #u15785_img {
  10028. border-width:0px;
  10029. position:absolute;
  10030. left:0px;
  10031. top:0px;
  10032. width:113px;
  10033. height:30px;
  10034. }
  10035. #u15785 {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:172px;
  10039. top:130px;
  10040. width:113px;
  10041. height:30px;
  10042. display:flex;
  10043. }
  10044. #u15785 .text {
  10045. position:absolute;
  10046. align-self:center;
  10047. padding:2px 2px 2px 2px;
  10048. box-sizing:border-box;
  10049. width:100%;
  10050. }
  10051. #u15785_text {
  10052. border-width:0px;
  10053. word-wrap:break-word;
  10054. text-transform:none;
  10055. visibility:hidden;
  10056. }
  10057. #u15786_img {
  10058. border-width:0px;
  10059. position:absolute;
  10060. left:0px;
  10061. top:0px;
  10062. width:113px;
  10063. height:30px;
  10064. }
  10065. #u15786 {
  10066. border-width:0px;
  10067. position:absolute;
  10068. left:285px;
  10069. top:130px;
  10070. width:113px;
  10071. height:30px;
  10072. display:flex;
  10073. }
  10074. #u15786 .text {
  10075. position:absolute;
  10076. align-self:center;
  10077. padding:2px 2px 2px 2px;
  10078. box-sizing:border-box;
  10079. width:100%;
  10080. }
  10081. #u15786_text {
  10082. border-width:0px;
  10083. word-wrap:break-word;
  10084. text-transform:none;
  10085. visibility:hidden;
  10086. }
  10087. #u15787_img {
  10088. border-width:0px;
  10089. position:absolute;
  10090. left:0px;
  10091. top:0px;
  10092. width:113px;
  10093. height:30px;
  10094. }
  10095. #u15787 {
  10096. border-width:0px;
  10097. position:absolute;
  10098. left:398px;
  10099. top:130px;
  10100. width:113px;
  10101. height:30px;
  10102. display:flex;
  10103. }
  10104. #u15787 .text {
  10105. position:absolute;
  10106. align-self:center;
  10107. padding:2px 2px 2px 2px;
  10108. box-sizing:border-box;
  10109. width:100%;
  10110. }
  10111. #u15787_text {
  10112. border-width:0px;
  10113. word-wrap:break-word;
  10114. text-transform:none;
  10115. visibility:hidden;
  10116. }
  10117. #u15788_img {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:0px;
  10121. top:0px;
  10122. width:113px;
  10123. height:30px;
  10124. }
  10125. #u15788 {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:511px;
  10129. top:130px;
  10130. width:113px;
  10131. height:30px;
  10132. display:flex;
  10133. }
  10134. #u15788 .text {
  10135. position:absolute;
  10136. align-self:center;
  10137. padding:2px 2px 2px 2px;
  10138. box-sizing:border-box;
  10139. width:100%;
  10140. }
  10141. #u15788_text {
  10142. border-width:0px;
  10143. word-wrap:break-word;
  10144. text-transform:none;
  10145. visibility:hidden;
  10146. }
  10147. #u15789_img {
  10148. border-width:0px;
  10149. position:absolute;
  10150. left:0px;
  10151. top:0px;
  10152. width:113px;
  10153. height:30px;
  10154. }
  10155. #u15789 {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:624px;
  10159. top:130px;
  10160. width:113px;
  10161. height:30px;
  10162. display:flex;
  10163. }
  10164. #u15789 .text {
  10165. position:absolute;
  10166. align-self:center;
  10167. padding:2px 2px 2px 2px;
  10168. box-sizing:border-box;
  10169. width:100%;
  10170. }
  10171. #u15789_text {
  10172. border-width:0px;
  10173. word-wrap:break-word;
  10174. text-transform:none;
  10175. visibility:hidden;
  10176. }
  10177. #u15790_img {
  10178. border-width:0px;
  10179. position:absolute;
  10180. left:0px;
  10181. top:0px;
  10182. width:113px;
  10183. height:30px;
  10184. }
  10185. #u15790 {
  10186. border-width:0px;
  10187. position:absolute;
  10188. left:737px;
  10189. top:130px;
  10190. width:113px;
  10191. height:30px;
  10192. display:flex;
  10193. }
  10194. #u15790 .text {
  10195. position:absolute;
  10196. align-self:center;
  10197. padding:2px 2px 2px 2px;
  10198. box-sizing:border-box;
  10199. width:100%;
  10200. }
  10201. #u15790_text {
  10202. border-width:0px;
  10203. word-wrap:break-word;
  10204. text-transform:none;
  10205. visibility:hidden;
  10206. }
  10207. #u15791_img {
  10208. border-width:0px;
  10209. position:absolute;
  10210. left:0px;
  10211. top:0px;
  10212. width:110px;
  10213. height:30px;
  10214. }
  10215. #u15791 {
  10216. border-width:0px;
  10217. position:absolute;
  10218. left:850px;
  10219. top:130px;
  10220. width:110px;
  10221. height:30px;
  10222. display:flex;
  10223. }
  10224. #u15791 .text {
  10225. position:absolute;
  10226. align-self:center;
  10227. padding:2px 2px 2px 2px;
  10228. box-sizing:border-box;
  10229. width:100%;
  10230. }
  10231. #u15791_text {
  10232. border-width:0px;
  10233. word-wrap:break-word;
  10234. text-transform:none;
  10235. visibility:hidden;
  10236. }
  10237. #u15792_img {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:0px;
  10241. top:0px;
  10242. width:59px;
  10243. height:30px;
  10244. }
  10245. #u15792 {
  10246. border-width:0px;
  10247. position:absolute;
  10248. left:0px;
  10249. top:160px;
  10250. width:59px;
  10251. height:30px;
  10252. display:flex;
  10253. }
  10254. #u15792 .text {
  10255. position:absolute;
  10256. align-self:center;
  10257. padding:2px 2px 2px 2px;
  10258. box-sizing:border-box;
  10259. width:100%;
  10260. }
  10261. #u15792_text {
  10262. border-width:0px;
  10263. word-wrap:break-word;
  10264. text-transform:none;
  10265. }
  10266. #u15793_img {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:0px;
  10270. top:0px;
  10271. width:113px;
  10272. height:30px;
  10273. }
  10274. #u15793 {
  10275. border-width:0px;
  10276. position:absolute;
  10277. left:59px;
  10278. top:160px;
  10279. width:113px;
  10280. height:30px;
  10281. display:flex;
  10282. }
  10283. #u15793 .text {
  10284. position:absolute;
  10285. align-self:center;
  10286. padding:2px 2px 2px 2px;
  10287. box-sizing:border-box;
  10288. width:100%;
  10289. }
  10290. #u15793_text {
  10291. border-width:0px;
  10292. word-wrap:break-word;
  10293. text-transform:none;
  10294. visibility:hidden;
  10295. }
  10296. #u15794_img {
  10297. border-width:0px;
  10298. position:absolute;
  10299. left:0px;
  10300. top:0px;
  10301. width:113px;
  10302. height:30px;
  10303. }
  10304. #u15794 {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:172px;
  10308. top:160px;
  10309. width:113px;
  10310. height:30px;
  10311. display:flex;
  10312. }
  10313. #u15794 .text {
  10314. position:absolute;
  10315. align-self:center;
  10316. padding:2px 2px 2px 2px;
  10317. box-sizing:border-box;
  10318. width:100%;
  10319. }
  10320. #u15794_text {
  10321. border-width:0px;
  10322. word-wrap:break-word;
  10323. text-transform:none;
  10324. visibility:hidden;
  10325. }
  10326. #u15795_img {
  10327. border-width:0px;
  10328. position:absolute;
  10329. left:0px;
  10330. top:0px;
  10331. width:113px;
  10332. height:30px;
  10333. }
  10334. #u15795 {
  10335. border-width:0px;
  10336. position:absolute;
  10337. left:285px;
  10338. top:160px;
  10339. width:113px;
  10340. height:30px;
  10341. display:flex;
  10342. }
  10343. #u15795 .text {
  10344. position:absolute;
  10345. align-self:center;
  10346. padding:2px 2px 2px 2px;
  10347. box-sizing:border-box;
  10348. width:100%;
  10349. }
  10350. #u15795_text {
  10351. border-width:0px;
  10352. word-wrap:break-word;
  10353. text-transform:none;
  10354. visibility:hidden;
  10355. }
  10356. #u15796_img {
  10357. border-width:0px;
  10358. position:absolute;
  10359. left:0px;
  10360. top:0px;
  10361. width:113px;
  10362. height:30px;
  10363. }
  10364. #u15796 {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:398px;
  10368. top:160px;
  10369. width:113px;
  10370. height:30px;
  10371. display:flex;
  10372. }
  10373. #u15796 .text {
  10374. position:absolute;
  10375. align-self:center;
  10376. padding:2px 2px 2px 2px;
  10377. box-sizing:border-box;
  10378. width:100%;
  10379. }
  10380. #u15796_text {
  10381. border-width:0px;
  10382. word-wrap:break-word;
  10383. text-transform:none;
  10384. visibility:hidden;
  10385. }
  10386. #u15797_img {
  10387. border-width:0px;
  10388. position:absolute;
  10389. left:0px;
  10390. top:0px;
  10391. width:113px;
  10392. height:30px;
  10393. }
  10394. #u15797 {
  10395. border-width:0px;
  10396. position:absolute;
  10397. left:511px;
  10398. top:160px;
  10399. width:113px;
  10400. height:30px;
  10401. display:flex;
  10402. }
  10403. #u15797 .text {
  10404. position:absolute;
  10405. align-self:center;
  10406. padding:2px 2px 2px 2px;
  10407. box-sizing:border-box;
  10408. width:100%;
  10409. }
  10410. #u15797_text {
  10411. border-width:0px;
  10412. word-wrap:break-word;
  10413. text-transform:none;
  10414. visibility:hidden;
  10415. }
  10416. #u15798_img {
  10417. border-width:0px;
  10418. position:absolute;
  10419. left:0px;
  10420. top:0px;
  10421. width:113px;
  10422. height:30px;
  10423. }
  10424. #u15798 {
  10425. border-width:0px;
  10426. position:absolute;
  10427. left:624px;
  10428. top:160px;
  10429. width:113px;
  10430. height:30px;
  10431. display:flex;
  10432. }
  10433. #u15798 .text {
  10434. position:absolute;
  10435. align-self:center;
  10436. padding:2px 2px 2px 2px;
  10437. box-sizing:border-box;
  10438. width:100%;
  10439. }
  10440. #u15798_text {
  10441. border-width:0px;
  10442. word-wrap:break-word;
  10443. text-transform:none;
  10444. visibility:hidden;
  10445. }
  10446. #u15799_img {
  10447. border-width:0px;
  10448. position:absolute;
  10449. left:0px;
  10450. top:0px;
  10451. width:113px;
  10452. height:30px;
  10453. }
  10454. #u15799 {
  10455. border-width:0px;
  10456. position:absolute;
  10457. left:737px;
  10458. top:160px;
  10459. width:113px;
  10460. height:30px;
  10461. display:flex;
  10462. }
  10463. #u15799 .text {
  10464. position:absolute;
  10465. align-self:center;
  10466. padding:2px 2px 2px 2px;
  10467. box-sizing:border-box;
  10468. width:100%;
  10469. }
  10470. #u15799_text {
  10471. border-width:0px;
  10472. word-wrap:break-word;
  10473. text-transform:none;
  10474. visibility:hidden;
  10475. }
  10476. #u15800_img {
  10477. border-width:0px;
  10478. position:absolute;
  10479. left:0px;
  10480. top:0px;
  10481. width:110px;
  10482. height:30px;
  10483. }
  10484. #u15800 {
  10485. border-width:0px;
  10486. position:absolute;
  10487. left:850px;
  10488. top:160px;
  10489. width:110px;
  10490. height:30px;
  10491. display:flex;
  10492. }
  10493. #u15800 .text {
  10494. position:absolute;
  10495. align-self:center;
  10496. padding:2px 2px 2px 2px;
  10497. box-sizing:border-box;
  10498. width:100%;
  10499. }
  10500. #u15800_text {
  10501. border-width:0px;
  10502. word-wrap:break-word;
  10503. text-transform:none;
  10504. visibility:hidden;
  10505. }
  10506. #u15801_img {
  10507. border-width:0px;
  10508. position:absolute;
  10509. left:0px;
  10510. top:0px;
  10511. width:59px;
  10512. height:23px;
  10513. }
  10514. #u15801 {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:0px;
  10518. top:190px;
  10519. width:59px;
  10520. height:23px;
  10521. display:flex;
  10522. }
  10523. #u15801 .text {
  10524. position:absolute;
  10525. align-self:center;
  10526. padding:2px 2px 2px 2px;
  10527. box-sizing:border-box;
  10528. width:100%;
  10529. }
  10530. #u15801_text {
  10531. border-width:0px;
  10532. word-wrap:break-word;
  10533. text-transform:none;
  10534. }
  10535. #u15802_img {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:0px;
  10539. top:0px;
  10540. width:113px;
  10541. height:23px;
  10542. }
  10543. #u15802 {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:59px;
  10547. top:190px;
  10548. width:113px;
  10549. height:23px;
  10550. display:flex;
  10551. }
  10552. #u15802 .text {
  10553. position:absolute;
  10554. align-self:center;
  10555. padding:2px 2px 2px 2px;
  10556. box-sizing:border-box;
  10557. width:100%;
  10558. }
  10559. #u15802_text {
  10560. border-width:0px;
  10561. word-wrap:break-word;
  10562. text-transform:none;
  10563. visibility:hidden;
  10564. }
  10565. #u15803_img {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:0px;
  10569. top:0px;
  10570. width:113px;
  10571. height:23px;
  10572. }
  10573. #u15803 {
  10574. border-width:0px;
  10575. position:absolute;
  10576. left:172px;
  10577. top:190px;
  10578. width:113px;
  10579. height:23px;
  10580. display:flex;
  10581. }
  10582. #u15803 .text {
  10583. position:absolute;
  10584. align-self:center;
  10585. padding:2px 2px 2px 2px;
  10586. box-sizing:border-box;
  10587. width:100%;
  10588. }
  10589. #u15803_text {
  10590. border-width:0px;
  10591. word-wrap:break-word;
  10592. text-transform:none;
  10593. visibility:hidden;
  10594. }
  10595. #u15804_img {
  10596. border-width:0px;
  10597. position:absolute;
  10598. left:0px;
  10599. top:0px;
  10600. width:113px;
  10601. height:23px;
  10602. }
  10603. #u15804 {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:285px;
  10607. top:190px;
  10608. width:113px;
  10609. height:23px;
  10610. display:flex;
  10611. }
  10612. #u15804 .text {
  10613. position:absolute;
  10614. align-self:center;
  10615. padding:2px 2px 2px 2px;
  10616. box-sizing:border-box;
  10617. width:100%;
  10618. }
  10619. #u15804_text {
  10620. border-width:0px;
  10621. word-wrap:break-word;
  10622. text-transform:none;
  10623. visibility:hidden;
  10624. }
  10625. #u15805_img {
  10626. border-width:0px;
  10627. position:absolute;
  10628. left:0px;
  10629. top:0px;
  10630. width:113px;
  10631. height:23px;
  10632. }
  10633. #u15805 {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:398px;
  10637. top:190px;
  10638. width:113px;
  10639. height:23px;
  10640. display:flex;
  10641. }
  10642. #u15805 .text {
  10643. position:absolute;
  10644. align-self:center;
  10645. padding:2px 2px 2px 2px;
  10646. box-sizing:border-box;
  10647. width:100%;
  10648. }
  10649. #u15805_text {
  10650. border-width:0px;
  10651. word-wrap:break-word;
  10652. text-transform:none;
  10653. visibility:hidden;
  10654. }
  10655. #u15806_img {
  10656. border-width:0px;
  10657. position:absolute;
  10658. left:0px;
  10659. top:0px;
  10660. width:113px;
  10661. height:23px;
  10662. }
  10663. #u15806 {
  10664. border-width:0px;
  10665. position:absolute;
  10666. left:511px;
  10667. top:190px;
  10668. width:113px;
  10669. height:23px;
  10670. display:flex;
  10671. }
  10672. #u15806 .text {
  10673. position:absolute;
  10674. align-self:center;
  10675. padding:2px 2px 2px 2px;
  10676. box-sizing:border-box;
  10677. width:100%;
  10678. }
  10679. #u15806_text {
  10680. border-width:0px;
  10681. word-wrap:break-word;
  10682. text-transform:none;
  10683. visibility:hidden;
  10684. }
  10685. #u15807_img {
  10686. border-width:0px;
  10687. position:absolute;
  10688. left:0px;
  10689. top:0px;
  10690. width:113px;
  10691. height:23px;
  10692. }
  10693. #u15807 {
  10694. border-width:0px;
  10695. position:absolute;
  10696. left:624px;
  10697. top:190px;
  10698. width:113px;
  10699. height:23px;
  10700. display:flex;
  10701. }
  10702. #u15807 .text {
  10703. position:absolute;
  10704. align-self:center;
  10705. padding:2px 2px 2px 2px;
  10706. box-sizing:border-box;
  10707. width:100%;
  10708. }
  10709. #u15807_text {
  10710. border-width:0px;
  10711. word-wrap:break-word;
  10712. text-transform:none;
  10713. visibility:hidden;
  10714. }
  10715. #u15808_img {
  10716. border-width:0px;
  10717. position:absolute;
  10718. left:0px;
  10719. top:0px;
  10720. width:113px;
  10721. height:23px;
  10722. }
  10723. #u15808 {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:737px;
  10727. top:190px;
  10728. width:113px;
  10729. height:23px;
  10730. display:flex;
  10731. }
  10732. #u15808 .text {
  10733. position:absolute;
  10734. align-self:center;
  10735. padding:2px 2px 2px 2px;
  10736. box-sizing:border-box;
  10737. width:100%;
  10738. }
  10739. #u15808_text {
  10740. border-width:0px;
  10741. word-wrap:break-word;
  10742. text-transform:none;
  10743. visibility:hidden;
  10744. }
  10745. #u15809_img {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:0px;
  10749. top:0px;
  10750. width:110px;
  10751. height:23px;
  10752. }
  10753. #u15809 {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:850px;
  10757. top:190px;
  10758. width:110px;
  10759. height:23px;
  10760. display:flex;
  10761. }
  10762. #u15809 .text {
  10763. position:absolute;
  10764. align-self:center;
  10765. padding:2px 2px 2px 2px;
  10766. box-sizing:border-box;
  10767. width:100%;
  10768. }
  10769. #u15809_text {
  10770. border-width:0px;
  10771. word-wrap:break-word;
  10772. text-transform:none;
  10773. visibility:hidden;
  10774. }
  10775. #u15810 {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:0px;
  10779. top:0px;
  10780. width:0px;
  10781. height:0px;
  10782. }
  10783. #u15811_div {
  10784. border-width:0px;
  10785. position:absolute;
  10786. left:0px;
  10787. top:0px;
  10788. width:120px;
  10789. height:30px;
  10790. background:inherit;
  10791. background-color:rgba(255, 255, 255, 1);
  10792. box-sizing:border-box;
  10793. border-width:1px;
  10794. border-style:solid;
  10795. border-color:rgba(201, 201, 201, 1);
  10796. border-radius:4px;
  10797. -moz-box-shadow:none;
  10798. -webkit-box-shadow:none;
  10799. box-shadow:none;
  10800. font-family:'Microsoft YaHei', sans-serif;
  10801. font-weight:400;
  10802. font-style:normal;
  10803. font-size:14px;
  10804. color:#CCCCCC;
  10805. text-align:left;
  10806. }
  10807. #u15811 {
  10808. border-width:0px;
  10809. position:absolute;
  10810. left:2160px;
  10811. top:120px;
  10812. width:120px;
  10813. height:30px;
  10814. display:flex;
  10815. font-family:'Microsoft YaHei', sans-serif;
  10816. font-weight:400;
  10817. font-style:normal;
  10818. font-size:14px;
  10819. color:#CCCCCC;
  10820. text-align:left;
  10821. }
  10822. #u15811 .text {
  10823. position:absolute;
  10824. align-self:center;
  10825. padding:2px 8px 2px 8px;
  10826. box-sizing:border-box;
  10827. width:100%;
  10828. }
  10829. #u15811_text {
  10830. border-width:0px;
  10831. word-wrap:break-word;
  10832. text-transform:none;
  10833. visibility:hidden;
  10834. }
  10835. #u15812_input {
  10836. position:absolute;
  10837. left:0px;
  10838. top:0px;
  10839. width:109px;
  10840. height:25px;
  10841. padding:2px 2px 2px 2px;
  10842. font-family:'Microsoft YaHei', sans-serif;
  10843. font-weight:400;
  10844. font-style:normal;
  10845. font-size:10px;
  10846. letter-spacing:normal;
  10847. color:#000000;
  10848. vertical-align:none;
  10849. text-align:left;
  10850. text-transform:none;
  10851. background-color:transparent;
  10852. border-color:transparent;
  10853. }
  10854. #u15812_input.disabled {
  10855. position:absolute;
  10856. left:0px;
  10857. top:0px;
  10858. width:109px;
  10859. height:25px;
  10860. padding:2px 2px 2px 2px;
  10861. font-family:'Microsoft YaHei', sans-serif;
  10862. font-weight:400;
  10863. font-style:normal;
  10864. font-size:10px;
  10865. letter-spacing:normal;
  10866. color:#000000;
  10867. vertical-align:none;
  10868. text-align:left;
  10869. text-transform:none;
  10870. background-color:transparent;
  10871. border-color:transparent;
  10872. }
  10873. #u15812_div {
  10874. border-width:0px;
  10875. position:absolute;
  10876. left:0px;
  10877. top:0px;
  10878. width:109px;
  10879. height:25px;
  10880. background:inherit;
  10881. background-color:rgba(255, 255, 255, 1);
  10882. border:none;
  10883. border-radius:0px;
  10884. -moz-box-shadow:none;
  10885. -webkit-box-shadow:none;
  10886. box-shadow:none;
  10887. font-family:'Microsoft YaHei', sans-serif;
  10888. font-weight:400;
  10889. font-style:normal;
  10890. font-size:10px;
  10891. }
  10892. #u15812 {
  10893. border-width:0px;
  10894. position:absolute;
  10895. left:2167px;
  10896. top:121px;
  10897. width:109px;
  10898. height:25px;
  10899. display:flex;
  10900. font-family:'Microsoft YaHei', sans-serif;
  10901. font-weight:400;
  10902. font-style:normal;
  10903. font-size:10px;
  10904. }
  10905. #u15812 .text {
  10906. position:absolute;
  10907. align-self:center;
  10908. padding:2px 2px 2px 2px;
  10909. box-sizing:border-box;
  10910. width:100%;
  10911. }
  10912. #u15812_div.disabled {
  10913. border-width:0px;
  10914. position:absolute;
  10915. left:0px;
  10916. top:0px;
  10917. width:109px;
  10918. height:25px;
  10919. background:inherit;
  10920. background-color:rgba(240, 240, 240, 1);
  10921. border:none;
  10922. border-radius:0px;
  10923. -moz-box-shadow:none;
  10924. -webkit-box-shadow:none;
  10925. box-shadow:none;
  10926. font-family:'Microsoft YaHei', sans-serif;
  10927. font-weight:400;
  10928. font-style:normal;
  10929. font-size:10px;
  10930. }
  10931. #u15812.disabled {
  10932. }
  10933. #u15813 {
  10934. border-width:0px;
  10935. position:absolute;
  10936. left:0px;
  10937. top:0px;
  10938. width:0px;
  10939. height:0px;
  10940. }
  10941. #u15814_div {
  10942. border-width:0px;
  10943. position:absolute;
  10944. left:0px;
  10945. top:0px;
  10946. width:120px;
  10947. height:30px;
  10948. background:inherit;
  10949. background-color:rgba(255, 255, 255, 1);
  10950. box-sizing:border-box;
  10951. border-width:1px;
  10952. border-style:solid;
  10953. border-color:rgba(201, 201, 201, 1);
  10954. border-radius:4px;
  10955. -moz-box-shadow:none;
  10956. -webkit-box-shadow:none;
  10957. box-shadow:none;
  10958. font-family:'Microsoft YaHei', sans-serif;
  10959. font-weight:400;
  10960. font-style:normal;
  10961. font-size:14px;
  10962. color:#CCCCCC;
  10963. text-align:left;
  10964. }
  10965. #u15814 {
  10966. border-width:0px;
  10967. position:absolute;
  10968. left:2290px;
  10969. top:120px;
  10970. width:120px;
  10971. height:30px;
  10972. display:flex;
  10973. font-family:'Microsoft YaHei', sans-serif;
  10974. font-weight:400;
  10975. font-style:normal;
  10976. font-size:14px;
  10977. color:#CCCCCC;
  10978. text-align:left;
  10979. }
  10980. #u15814 .text {
  10981. position:absolute;
  10982. align-self:center;
  10983. padding:2px 8px 2px 8px;
  10984. box-sizing:border-box;
  10985. width:100%;
  10986. }
  10987. #u15814_text {
  10988. border-width:0px;
  10989. word-wrap:break-word;
  10990. text-transform:none;
  10991. visibility:hidden;
  10992. }
  10993. #u15815_input {
  10994. position:absolute;
  10995. left:0px;
  10996. top:0px;
  10997. width:109px;
  10998. height:25px;
  10999. padding:2px 2px 2px 2px;
  11000. font-family:'Microsoft YaHei', sans-serif;
  11001. font-weight:400;
  11002. font-style:normal;
  11003. font-size:10px;
  11004. letter-spacing:normal;
  11005. color:#000000;
  11006. vertical-align:none;
  11007. text-align:left;
  11008. text-transform:none;
  11009. background-color:transparent;
  11010. border-color:transparent;
  11011. }
  11012. #u15815_input.disabled {
  11013. position:absolute;
  11014. left:0px;
  11015. top:0px;
  11016. width:109px;
  11017. height:25px;
  11018. padding:2px 2px 2px 2px;
  11019. font-family:'Microsoft YaHei', sans-serif;
  11020. font-weight:400;
  11021. font-style:normal;
  11022. font-size:10px;
  11023. letter-spacing:normal;
  11024. color:#000000;
  11025. vertical-align:none;
  11026. text-align:left;
  11027. text-transform:none;
  11028. background-color:transparent;
  11029. border-color:transparent;
  11030. }
  11031. #u15815_div {
  11032. border-width:0px;
  11033. position:absolute;
  11034. left:0px;
  11035. top:0px;
  11036. width:109px;
  11037. height:25px;
  11038. background:inherit;
  11039. background-color:rgba(255, 255, 255, 1);
  11040. border:none;
  11041. border-radius:0px;
  11042. -moz-box-shadow:none;
  11043. -webkit-box-shadow:none;
  11044. box-shadow:none;
  11045. font-family:'Microsoft YaHei', sans-serif;
  11046. font-weight:400;
  11047. font-style:normal;
  11048. font-size:10px;
  11049. }
  11050. #u15815 {
  11051. border-width:0px;
  11052. position:absolute;
  11053. left:2297px;
  11054. top:121px;
  11055. width:109px;
  11056. height:25px;
  11057. display:flex;
  11058. font-family:'Microsoft YaHei', sans-serif;
  11059. font-weight:400;
  11060. font-style:normal;
  11061. font-size:10px;
  11062. }
  11063. #u15815 .text {
  11064. position:absolute;
  11065. align-self:center;
  11066. padding:2px 2px 2px 2px;
  11067. box-sizing:border-box;
  11068. width:100%;
  11069. }
  11070. #u15815_div.disabled {
  11071. border-width:0px;
  11072. position:absolute;
  11073. left:0px;
  11074. top:0px;
  11075. width:109px;
  11076. height:25px;
  11077. background:inherit;
  11078. background-color:rgba(240, 240, 240, 1);
  11079. border:none;
  11080. border-radius:0px;
  11081. -moz-box-shadow:none;
  11082. -webkit-box-shadow:none;
  11083. box-shadow:none;
  11084. font-family:'Microsoft YaHei', sans-serif;
  11085. font-weight:400;
  11086. font-style:normal;
  11087. font-size:10px;
  11088. }
  11089. #u15815.disabled {
  11090. }
  11091. #u15816 {
  11092. border-width:0px;
  11093. position:absolute;
  11094. left:0px;
  11095. top:0px;
  11096. width:0px;
  11097. height:0px;
  11098. }
  11099. #u15817_div {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:0px;
  11103. top:0px;
  11104. width:60px;
  11105. height:30px;
  11106. background:inherit;
  11107. background-color:rgba(24, 144, 255, 1);
  11108. border:none;
  11109. border-radius:4px;
  11110. -moz-box-shadow:none;
  11111. -webkit-box-shadow:none;
  11112. box-shadow:none;
  11113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11114. font-weight:400;
  11115. font-style:normal;
  11116. font-size:14px;
  11117. color:#FFFFFF;
  11118. }
  11119. #u15817 {
  11120. border-width:0px;
  11121. position:absolute;
  11122. left:2420px;
  11123. top:120px;
  11124. width:60px;
  11125. height:30px;
  11126. display:flex;
  11127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11128. font-weight:400;
  11129. font-style:normal;
  11130. font-size:14px;
  11131. color:#FFFFFF;
  11132. }
  11133. #u15817 .text {
  11134. position:absolute;
  11135. align-self:center;
  11136. padding:2px 2px 2px 2px;
  11137. box-sizing:border-box;
  11138. width:100%;
  11139. }
  11140. #u15817_text {
  11141. border-width:0px;
  11142. word-wrap:break-word;
  11143. text-transform:none;
  11144. }
  11145. #u15818_div {
  11146. border-width:0px;
  11147. position:absolute;
  11148. left:0px;
  11149. top:0px;
  11150. width:60px;
  11151. height:30px;
  11152. background:inherit;
  11153. background-color:rgba(255, 255, 255, 1);
  11154. box-sizing:border-box;
  11155. border-width:1px;
  11156. border-style:solid;
  11157. border-color:rgba(170, 170, 170, 1);
  11158. border-radius:4px;
  11159. -moz-box-shadow:none;
  11160. -webkit-box-shadow:none;
  11161. box-shadow:none;
  11162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11163. font-weight:400;
  11164. font-style:normal;
  11165. font-size:14px;
  11166. }
  11167. #u15818 {
  11168. border-width:0px;
  11169. position:absolute;
  11170. left:2490px;
  11171. top:120px;
  11172. width:60px;
  11173. height:30px;
  11174. display:flex;
  11175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11176. font-weight:400;
  11177. font-style:normal;
  11178. font-size:14px;
  11179. }
  11180. #u15818 .text {
  11181. position:absolute;
  11182. align-self:center;
  11183. padding:2px 2px 2px 2px;
  11184. box-sizing:border-box;
  11185. width:100%;
  11186. }
  11187. #u15818_text {
  11188. border-width:0px;
  11189. word-wrap:break-word;
  11190. text-transform:none;
  11191. }
  11192. #u15819 {
  11193. border-width:0px;
  11194. position:absolute;
  11195. left:0px;
  11196. top:0px;
  11197. width:0px;
  11198. height:0px;
  11199. }
  11200. #u15820_div {
  11201. border-width:0px;
  11202. position:absolute;
  11203. left:0px;
  11204. top:0px;
  11205. width:120px;
  11206. height:30px;
  11207. background:inherit;
  11208. background-color:rgba(255, 255, 255, 1);
  11209. box-sizing:border-box;
  11210. border-width:1px;
  11211. border-style:solid;
  11212. border-color:rgba(215, 215, 215, 1);
  11213. border-radius:4px;
  11214. -moz-box-shadow:none;
  11215. -webkit-box-shadow:none;
  11216. box-shadow:none;
  11217. font-size:14px;
  11218. }
  11219. #u15820 {
  11220. border-width:0px;
  11221. position:absolute;
  11222. left:1900px;
  11223. top:120px;
  11224. width:120px;
  11225. height:30px;
  11226. display:flex;
  11227. font-size:14px;
  11228. }
  11229. #u15820 .text {
  11230. position:absolute;
  11231. align-self:center;
  11232. padding:2px 2px 2px 2px;
  11233. box-sizing:border-box;
  11234. width:100%;
  11235. }
  11236. #u15820_text {
  11237. border-width:0px;
  11238. word-wrap:break-word;
  11239. text-transform:none;
  11240. visibility:hidden;
  11241. }
  11242. #u15821_input {
  11243. position:absolute;
  11244. left:0px;
  11245. top:0px;
  11246. width:115px;
  11247. height:23px;
  11248. padding:2px 2px 2px 2px;
  11249. font-family:'ArialMT', 'Arial', sans-serif;
  11250. font-weight:400;
  11251. font-style:normal;
  11252. font-size:14px;
  11253. letter-spacing:normal;
  11254. color:#AAAAAA;
  11255. vertical-align:none;
  11256. text-align:left;
  11257. text-transform:none;
  11258. background-color:transparent;
  11259. border-color:transparent;
  11260. }
  11261. #u15821_input.disabled {
  11262. position:absolute;
  11263. left:0px;
  11264. top:0px;
  11265. width:115px;
  11266. height:23px;
  11267. padding:2px 2px 2px 2px;
  11268. font-family:'ArialMT', 'Arial', sans-serif;
  11269. font-weight:400;
  11270. font-style:normal;
  11271. font-size:14px;
  11272. letter-spacing:normal;
  11273. color:#AAAAAA;
  11274. vertical-align:none;
  11275. text-align:left;
  11276. text-transform:none;
  11277. background-color:transparent;
  11278. border-color:transparent;
  11279. }
  11280. #u15821_div {
  11281. border-width:0px;
  11282. position:absolute;
  11283. left:0px;
  11284. top:0px;
  11285. width:115px;
  11286. height:23px;
  11287. background:inherit;
  11288. background-color:rgba(255, 255, 255, 1);
  11289. border:none;
  11290. border-radius:0px;
  11291. -moz-box-shadow:none;
  11292. -webkit-box-shadow:none;
  11293. box-shadow:none;
  11294. font-size:14px;
  11295. color:#AAAAAA;
  11296. }
  11297. #u15821 {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:1903px;
  11301. top:122px;
  11302. width:115px;
  11303. height:23px;
  11304. display:flex;
  11305. font-size:14px;
  11306. color:#AAAAAA;
  11307. }
  11308. #u15821 .text {
  11309. position:absolute;
  11310. align-self:flex-start;
  11311. padding:2px 2px 2px 2px;
  11312. box-sizing:border-box;
  11313. width:100%;
  11314. }
  11315. #u15821_div.disabled {
  11316. border-width:0px;
  11317. position:absolute;
  11318. left:0px;
  11319. top:0px;
  11320. width:115px;
  11321. height:23px;
  11322. background:inherit;
  11323. background-color:rgba(240, 240, 240, 1);
  11324. border:none;
  11325. border-radius:0px;
  11326. -moz-box-shadow:none;
  11327. -webkit-box-shadow:none;
  11328. box-shadow:none;
  11329. font-size:14px;
  11330. color:#AAAAAA;
  11331. }
  11332. #u15821.disabled {
  11333. }
  11334. .u15821_input_option {
  11335. font-size:14px;
  11336. }
  11337. #u15822 {
  11338. border-width:0px;
  11339. position:absolute;
  11340. left:0px;
  11341. top:0px;
  11342. width:0px;
  11343. height:0px;
  11344. }
  11345. #u15823_div {
  11346. border-width:0px;
  11347. position:absolute;
  11348. left:0px;
  11349. top:0px;
  11350. width:120px;
  11351. height:30px;
  11352. background:inherit;
  11353. background-color:rgba(255, 255, 255, 1);
  11354. box-sizing:border-box;
  11355. border-width:1px;
  11356. border-style:solid;
  11357. border-color:rgba(215, 215, 215, 1);
  11358. border-radius:4px;
  11359. -moz-box-shadow:none;
  11360. -webkit-box-shadow:none;
  11361. box-shadow:none;
  11362. font-size:14px;
  11363. }
  11364. #u15823 {
  11365. border-width:0px;
  11366. position:absolute;
  11367. left:1770px;
  11368. top:120px;
  11369. width:120px;
  11370. height:30px;
  11371. display:flex;
  11372. font-size:14px;
  11373. }
  11374. #u15823 .text {
  11375. position:absolute;
  11376. align-self:center;
  11377. padding:2px 2px 2px 2px;
  11378. box-sizing:border-box;
  11379. width:100%;
  11380. }
  11381. #u15823_text {
  11382. border-width:0px;
  11383. word-wrap:break-word;
  11384. text-transform:none;
  11385. visibility:hidden;
  11386. }
  11387. #u15824_input {
  11388. position:absolute;
  11389. left:0px;
  11390. top:0px;
  11391. width:115px;
  11392. height:23px;
  11393. padding:2px 2px 2px 2px;
  11394. font-family:'ArialMT', 'Arial', sans-serif;
  11395. font-weight:400;
  11396. font-style:normal;
  11397. font-size:14px;
  11398. letter-spacing:normal;
  11399. color:#AAAAAA;
  11400. vertical-align:none;
  11401. text-align:left;
  11402. text-transform:none;
  11403. background-color:transparent;
  11404. border-color:transparent;
  11405. }
  11406. #u15824_input.disabled {
  11407. position:absolute;
  11408. left:0px;
  11409. top:0px;
  11410. width:115px;
  11411. height:23px;
  11412. padding:2px 2px 2px 2px;
  11413. font-family:'ArialMT', 'Arial', sans-serif;
  11414. font-weight:400;
  11415. font-style:normal;
  11416. font-size:14px;
  11417. letter-spacing:normal;
  11418. color:#AAAAAA;
  11419. vertical-align:none;
  11420. text-align:left;
  11421. text-transform:none;
  11422. background-color:transparent;
  11423. border-color:transparent;
  11424. }
  11425. #u15824_div {
  11426. border-width:0px;
  11427. position:absolute;
  11428. left:0px;
  11429. top:0px;
  11430. width:115px;
  11431. height:23px;
  11432. background:inherit;
  11433. background-color:rgba(255, 255, 255, 1);
  11434. border:none;
  11435. border-radius:0px;
  11436. -moz-box-shadow:none;
  11437. -webkit-box-shadow:none;
  11438. box-shadow:none;
  11439. font-size:14px;
  11440. color:#AAAAAA;
  11441. }
  11442. #u15824 {
  11443. border-width:0px;
  11444. position:absolute;
  11445. left:1773px;
  11446. top:122px;
  11447. width:115px;
  11448. height:23px;
  11449. display:flex;
  11450. font-size:14px;
  11451. color:#AAAAAA;
  11452. }
  11453. #u15824 .text {
  11454. position:absolute;
  11455. align-self:flex-start;
  11456. padding:2px 2px 2px 2px;
  11457. box-sizing:border-box;
  11458. width:100%;
  11459. }
  11460. #u15824_div.disabled {
  11461. border-width:0px;
  11462. position:absolute;
  11463. left:0px;
  11464. top:0px;
  11465. width:115px;
  11466. height:23px;
  11467. background:inherit;
  11468. background-color:rgba(240, 240, 240, 1);
  11469. border:none;
  11470. border-radius:0px;
  11471. -moz-box-shadow:none;
  11472. -webkit-box-shadow:none;
  11473. box-shadow:none;
  11474. font-size:14px;
  11475. color:#AAAAAA;
  11476. }
  11477. #u15824.disabled {
  11478. }
  11479. .u15824_input_option {
  11480. font-size:14px;
  11481. }
  11482. #u15825 {
  11483. border-width:0px;
  11484. position:absolute;
  11485. left:0px;
  11486. top:0px;
  11487. width:0px;
  11488. height:0px;
  11489. }
  11490. #u15826_div {
  11491. border-width:0px;
  11492. position:absolute;
  11493. left:0px;
  11494. top:0px;
  11495. width:120px;
  11496. height:30px;
  11497. background:inherit;
  11498. background-color:rgba(255, 255, 255, 1);
  11499. box-sizing:border-box;
  11500. border-width:1px;
  11501. border-style:solid;
  11502. border-color:rgba(215, 215, 215, 1);
  11503. border-radius:4px;
  11504. -moz-box-shadow:none;
  11505. -webkit-box-shadow:none;
  11506. box-shadow:none;
  11507. font-size:14px;
  11508. }
  11509. #u15826 {
  11510. border-width:0px;
  11511. position:absolute;
  11512. left:1640px;
  11513. top:120px;
  11514. width:120px;
  11515. height:30px;
  11516. display:flex;
  11517. font-size:14px;
  11518. }
  11519. #u15826 .text {
  11520. position:absolute;
  11521. align-self:center;
  11522. padding:2px 2px 2px 2px;
  11523. box-sizing:border-box;
  11524. width:100%;
  11525. }
  11526. #u15826_text {
  11527. border-width:0px;
  11528. word-wrap:break-word;
  11529. text-transform:none;
  11530. visibility:hidden;
  11531. }
  11532. #u15827_input {
  11533. position:absolute;
  11534. left:0px;
  11535. top:0px;
  11536. width:115px;
  11537. height:23px;
  11538. padding:2px 2px 2px 2px;
  11539. font-family:'ArialMT', 'Arial', sans-serif;
  11540. font-weight:400;
  11541. font-style:normal;
  11542. font-size:14px;
  11543. letter-spacing:normal;
  11544. color:#AAAAAA;
  11545. vertical-align:none;
  11546. text-align:left;
  11547. text-transform:none;
  11548. background-color:transparent;
  11549. border-color:transparent;
  11550. }
  11551. #u15827_input.disabled {
  11552. position:absolute;
  11553. left:0px;
  11554. top:0px;
  11555. width:115px;
  11556. height:23px;
  11557. padding:2px 2px 2px 2px;
  11558. font-family:'ArialMT', 'Arial', sans-serif;
  11559. font-weight:400;
  11560. font-style:normal;
  11561. font-size:14px;
  11562. letter-spacing:normal;
  11563. color:#AAAAAA;
  11564. vertical-align:none;
  11565. text-align:left;
  11566. text-transform:none;
  11567. background-color:transparent;
  11568. border-color:transparent;
  11569. }
  11570. #u15827_div {
  11571. border-width:0px;
  11572. position:absolute;
  11573. left:0px;
  11574. top:0px;
  11575. width:115px;
  11576. height:23px;
  11577. background:inherit;
  11578. background-color:rgba(255, 255, 255, 1);
  11579. border:none;
  11580. border-radius:0px;
  11581. -moz-box-shadow:none;
  11582. -webkit-box-shadow:none;
  11583. box-shadow:none;
  11584. font-size:14px;
  11585. color:#AAAAAA;
  11586. }
  11587. #u15827 {
  11588. border-width:0px;
  11589. position:absolute;
  11590. left:1643px;
  11591. top:122px;
  11592. width:115px;
  11593. height:23px;
  11594. display:flex;
  11595. font-size:14px;
  11596. color:#AAAAAA;
  11597. }
  11598. #u15827 .text {
  11599. position:absolute;
  11600. align-self:flex-start;
  11601. padding:2px 2px 2px 2px;
  11602. box-sizing:border-box;
  11603. width:100%;
  11604. }
  11605. #u15827_div.disabled {
  11606. border-width:0px;
  11607. position:absolute;
  11608. left:0px;
  11609. top:0px;
  11610. width:115px;
  11611. height:23px;
  11612. background:inherit;
  11613. background-color:rgba(240, 240, 240, 1);
  11614. border:none;
  11615. border-radius:0px;
  11616. -moz-box-shadow:none;
  11617. -webkit-box-shadow:none;
  11618. box-shadow:none;
  11619. font-size:14px;
  11620. color:#AAAAAA;
  11621. }
  11622. #u15827.disabled {
  11623. }
  11624. .u15827_input_option {
  11625. font-size:14px;
  11626. }
  11627. #u15828 {
  11628. border-width:0px;
  11629. position:absolute;
  11630. left:0px;
  11631. top:0px;
  11632. width:0px;
  11633. height:0px;
  11634. }
  11635. #u15829_div {
  11636. border-width:0px;
  11637. position:absolute;
  11638. left:0px;
  11639. top:0px;
  11640. width:120px;
  11641. height:30px;
  11642. background:inherit;
  11643. background-color:rgba(255, 255, 255, 1);
  11644. box-sizing:border-box;
  11645. border-width:1px;
  11646. border-style:solid;
  11647. border-color:rgba(201, 201, 201, 1);
  11648. border-radius:4px;
  11649. -moz-box-shadow:none;
  11650. -webkit-box-shadow:none;
  11651. box-shadow:none;
  11652. font-family:'Microsoft YaHei', sans-serif;
  11653. font-weight:400;
  11654. font-style:normal;
  11655. font-size:14px;
  11656. color:#CCCCCC;
  11657. text-align:left;
  11658. }
  11659. #u15829 {
  11660. border-width:0px;
  11661. position:absolute;
  11662. left:2030px;
  11663. top:120px;
  11664. width:120px;
  11665. height:30px;
  11666. display:flex;
  11667. font-family:'Microsoft YaHei', sans-serif;
  11668. font-weight:400;
  11669. font-style:normal;
  11670. font-size:14px;
  11671. color:#CCCCCC;
  11672. text-align:left;
  11673. }
  11674. #u15829 .text {
  11675. position:absolute;
  11676. align-self:center;
  11677. padding:2px 8px 2px 8px;
  11678. box-sizing:border-box;
  11679. width:100%;
  11680. }
  11681. #u15829_text {
  11682. border-width:0px;
  11683. word-wrap:break-word;
  11684. text-transform:none;
  11685. visibility:hidden;
  11686. }
  11687. #u15830_input {
  11688. position:absolute;
  11689. left:0px;
  11690. top:0px;
  11691. width:109px;
  11692. height:25px;
  11693. padding:2px 2px 2px 2px;
  11694. font-family:'Microsoft YaHei', sans-serif;
  11695. font-weight:400;
  11696. font-style:normal;
  11697. font-size:10px;
  11698. letter-spacing:normal;
  11699. color:#000000;
  11700. vertical-align:none;
  11701. text-align:left;
  11702. text-transform:none;
  11703. background-color:transparent;
  11704. border-color:transparent;
  11705. }
  11706. #u15830_input.disabled {
  11707. position:absolute;
  11708. left:0px;
  11709. top:0px;
  11710. width:109px;
  11711. height:25px;
  11712. padding:2px 2px 2px 2px;
  11713. font-family:'Microsoft YaHei', sans-serif;
  11714. font-weight:400;
  11715. font-style:normal;
  11716. font-size:10px;
  11717. letter-spacing:normal;
  11718. color:#000000;
  11719. vertical-align:none;
  11720. text-align:left;
  11721. text-transform:none;
  11722. background-color:transparent;
  11723. border-color:transparent;
  11724. }
  11725. #u15830_div {
  11726. border-width:0px;
  11727. position:absolute;
  11728. left:0px;
  11729. top:0px;
  11730. width:109px;
  11731. height:25px;
  11732. background:inherit;
  11733. background-color:rgba(255, 255, 255, 1);
  11734. border:none;
  11735. border-radius:0px;
  11736. -moz-box-shadow:none;
  11737. -webkit-box-shadow:none;
  11738. box-shadow:none;
  11739. font-family:'Microsoft YaHei', sans-serif;
  11740. font-weight:400;
  11741. font-style:normal;
  11742. font-size:10px;
  11743. }
  11744. #u15830 {
  11745. border-width:0px;
  11746. position:absolute;
  11747. left:2037px;
  11748. top:121px;
  11749. width:109px;
  11750. height:25px;
  11751. display:flex;
  11752. font-family:'Microsoft YaHei', sans-serif;
  11753. font-weight:400;
  11754. font-style:normal;
  11755. font-size:10px;
  11756. }
  11757. #u15830 .text {
  11758. position:absolute;
  11759. align-self:center;
  11760. padding:2px 2px 2px 2px;
  11761. box-sizing:border-box;
  11762. width:100%;
  11763. }
  11764. #u15830_div.disabled {
  11765. border-width:0px;
  11766. position:absolute;
  11767. left:0px;
  11768. top:0px;
  11769. width:109px;
  11770. height:25px;
  11771. background:inherit;
  11772. background-color:rgba(240, 240, 240, 1);
  11773. border:none;
  11774. border-radius:0px;
  11775. -moz-box-shadow:none;
  11776. -webkit-box-shadow:none;
  11777. box-shadow:none;
  11778. font-family:'Microsoft YaHei', sans-serif;
  11779. font-weight:400;
  11780. font-style:normal;
  11781. font-size:10px;
  11782. }
  11783. #u15830.disabled {
  11784. }
  11785. #u15831 {
  11786. border-width:0px;
  11787. position:absolute;
  11788. left:0px;
  11789. top:0px;
  11790. width:0px;
  11791. height:0px;
  11792. }
  11793. #u15832 {
  11794. border-width:0px;
  11795. position:absolute;
  11796. left:0px;
  11797. top:0px;
  11798. width:0px;
  11799. height:0px;
  11800. }
  11801. #u15833_div {
  11802. border-width:0px;
  11803. position:absolute;
  11804. left:0px;
  11805. top:0px;
  11806. width:380px;
  11807. height:160px;
  11808. background:inherit;
  11809. background-color:rgba(255, 255, 255, 1);
  11810. box-sizing:border-box;
  11811. border-width:1px;
  11812. border-style:solid;
  11813. border-color:rgba(242, 242, 242, 1);
  11814. border-radius:4px;
  11815. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11816. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11817. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  11818. font-family:'Microsoft YaHei', sans-serif;
  11819. font-weight:400;
  11820. font-style:normal;
  11821. }
  11822. #u15833 {
  11823. border-width:0px;
  11824. position:absolute;
  11825. left:1955px;
  11826. top:368px;
  11827. width:380px;
  11828. height:160px;
  11829. display:flex;
  11830. font-family:'Microsoft YaHei', sans-serif;
  11831. font-weight:400;
  11832. font-style:normal;
  11833. }
  11834. #u15833 .text {
  11835. position:absolute;
  11836. align-self:center;
  11837. padding:2px 2px 2px 2px;
  11838. box-sizing:border-box;
  11839. width:100%;
  11840. }
  11841. #u15833_text {
  11842. border-width:0px;
  11843. word-wrap:break-word;
  11844. text-transform:none;
  11845. visibility:hidden;
  11846. }
  11847. #u15834_div {
  11848. border-width:0px;
  11849. position:absolute;
  11850. left:0px;
  11851. top:0px;
  11852. width:217px;
  11853. height:21px;
  11854. background:inherit;
  11855. background-color:rgba(255, 255, 255, 0);
  11856. border:none;
  11857. border-radius:0px;
  11858. -moz-box-shadow:none;
  11859. -webkit-box-shadow:none;
  11860. box-shadow:none;
  11861. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11862. font-weight:650;
  11863. font-style:normal;
  11864. font-size:18px;
  11865. color:#000000;
  11866. line-height:22px;
  11867. }
  11868. #u15834 {
  11869. border-width:0px;
  11870. position:absolute;
  11871. left:2015px;
  11872. top:393px;
  11873. width:217px;
  11874. height:21px;
  11875. display:flex;
  11876. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  11877. font-weight:650;
  11878. font-style:normal;
  11879. font-size:18px;
  11880. color:#000000;
  11881. line-height:22px;
  11882. }
  11883. #u15834 .text {
  11884. position:absolute;
  11885. align-self:flex-start;
  11886. padding:0px 0px 0px 0px;
  11887. box-sizing:border-box;
  11888. width:100%;
  11889. }
  11890. #u15834_text {
  11891. border-width:0px;
  11892. white-space:nowrap;
  11893. text-transform:none;
  11894. }
  11895. #u15835_div {
  11896. border-width:0px;
  11897. position:absolute;
  11898. left:0px;
  11899. top:0px;
  11900. width:61px;
  11901. height:32px;
  11902. background:inherit;
  11903. background-color:rgba(24, 144, 255, 1);
  11904. border:none;
  11905. border-radius:4px;
  11906. -moz-box-shadow:none;
  11907. -webkit-box-shadow:none;
  11908. box-shadow:none;
  11909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11910. font-weight:400;
  11911. font-style:normal;
  11912. font-size:14px;
  11913. color:#FFFFFF;
  11914. }
  11915. #u15835 {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:2254px;
  11919. top:480px;
  11920. width:61px;
  11921. height:32px;
  11922. display:flex;
  11923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11924. font-weight:400;
  11925. font-style:normal;
  11926. font-size:14px;
  11927. color:#FFFFFF;
  11928. }
  11929. #u15835 .text {
  11930. position:absolute;
  11931. align-self:center;
  11932. padding:2px 16px 2px 16px;
  11933. box-sizing:border-box;
  11934. width:100%;
  11935. }
  11936. #u15835_text {
  11937. border-width:0px;
  11938. white-space:nowrap;
  11939. text-transform:none;
  11940. }
  11941. #u15836_img {
  11942. border-width:0px;
  11943. position:absolute;
  11944. left:0px;
  11945. top:0px;
  11946. width:20px;
  11947. height:20px;
  11948. }
  11949. #u15836 {
  11950. border-width:0px;
  11951. position:absolute;
  11952. left:1984px;
  11953. top:397px;
  11954. width:20px;
  11955. height:20px;
  11956. display:flex;
  11957. }
  11958. #u15836 .text {
  11959. position:absolute;
  11960. align-self:center;
  11961. padding:2px 2px 2px 2px;
  11962. box-sizing:border-box;
  11963. width:100%;
  11964. }
  11965. #u15836_text {
  11966. border-width:0px;
  11967. word-wrap:break-word;
  11968. text-transform:none;
  11969. visibility:hidden;
  11970. }
  11971. #u15837_div {
  11972. border-width:0px;
  11973. position:absolute;
  11974. left:0px;
  11975. top:0px;
  11976. width:300px;
  11977. height:44px;
  11978. background:inherit;
  11979. background-color:rgba(255, 255, 255, 0);
  11980. border:none;
  11981. border-radius:0px;
  11982. -moz-box-shadow:none;
  11983. -webkit-box-shadow:none;
  11984. box-shadow:none;
  11985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11986. font-weight:400;
  11987. font-style:normal;
  11988. font-size:14px;
  11989. color:#7F7F7F;
  11990. line-height:22px;
  11991. }
  11992. #u15837 {
  11993. border-width:0px;
  11994. position:absolute;
  11995. left:2015px;
  11996. top:427px;
  11997. width:300px;
  11998. height:44px;
  11999. display:flex;
  12000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12001. font-weight:400;
  12002. font-style:normal;
  12003. font-size:14px;
  12004. color:#7F7F7F;
  12005. line-height:22px;
  12006. }
  12007. #u15837 .text {
  12008. position:absolute;
  12009. align-self:flex-start;
  12010. padding:0px 0px 0px 0px;
  12011. box-sizing:border-box;
  12012. width:100%;
  12013. }
  12014. #u15837_text {
  12015. border-width:0px;
  12016. word-wrap:break-word;
  12017. text-transform:none;
  12018. }
  12019. #u15838_div {
  12020. border-width:0px;
  12021. position:absolute;
  12022. left:0px;
  12023. top:0px;
  12024. width:66px;
  12025. height:32px;
  12026. background:inherit;
  12027. background-color:rgba(255, 255, 255, 1);
  12028. box-sizing:border-box;
  12029. border-width:1px;
  12030. border-style:solid;
  12031. border-color:rgba(217, 217, 217, 1);
  12032. border-radius:4px;
  12033. -moz-box-shadow:none;
  12034. -webkit-box-shadow:none;
  12035. box-shadow:none;
  12036. font-family:'Microsoft YaHei', sans-serif;
  12037. font-weight:400;
  12038. font-style:normal;
  12039. font-size:14px;
  12040. color:rgba(0, 0, 0, 0.647058823529412);
  12041. line-height:21px;
  12042. }
  12043. #u15838 {
  12044. border-width:0px;
  12045. position:absolute;
  12046. left:2171px;
  12047. top:480px;
  12048. width:66px;
  12049. height:32px;
  12050. display:flex;
  12051. font-family:'Microsoft YaHei', sans-serif;
  12052. font-weight:400;
  12053. font-style:normal;
  12054. font-size:14px;
  12055. color:rgba(0, 0, 0, 0.647058823529412);
  12056. line-height:21px;
  12057. }
  12058. #u15838 .text {
  12059. position:absolute;
  12060. align-self:center;
  12061. padding:2px 16px 2px 16px;
  12062. box-sizing:border-box;
  12063. width:100%;
  12064. }
  12065. #u15838_text {
  12066. border-width:0px;
  12067. white-space:nowrap;
  12068. text-transform:none;
  12069. }