styles.css 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2442px;
  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. #u15775_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u15775 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u15775 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u15775_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u15776_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u15776 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u15776 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u15776_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u15777 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u15778_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u15778 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u15778 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u15778_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u15779_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u15779 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u15779 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u15779_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u15780_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u15780 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u15780 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u15780_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u15781_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u15781 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u15781 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u15781_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u15782 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u15783_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. #u15783 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u15783 .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. #u15783_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u15784_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u15784 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u15784 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u15784_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u15785 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u15786_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. #u15786 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u15786 .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. #u15786_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u15787_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u15787 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u15787 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u15787_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u15788 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u15789_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u15789 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u15789 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u15789_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u15790_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u15790 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u15790 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u15790_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u15791 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u15792_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u15792 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u15792 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u15792_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u15793_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u15793 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u15793 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u15793_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u15794 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u15795_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u15795 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u15795 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u15795_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u15796_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u15796 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u15796 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u15796_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u15797 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u15798_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u15798 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u15798 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u15798_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u15799_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u15799 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u15799 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u15799_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u15800 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u15801_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u15801 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u15801 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u15801_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u15802_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u15802 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u15802 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u15802_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u15803 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u15804_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u15804 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u15804 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u15804_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u15805_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u15805 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u15805 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u15805_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u15806 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u15807_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u15807 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u15807 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u15807_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u15808_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u15808 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u15808 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u15808_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u15809_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u15809_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u15809_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u15809 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u15809 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u15809_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u15809.disabled {
  1100. }
  1101. .u15809_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u15810_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u15810 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u15810 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u15810_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u15811_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u15811 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u15811 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u15811_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u15812_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u15812 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u15812 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u15812_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u15813 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u15814_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u15814 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u15814 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u15814_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u15815_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u15815 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u15815 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u15815_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u15816 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u15817_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u15817 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u15817 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u15817_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u15818_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u15818 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u15818 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u15818_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u15819 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u15820_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u15820 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u15820 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u15820_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u15821_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u15821 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u15821 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u15821_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u15822 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u15823_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u15823 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u15823 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u15823_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u15824_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u15824 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u15824 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u15824_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u15825 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u15826_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u15826 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u15826 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u15826_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u15827_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u15827 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u15827 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u15827_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u15828_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1259px;
  1636. height:1192px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1645. font-weight:400;
  1646. font-style:normal;
  1647. font-size:12px;
  1648. color:#FFFFFF;
  1649. text-align:left;
  1650. }
  1651. #u15828 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:332px;
  1655. top:50px;
  1656. width:1259px;
  1657. height:1192px;
  1658. display:flex;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:12px;
  1663. color:#FFFFFF;
  1664. text-align:left;
  1665. }
  1666. #u15828 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 50px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u15828_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u15829 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:352px;
  1683. top:190px;
  1684. width:1219px;
  1685. height:364px;
  1686. }
  1687. #u15830_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:152px;
  1693. height:39px;
  1694. }
  1695. #u15830 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:152px;
  1701. height:39px;
  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. #u15830 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u15830_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. }
  1721. #u15831_img {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:152px;
  1727. height:39px;
  1728. }
  1729. #u15831 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:152px;
  1733. top:0px;
  1734. width:152px;
  1735. height:39px;
  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. #u15831 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u15831_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. }
  1755. #u15832_img {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:152px;
  1761. height:39px;
  1762. }
  1763. #u15832 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:304px;
  1767. top:0px;
  1768. width:152px;
  1769. height:39px;
  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. #u15832 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u15832_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u15833_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:152px;
  1795. height:39px;
  1796. }
  1797. #u15833 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:456px;
  1801. top:0px;
  1802. width:152px;
  1803. height:39px;
  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. #u15833 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 0px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u15833_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u15834_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:152px;
  1829. height:39px;
  1830. }
  1831. #u15834 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:608px;
  1835. top:0px;
  1836. width:152px;
  1837. height:39px;
  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. #u15834 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u15834_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u15835_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:152px;
  1863. height:39px;
  1864. }
  1865. #u15835 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:760px;
  1869. top:0px;
  1870. width:152px;
  1871. height:39px;
  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. #u15835 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u15835_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u15836_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:152px;
  1897. height:39px;
  1898. }
  1899. #u15836 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:912px;
  1903. top:0px;
  1904. width:152px;
  1905. height:39px;
  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. #u15836 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u15836_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u15837_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:155px;
  1931. height:39px;
  1932. }
  1933. #u15837 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:1064px;
  1937. top:0px;
  1938. width:155px;
  1939. height:39px;
  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. #u15837 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u15837_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u15838_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:152px;
  1965. height:36px;
  1966. }
  1967. #u15838 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:39px;
  1972. width:152px;
  1973. height:36px;
  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. }
  1980. #u15838 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 0px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u15838_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. visibility:hidden;
  1992. }
  1993. #u15839_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:152px;
  1999. height:36px;
  2000. }
  2001. #u15839 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:152px;
  2005. top:39px;
  2006. width:152px;
  2007. height:36px;
  2008. display:flex;
  2009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. }
  2014. #u15839 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 2px 2px 0px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u15839_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. visibility:hidden;
  2026. }
  2027. #u15840_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:152px;
  2033. height:36px;
  2034. }
  2035. #u15840 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:304px;
  2039. top:39px;
  2040. width:152px;
  2041. height:36px;
  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. }
  2048. #u15840 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u15840_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. visibility:hidden;
  2060. }
  2061. #u15841_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:152px;
  2067. height:36px;
  2068. }
  2069. #u15841 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:456px;
  2073. top:39px;
  2074. width:152px;
  2075. height:36px;
  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. }
  2082. #u15841 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 0px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u15841_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. visibility:hidden;
  2094. }
  2095. #u15842_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:152px;
  2101. height:36px;
  2102. }
  2103. #u15842 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:608px;
  2107. top:39px;
  2108. width:152px;
  2109. height:36px;
  2110. display:flex;
  2111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. }
  2116. #u15842 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 0px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u15842_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. visibility:hidden;
  2128. }
  2129. #u15843_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:152px;
  2135. height:36px;
  2136. }
  2137. #u15843 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:760px;
  2141. top:39px;
  2142. width:152px;
  2143. height:36px;
  2144. display:flex;
  2145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. }
  2150. #u15843 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 0px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u15843_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u15844_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:152px;
  2169. height:36px;
  2170. }
  2171. #u15844 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:912px;
  2175. top:39px;
  2176. width:152px;
  2177. height:36px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. }
  2184. #u15844 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u15844_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u15845_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:155px;
  2203. height:36px;
  2204. }
  2205. #u15845 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:1064px;
  2209. top:39px;
  2210. width:155px;
  2211. height:36px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:#1890FF;
  2218. }
  2219. #u15845 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u15845_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u15846_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:152px;
  2237. height:38px;
  2238. }
  2239. #u15846 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:75px;
  2244. width:152px;
  2245. height:38px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. }
  2252. #u15846 .text {
  2253. position:absolute;
  2254. align-self:center;
  2255. padding:2px 2px 2px 0px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u15846_text {
  2260. border-width:0px;
  2261. word-wrap:break-word;
  2262. text-transform:none;
  2263. visibility:hidden;
  2264. }
  2265. #u15847_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:152px;
  2271. height:38px;
  2272. }
  2273. #u15847 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:152px;
  2277. top:75px;
  2278. width:152px;
  2279. height:38px;
  2280. display:flex;
  2281. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. }
  2286. #u15847 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u15847_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u15848_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:152px;
  2305. height:38px;
  2306. }
  2307. #u15848 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:304px;
  2311. top:75px;
  2312. width:152px;
  2313. height:38px;
  2314. display:flex;
  2315. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:12px;
  2319. }
  2320. #u15848 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u15848_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u15849_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:152px;
  2339. height:38px;
  2340. }
  2341. #u15849 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:456px;
  2345. top:75px;
  2346. width:152px;
  2347. height:38px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. }
  2354. #u15849 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u15849_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. visibility:hidden;
  2366. }
  2367. #u15850_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:152px;
  2373. height:38px;
  2374. }
  2375. #u15850 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:608px;
  2379. top:75px;
  2380. width:152px;
  2381. height:38px;
  2382. display:flex;
  2383. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. }
  2388. #u15850 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u15850_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u15851_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:152px;
  2407. height:38px;
  2408. }
  2409. #u15851 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:760px;
  2413. top:75px;
  2414. width:152px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. }
  2422. #u15851 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u15851_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u15852_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:152px;
  2441. height:38px;
  2442. }
  2443. #u15852 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:912px;
  2447. top:75px;
  2448. width:152px;
  2449. height:38px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. }
  2456. #u15852 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u15852_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. visibility:hidden;
  2468. }
  2469. #u15853_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:155px;
  2475. height:38px;
  2476. }
  2477. #u15853 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:1064px;
  2481. top:75px;
  2482. width:155px;
  2483. height:38px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. color:#1890FF;
  2490. }
  2491. #u15853 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 0px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u15853_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. visibility:hidden;
  2503. }
  2504. #u15854_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:152px;
  2510. height:38px;
  2511. }
  2512. #u15854 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:113px;
  2517. width:152px;
  2518. height:38px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:12px;
  2524. }
  2525. #u15854 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u15854_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. visibility:hidden;
  2537. }
  2538. #u15855_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:152px;
  2544. height:38px;
  2545. }
  2546. #u15855 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:152px;
  2550. top:113px;
  2551. width:152px;
  2552. height:38px;
  2553. display:flex;
  2554. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:12px;
  2558. }
  2559. #u15855 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u15855_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u15856_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:152px;
  2578. height:38px;
  2579. }
  2580. #u15856 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:304px;
  2584. top:113px;
  2585. width:152px;
  2586. height:38px;
  2587. display:flex;
  2588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:12px;
  2592. }
  2593. #u15856 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u15856_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u15857_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:152px;
  2612. height:38px;
  2613. }
  2614. #u15857 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:456px;
  2618. top:113px;
  2619. width:152px;
  2620. height:38px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:12px;
  2626. }
  2627. #u15857 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:2px 2px 2px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u15857_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. visibility:hidden;
  2639. }
  2640. #u15858_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:152px;
  2646. height:38px;
  2647. }
  2648. #u15858 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:608px;
  2652. top:113px;
  2653. width:152px;
  2654. height:38px;
  2655. display:flex;
  2656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:12px;
  2660. }
  2661. #u15858 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:2px 2px 2px 0px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u15858_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. visibility:hidden;
  2673. }
  2674. #u15859_img {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:152px;
  2680. height:38px;
  2681. }
  2682. #u15859 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:760px;
  2686. top:113px;
  2687. width:152px;
  2688. height:38px;
  2689. display:flex;
  2690. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. font-size:12px;
  2694. }
  2695. #u15859 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 0px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u15859_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. visibility:hidden;
  2707. }
  2708. #u15860_img {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:152px;
  2714. height:38px;
  2715. }
  2716. #u15860 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:912px;
  2720. top:113px;
  2721. width:152px;
  2722. height:38px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:12px;
  2728. }
  2729. #u15860 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u15860_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u15861_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:155px;
  2748. height:38px;
  2749. }
  2750. #u15861 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:1064px;
  2754. top:113px;
  2755. width:155px;
  2756. height:38px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:12px;
  2762. color:#1890FF;
  2763. }
  2764. #u15861 .text {
  2765. position:absolute;
  2766. align-self:center;
  2767. padding:2px 2px 2px 0px;
  2768. box-sizing:border-box;
  2769. width:100%;
  2770. }
  2771. #u15861_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. visibility:hidden;
  2776. }
  2777. #u15862_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:152px;
  2783. height:38px;
  2784. }
  2785. #u15862 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:151px;
  2790. width:152px;
  2791. height:38px;
  2792. display:flex;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:12px;
  2797. }
  2798. #u15862 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 0px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u15862_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u15863_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:152px;
  2817. height:38px;
  2818. }
  2819. #u15863 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:152px;
  2823. top:151px;
  2824. width:152px;
  2825. height:38px;
  2826. display:flex;
  2827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2828. font-weight:400;
  2829. font-style:normal;
  2830. font-size:12px;
  2831. }
  2832. #u15863 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:2px 2px 2px 0px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u15863_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u15864_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:152px;
  2851. height:38px;
  2852. }
  2853. #u15864 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:304px;
  2857. top:151px;
  2858. width:152px;
  2859. height:38px;
  2860. display:flex;
  2861. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:12px;
  2865. }
  2866. #u15864 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u15864_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u15865_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:152px;
  2885. height:38px;
  2886. }
  2887. #u15865 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:456px;
  2891. top:151px;
  2892. width:152px;
  2893. height:38px;
  2894. display:flex;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:12px;
  2899. }
  2900. #u15865 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 2px 2px 0px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u15865_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. visibility:hidden;
  2912. }
  2913. #u15866_img {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:152px;
  2919. height:38px;
  2920. }
  2921. #u15866 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:608px;
  2925. top:151px;
  2926. width:152px;
  2927. height:38px;
  2928. display:flex;
  2929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:12px;
  2933. }
  2934. #u15866 .text {
  2935. position:absolute;
  2936. align-self:center;
  2937. padding:2px 2px 2px 0px;
  2938. box-sizing:border-box;
  2939. width:100%;
  2940. }
  2941. #u15866_text {
  2942. border-width:0px;
  2943. word-wrap:break-word;
  2944. text-transform:none;
  2945. visibility:hidden;
  2946. }
  2947. #u15867_img {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:152px;
  2953. height:38px;
  2954. }
  2955. #u15867 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:760px;
  2959. top:151px;
  2960. width:152px;
  2961. height:38px;
  2962. display:flex;
  2963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:12px;
  2967. }
  2968. #u15867 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u15867_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u15868_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:152px;
  2987. height:38px;
  2988. }
  2989. #u15868 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:912px;
  2993. top:151px;
  2994. width:152px;
  2995. height:38px;
  2996. display:flex;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:12px;
  3001. }
  3002. #u15868 .text {
  3003. position:absolute;
  3004. align-self:center;
  3005. padding:2px 2px 2px 0px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u15868_text {
  3010. border-width:0px;
  3011. word-wrap:break-word;
  3012. text-transform:none;
  3013. visibility:hidden;
  3014. }
  3015. #u15869_img {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:155px;
  3021. height:38px;
  3022. }
  3023. #u15869 {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:1064px;
  3027. top:151px;
  3028. width:155px;
  3029. height:38px;
  3030. display:flex;
  3031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3032. font-weight:400;
  3033. font-style:normal;
  3034. font-size:12px;
  3035. color:#1890FF;
  3036. }
  3037. #u15869 .text {
  3038. position:absolute;
  3039. align-self:center;
  3040. padding:2px 2px 2px 0px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u15869_text {
  3045. border-width:0px;
  3046. word-wrap:break-word;
  3047. text-transform:none;
  3048. visibility:hidden;
  3049. }
  3050. #u15870_img {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:152px;
  3056. height:35px;
  3057. }
  3058. #u15870 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:189px;
  3063. width:152px;
  3064. height:35px;
  3065. display:flex;
  3066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3067. font-weight:400;
  3068. font-style:normal;
  3069. font-size:12px;
  3070. color:#606266;
  3071. }
  3072. #u15870 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 0px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u15870_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. visibility:hidden;
  3084. }
  3085. #u15871_img {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:152px;
  3091. height:35px;
  3092. }
  3093. #u15871 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:152px;
  3097. top:189px;
  3098. width:152px;
  3099. height:35px;
  3100. display:flex;
  3101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. color:#606266;
  3106. }
  3107. #u15871 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 2px 2px 0px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u15871_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u15872_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:152px;
  3126. height:35px;
  3127. }
  3128. #u15872 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:304px;
  3132. top:189px;
  3133. width:152px;
  3134. height:35px;
  3135. display:flex;
  3136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:12px;
  3140. color:#606266;
  3141. }
  3142. #u15872 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 0px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u15872_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. visibility:hidden;
  3154. }
  3155. #u15873_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:152px;
  3161. height:35px;
  3162. }
  3163. #u15873 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:456px;
  3167. top:189px;
  3168. width:152px;
  3169. height:35px;
  3170. display:flex;
  3171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3172. font-weight:400;
  3173. font-style:normal;
  3174. font-size:12px;
  3175. color:#606266;
  3176. }
  3177. #u15873 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 2px 2px 0px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u15873_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. visibility:hidden;
  3189. }
  3190. #u15874_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:152px;
  3196. height:35px;
  3197. }
  3198. #u15874 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:608px;
  3202. top:189px;
  3203. width:152px;
  3204. height:35px;
  3205. display:flex;
  3206. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:12px;
  3210. color:#606266;
  3211. }
  3212. #u15874 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u15874_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u15875_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:152px;
  3231. height:35px;
  3232. }
  3233. #u15875 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:760px;
  3237. top:189px;
  3238. width:152px;
  3239. height:35px;
  3240. display:flex;
  3241. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. color:#606266;
  3246. }
  3247. #u15875 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 0px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u15875_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u15876_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:152px;
  3266. height:35px;
  3267. }
  3268. #u15876 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:912px;
  3272. top:189px;
  3273. width:152px;
  3274. height:35px;
  3275. display:flex;
  3276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. font-size:12px;
  3280. color:#606266;
  3281. }
  3282. #u15876 .text {
  3283. position:absolute;
  3284. align-self:center;
  3285. padding:2px 2px 2px 0px;
  3286. box-sizing:border-box;
  3287. width:100%;
  3288. }
  3289. #u15876_text {
  3290. border-width:0px;
  3291. word-wrap:break-word;
  3292. text-transform:none;
  3293. visibility:hidden;
  3294. }
  3295. #u15877_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:155px;
  3301. height:35px;
  3302. }
  3303. #u15877 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:1064px;
  3307. top:189px;
  3308. width:155px;
  3309. height:35px;
  3310. display:flex;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:12px;
  3315. color:#02A7F0;
  3316. }
  3317. #u15877 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 0px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u15877_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u15878_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:152px;
  3336. height:35px;
  3337. }
  3338. #u15878 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:224px;
  3343. width:152px;
  3344. height:35px;
  3345. display:flex;
  3346. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3347. font-weight:400;
  3348. font-style:normal;
  3349. font-size:12px;
  3350. color:#606266;
  3351. }
  3352. #u15878 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 0px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u15878_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u15879_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:152px;
  3371. height:35px;
  3372. }
  3373. #u15879 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:152px;
  3377. top:224px;
  3378. width:152px;
  3379. height:35px;
  3380. display:flex;
  3381. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:12px;
  3385. color:#606266;
  3386. }
  3387. #u15879 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u15879_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u15880_img {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:152px;
  3406. height:35px;
  3407. }
  3408. #u15880 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:304px;
  3412. top:224px;
  3413. width:152px;
  3414. height:35px;
  3415. display:flex;
  3416. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:12px;
  3420. color:#606266;
  3421. }
  3422. #u15880 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 0px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u15880_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u15881_img {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:152px;
  3441. height:35px;
  3442. }
  3443. #u15881 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:456px;
  3447. top:224px;
  3448. width:152px;
  3449. height:35px;
  3450. display:flex;
  3451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:12px;
  3455. color:#606266;
  3456. }
  3457. #u15881 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 0px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u15881_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. visibility:hidden;
  3469. }
  3470. #u15882_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:152px;
  3476. height:35px;
  3477. }
  3478. #u15882 {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:608px;
  3482. top:224px;
  3483. width:152px;
  3484. height:35px;
  3485. display:flex;
  3486. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:12px;
  3490. color:#606266;
  3491. }
  3492. #u15882 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 2px 2px 0px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u15882_text {
  3500. border-width:0px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u15883_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:152px;
  3511. height:35px;
  3512. }
  3513. #u15883 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:760px;
  3517. top:224px;
  3518. width:152px;
  3519. height:35px;
  3520. display:flex;
  3521. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. color:#606266;
  3526. }
  3527. #u15883 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u15883_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. visibility:hidden;
  3539. }
  3540. #u15884_img {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:152px;
  3546. height:35px;
  3547. }
  3548. #u15884 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:912px;
  3552. top:224px;
  3553. width:152px;
  3554. height:35px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:12px;
  3560. color:#606266;
  3561. }
  3562. #u15884 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 0px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u15884_text {
  3570. border-width:0px;
  3571. word-wrap:break-word;
  3572. text-transform:none;
  3573. visibility:hidden;
  3574. }
  3575. #u15885_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:155px;
  3581. height:35px;
  3582. }
  3583. #u15885 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:1064px;
  3587. top:224px;
  3588. width:155px;
  3589. height:35px;
  3590. display:flex;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:12px;
  3595. color:#02A7F0;
  3596. }
  3597. #u15885 .text {
  3598. position:absolute;
  3599. align-self:center;
  3600. padding:2px 2px 2px 0px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u15885_text {
  3605. border-width:0px;
  3606. word-wrap:break-word;
  3607. text-transform:none;
  3608. visibility:hidden;
  3609. }
  3610. #u15886_img {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:152px;
  3616. height:35px;
  3617. }
  3618. #u15886 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:259px;
  3623. width:152px;
  3624. height:35px;
  3625. display:flex;
  3626. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:12px;
  3630. color:#606266;
  3631. }
  3632. #u15886 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u15886_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u15887_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:152px;
  3651. height:35px;
  3652. }
  3653. #u15887 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:152px;
  3657. top:259px;
  3658. width:152px;
  3659. height:35px;
  3660. display:flex;
  3661. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:12px;
  3665. color:#606266;
  3666. }
  3667. #u15887 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 0px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u15887_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u15888_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:152px;
  3686. height:35px;
  3687. }
  3688. #u15888 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:304px;
  3692. top:259px;
  3693. width:152px;
  3694. height:35px;
  3695. display:flex;
  3696. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3697. font-weight:400;
  3698. font-style:normal;
  3699. font-size:12px;
  3700. color:#606266;
  3701. }
  3702. #u15888 .text {
  3703. position:absolute;
  3704. align-self:center;
  3705. padding:2px 2px 2px 0px;
  3706. box-sizing:border-box;
  3707. width:100%;
  3708. }
  3709. #u15888_text {
  3710. border-width:0px;
  3711. word-wrap:break-word;
  3712. text-transform:none;
  3713. visibility:hidden;
  3714. }
  3715. #u15889_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:152px;
  3721. height:35px;
  3722. }
  3723. #u15889 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:456px;
  3727. top:259px;
  3728. width:152px;
  3729. height:35px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:12px;
  3735. color:#606266;
  3736. }
  3737. #u15889 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u15889_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u15890_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:152px;
  3756. height:35px;
  3757. }
  3758. #u15890 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:608px;
  3762. top:259px;
  3763. width:152px;
  3764. height:35px;
  3765. display:flex;
  3766. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. color:#606266;
  3771. }
  3772. #u15890 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 0px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u15890_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u15891_img {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:152px;
  3791. height:35px;
  3792. }
  3793. #u15891 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:760px;
  3797. top:259px;
  3798. width:152px;
  3799. height:35px;
  3800. display:flex;
  3801. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:12px;
  3805. color:#606266;
  3806. }
  3807. #u15891 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 2px 2px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u15891_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. visibility:hidden;
  3819. }
  3820. #u15892_img {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:152px;
  3826. height:35px;
  3827. }
  3828. #u15892 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:912px;
  3832. top:259px;
  3833. width:152px;
  3834. height:35px;
  3835. display:flex;
  3836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3837. font-weight:400;
  3838. font-style:normal;
  3839. font-size:12px;
  3840. color:#606266;
  3841. }
  3842. #u15892 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 2px 2px 0px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u15892_text {
  3850. border-width:0px;
  3851. word-wrap:break-word;
  3852. text-transform:none;
  3853. visibility:hidden;
  3854. }
  3855. #u15893_img {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:155px;
  3861. height:35px;
  3862. }
  3863. #u15893 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:1064px;
  3867. top:259px;
  3868. width:155px;
  3869. height:35px;
  3870. display:flex;
  3871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:12px;
  3875. color:#02A7F0;
  3876. }
  3877. #u15893 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 0px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u15893_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u15894_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:152px;
  3896. height:35px;
  3897. }
  3898. #u15894 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:294px;
  3903. width:152px;
  3904. height:35px;
  3905. display:flex;
  3906. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:12px;
  3910. color:#606266;
  3911. }
  3912. #u15894 .text {
  3913. position:absolute;
  3914. align-self:center;
  3915. padding:2px 2px 2px 0px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u15894_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. visibility:hidden;
  3924. }
  3925. #u15895_img {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:152px;
  3931. height:35px;
  3932. }
  3933. #u15895 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:152px;
  3937. top:294px;
  3938. width:152px;
  3939. height:35px;
  3940. display:flex;
  3941. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3942. font-weight:400;
  3943. font-style:normal;
  3944. font-size:12px;
  3945. color:#606266;
  3946. }
  3947. #u15895 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:2px 2px 2px 0px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u15895_text {
  3955. border-width:0px;
  3956. word-wrap:break-word;
  3957. text-transform:none;
  3958. visibility:hidden;
  3959. }
  3960. #u15896_img {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:152px;
  3966. height:35px;
  3967. }
  3968. #u15896 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:304px;
  3972. top:294px;
  3973. width:152px;
  3974. height:35px;
  3975. display:flex;
  3976. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. color:#606266;
  3981. }
  3982. #u15896 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 0px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u15896_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. visibility:hidden;
  3994. }
  3995. #u15897_img {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:152px;
  4001. height:35px;
  4002. }
  4003. #u15897 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:456px;
  4007. top:294px;
  4008. width:152px;
  4009. height:35px;
  4010. display:flex;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:12px;
  4015. color:#606266;
  4016. }
  4017. #u15897 .text {
  4018. position:absolute;
  4019. align-self:center;
  4020. padding:2px 2px 2px 0px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u15897_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. visibility:hidden;
  4029. }
  4030. #u15898_img {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:152px;
  4036. height:35px;
  4037. }
  4038. #u15898 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:608px;
  4042. top:294px;
  4043. width:152px;
  4044. height:35px;
  4045. display:flex;
  4046. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:12px;
  4050. color:#606266;
  4051. }
  4052. #u15898 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 2px 2px 0px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u15898_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u15899_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:152px;
  4071. height:35px;
  4072. }
  4073. #u15899 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:760px;
  4077. top:294px;
  4078. width:152px;
  4079. height:35px;
  4080. display:flex;
  4081. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4082. font-weight:400;
  4083. font-style:normal;
  4084. font-size:12px;
  4085. color:#606266;
  4086. }
  4087. #u15899 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 2px 2px 0px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u15899_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u15900_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:152px;
  4106. height:35px;
  4107. }
  4108. #u15900 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:912px;
  4112. top:294px;
  4113. width:152px;
  4114. height:35px;
  4115. display:flex;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:12px;
  4120. color:#606266;
  4121. }
  4122. #u15900 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 2px 2px 0px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u15900_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u15901_img {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:155px;
  4141. height:35px;
  4142. }
  4143. #u15901 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:1064px;
  4147. top:294px;
  4148. width:155px;
  4149. height:35px;
  4150. display:flex;
  4151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. font-size:12px;
  4155. color:#02A7F0;
  4156. }
  4157. #u15901 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 0px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u15901_text {
  4165. border-width:0px;
  4166. word-wrap:break-word;
  4167. text-transform:none;
  4168. visibility:hidden;
  4169. }
  4170. #u15902_img {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:152px;
  4176. height:35px;
  4177. }
  4178. #u15902 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:329px;
  4183. width:152px;
  4184. height:35px;
  4185. display:flex;
  4186. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:12px;
  4190. color:#606266;
  4191. }
  4192. #u15902 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:2px 2px 2px 0px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u15902_text {
  4200. border-width:0px;
  4201. word-wrap:break-word;
  4202. text-transform:none;
  4203. visibility:hidden;
  4204. }
  4205. #u15903_img {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:152px;
  4211. height:35px;
  4212. }
  4213. #u15903 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:152px;
  4217. top:329px;
  4218. width:152px;
  4219. height:35px;
  4220. display:flex;
  4221. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:12px;
  4225. color:#606266;
  4226. }
  4227. #u15903 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 0px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u15903_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. visibility:hidden;
  4239. }
  4240. #u15904_img {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:152px;
  4246. height:35px;
  4247. }
  4248. #u15904 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:304px;
  4252. top:329px;
  4253. width:152px;
  4254. height:35px;
  4255. display:flex;
  4256. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4257. font-weight:400;
  4258. font-style:normal;
  4259. font-size:12px;
  4260. color:#606266;
  4261. }
  4262. #u15904 .text {
  4263. position:absolute;
  4264. align-self:center;
  4265. padding:2px 2px 2px 0px;
  4266. box-sizing:border-box;
  4267. width:100%;
  4268. }
  4269. #u15904_text {
  4270. border-width:0px;
  4271. word-wrap:break-word;
  4272. text-transform:none;
  4273. visibility:hidden;
  4274. }
  4275. #u15905_img {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:0px;
  4279. top:0px;
  4280. width:152px;
  4281. height:35px;
  4282. }
  4283. #u15905 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:456px;
  4287. top:329px;
  4288. width:152px;
  4289. height:35px;
  4290. display:flex;
  4291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4292. font-weight:400;
  4293. font-style:normal;
  4294. font-size:12px;
  4295. color:#606266;
  4296. }
  4297. #u15905 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 0px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u15905_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. visibility:hidden;
  4309. }
  4310. #u15906_img {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:152px;
  4316. height:35px;
  4317. }
  4318. #u15906 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:608px;
  4322. top:329px;
  4323. width:152px;
  4324. height:35px;
  4325. display:flex;
  4326. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:12px;
  4330. color:#606266;
  4331. }
  4332. #u15906 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 0px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u15906_text {
  4340. border-width:0px;
  4341. word-wrap:break-word;
  4342. text-transform:none;
  4343. visibility:hidden;
  4344. }
  4345. #u15907_img {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:152px;
  4351. height:35px;
  4352. }
  4353. #u15907 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:760px;
  4357. top:329px;
  4358. width:152px;
  4359. height:35px;
  4360. display:flex;
  4361. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4362. font-weight:400;
  4363. font-style:normal;
  4364. font-size:12px;
  4365. color:#606266;
  4366. }
  4367. #u15907 .text {
  4368. position:absolute;
  4369. align-self:center;
  4370. padding:2px 2px 2px 0px;
  4371. box-sizing:border-box;
  4372. width:100%;
  4373. }
  4374. #u15907_text {
  4375. border-width:0px;
  4376. word-wrap:break-word;
  4377. text-transform:none;
  4378. visibility:hidden;
  4379. }
  4380. #u15908_img {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:152px;
  4386. height:35px;
  4387. }
  4388. #u15908 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:912px;
  4392. top:329px;
  4393. width:152px;
  4394. height:35px;
  4395. display:flex;
  4396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:12px;
  4400. color:#606266;
  4401. }
  4402. #u15908 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u15908_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u15909_img {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:155px;
  4421. height:35px;
  4422. }
  4423. #u15909 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:1064px;
  4427. top:329px;
  4428. width:155px;
  4429. height:35px;
  4430. display:flex;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:12px;
  4435. color:#02A7F0;
  4436. }
  4437. #u15909 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 0px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u15909_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u15910_div {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:37px;
  4456. height:50px;
  4457. background:inherit;
  4458. background-color:rgba(255, 255, 255, 0);
  4459. border:none;
  4460. border-left:0px;
  4461. border-top:0px;
  4462. border-right:0px;
  4463. border-radius:0px;
  4464. border-bottom-right-radius:0px;
  4465. border-bottom-left-radius:0px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:18px;
  4473. }
  4474. #u15910 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:351px;
  4478. top:50px;
  4479. width:37px;
  4480. height:50px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:18px;
  4486. }
  4487. #u15910 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:0px 0px 0px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u15910_text {
  4495. border-width:0px;
  4496. white-space:nowrap;
  4497. text-transform:none;
  4498. }
  4499. #u15911 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:0px;
  4505. height:0px;
  4506. }
  4507. #u15912_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:59px;
  4513. height:30px;
  4514. background:inherit;
  4515. background-color:rgba(24, 144, 255, 1);
  4516. box-sizing:border-box;
  4517. border-width:1px;
  4518. border-style:solid;
  4519. border-color:rgba(0, 153, 255, 1);
  4520. border-radius:4px;
  4521. -moz-box-shadow:none;
  4522. -webkit-box-shadow:none;
  4523. box-shadow:none;
  4524. font-family:'Microsoft YaHei', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:14px;
  4528. color:#FFFFFF;
  4529. }
  4530. #u15912 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:1364px;
  4534. top:98px;
  4535. width:59px;
  4536. height:30px;
  4537. display:flex;
  4538. font-family:'Microsoft YaHei', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:14px;
  4542. color:#FFFFFF;
  4543. }
  4544. #u15912 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:5px 15px 5px 15px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u15912_text {
  4552. border-width:0px;
  4553. white-space:nowrap;
  4554. text-transform:none;
  4555. }
  4556. #u15913_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:55px;
  4562. height:30px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 1);
  4565. box-sizing:border-box;
  4566. border-width:1px;
  4567. border-style:solid;
  4568. border-color:rgba(170, 170, 170, 1);
  4569. border-radius:4px;
  4570. -moz-box-shadow:none;
  4571. -webkit-box-shadow:none;
  4572. box-shadow:none;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:12px;
  4577. color:#555555;
  4578. }
  4579. #u15913 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:1433px;
  4583. top:98px;
  4584. width:55px;
  4585. height:30px;
  4586. display:flex;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:12px;
  4591. color:#555555;
  4592. }
  4593. #u15913 .text {
  4594. position:absolute;
  4595. align-self:center;
  4596. padding:5px 15px 5px 15px;
  4597. box-sizing:border-box;
  4598. width:100%;
  4599. }
  4600. #u15913_text {
  4601. border-width:0px;
  4602. white-space:nowrap;
  4603. text-transform:none;
  4604. }
  4605. #u15914 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:0px;
  4611. height:0px;
  4612. }
  4613. #u15915_div {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:140px;
  4619. height:30px;
  4620. background:inherit;
  4621. background-color:rgba(255, 255, 255, 1);
  4622. box-sizing:border-box;
  4623. border-width:1px;
  4624. border-style:solid;
  4625. border-color:rgba(201, 201, 201, 1);
  4626. border-radius:4px;
  4627. -moz-box-shadow:none;
  4628. -webkit-box-shadow:none;
  4629. box-shadow:none;
  4630. font-family:'Microsoft YaHei', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:14px;
  4634. color:#CCCCCC;
  4635. text-align:left;
  4636. }
  4637. #u15915 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:349px;
  4641. top:100px;
  4642. width:140px;
  4643. height:30px;
  4644. display:flex;
  4645. font-family:'Microsoft YaHei', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:14px;
  4649. color:#CCCCCC;
  4650. text-align:left;
  4651. }
  4652. #u15915 .text {
  4653. position:absolute;
  4654. align-self:center;
  4655. padding:2px 8px 2px 8px;
  4656. box-sizing:border-box;
  4657. width:100%;
  4658. }
  4659. #u15915_text {
  4660. border-width:0px;
  4661. word-wrap:break-word;
  4662. text-transform:none;
  4663. visibility:hidden;
  4664. }
  4665. #u15916_input {
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:127px;
  4670. height:25px;
  4671. padding:2px 2px 2px 2px;
  4672. font-family:'Microsoft YaHei', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:10px;
  4676. letter-spacing:normal;
  4677. color:#000000;
  4678. vertical-align:none;
  4679. text-align:left;
  4680. text-transform:none;
  4681. background-color:transparent;
  4682. border-color:transparent;
  4683. }
  4684. #u15916_input.disabled {
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:127px;
  4689. height:25px;
  4690. padding:2px 2px 2px 2px;
  4691. font-family:'Microsoft YaHei', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:10px;
  4695. letter-spacing:normal;
  4696. color:#000000;
  4697. vertical-align:none;
  4698. text-align:left;
  4699. text-transform:none;
  4700. background-color:transparent;
  4701. border-color:transparent;
  4702. }
  4703. #u15916_div {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:127px;
  4709. height:25px;
  4710. background:inherit;
  4711. background-color:rgba(255, 255, 255, 1);
  4712. border:none;
  4713. border-radius:0px;
  4714. -moz-box-shadow:none;
  4715. -webkit-box-shadow:none;
  4716. box-shadow:none;
  4717. font-family:'Microsoft YaHei', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:10px;
  4721. }
  4722. #u15916 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:357px;
  4726. top:101px;
  4727. width:127px;
  4728. height:25px;
  4729. display:flex;
  4730. font-family:'Microsoft YaHei', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:10px;
  4734. }
  4735. #u15916 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:2px 2px 2px 2px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u15916_div.disabled {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:127px;
  4748. height:25px;
  4749. background:inherit;
  4750. background-color:rgba(240, 240, 240, 1);
  4751. border:none;
  4752. border-radius:0px;
  4753. -moz-box-shadow:none;
  4754. -webkit-box-shadow:none;
  4755. box-shadow:none;
  4756. font-family:'Microsoft YaHei', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:10px;
  4760. }
  4761. #u15916.disabled {
  4762. }
  4763. #u15917_div {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:87px;
  4769. height:30px;
  4770. background:inherit;
  4771. background-color:rgba(24, 144, 255, 1);
  4772. border:none;
  4773. border-radius:4px;
  4774. -moz-box-shadow:none;
  4775. -webkit-box-shadow:none;
  4776. box-shadow:none;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:14px;
  4781. color:#FFFFFF;
  4782. }
  4783. #u15917 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:349px;
  4787. top:150px;
  4788. width:87px;
  4789. height:30px;
  4790. display:flex;
  4791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4792. font-weight:400;
  4793. font-style:normal;
  4794. font-size:14px;
  4795. color:#FFFFFF;
  4796. }
  4797. #u15917 .text {
  4798. position:absolute;
  4799. align-self:center;
  4800. padding:5px 15px 5px 15px;
  4801. box-sizing:border-box;
  4802. width:100%;
  4803. }
  4804. #u15917_text {
  4805. border-width:0px;
  4806. white-space:nowrap;
  4807. text-transform:none;
  4808. }
  4809. #u15918 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:0px;
  4815. height:0px;
  4816. }
  4817. #u15919_div {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:100px;
  4823. height:100px;
  4824. background:inherit;
  4825. background-color:rgba(255, 255, 255, 1);
  4826. box-sizing:border-box;
  4827. border-width:1px;
  4828. border-style:solid;
  4829. border-color:rgba(242, 242, 242, 1);
  4830. border-radius:4px;
  4831. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4832. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4833. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4835. font-weight:400;
  4836. font-style:normal;
  4837. font-size:14px;
  4838. text-align:left;
  4839. }
  4840. #u15919 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:1423px;
  4844. top:260px;
  4845. width:100px;
  4846. height:100px;
  4847. display:flex;
  4848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:14px;
  4852. text-align:left;
  4853. }
  4854. #u15919 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 2px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u15919_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u15920_div {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:85px;
  4873. height:40px;
  4874. background:inherit;
  4875. background-color:rgba(255, 255, 255, 1);
  4876. border:none;
  4877. border-left:0px;
  4878. border-top:0px;
  4879. border-right:0px;
  4880. border-radius:0px;
  4881. border-bottom-right-radius:0px;
  4882. border-bottom-left-radius:0px;
  4883. -moz-box-shadow:none;
  4884. -webkit-box-shadow:none;
  4885. box-shadow:none;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:14px;
  4890. }
  4891. #u15920 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1431px;
  4895. top:310px;
  4896. width:85px;
  4897. height:40px;
  4898. display:flex;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:14px;
  4903. }
  4904. #u15920 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 2px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u15920_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. }
  4916. #u15921_div {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:85px;
  4922. height:40px;
  4923. background:inherit;
  4924. background-color:rgba(255, 255, 255, 1);
  4925. box-sizing:border-box;
  4926. border-width:1px;
  4927. border-style:solid;
  4928. border-color:rgba(215, 215, 215, 1);
  4929. border-left:0px;
  4930. border-top:0px;
  4931. border-right:0px;
  4932. border-radius:0px;
  4933. border-bottom-right-radius:0px;
  4934. border-bottom-left-radius:0px;
  4935. -moz-box-shadow:none;
  4936. -webkit-box-shadow:none;
  4937. box-shadow:none;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:14px;
  4942. }
  4943. #u15921 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:1431px;
  4947. top:270px;
  4948. width:85px;
  4949. height:40px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:14px;
  4955. }
  4956. #u15921 .text {
  4957. position:absolute;
  4958. align-self:center;
  4959. padding:2px 2px 2px 2px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u15921_text {
  4964. border-width:0px;
  4965. word-wrap:break-word;
  4966. text-transform:none;
  4967. }
  4968. #u15922 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:0px;
  4974. height:0px;
  4975. }
  4976. #u15923_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:800px;
  4982. height:1198px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 1);
  4985. box-sizing:border-box;
  4986. border-width:1px;
  4987. border-style:solid;
  4988. border-color:rgba(215, 215, 215, 1);
  4989. border-radius:0px;
  4990. -moz-box-shadow:none;
  4991. -webkit-box-shadow:none;
  4992. box-shadow:none;
  4993. }
  4994. #u15923 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:1642px;
  4998. top:44px;
  4999. width:800px;
  5000. height:1198px;
  5001. display:flex;
  5002. }
  5003. #u15923 .text {
  5004. position:absolute;
  5005. align-self:center;
  5006. padding:2px 2px 2px 2px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u15923_text {
  5011. border-width:0px;
  5012. word-wrap:break-word;
  5013. text-transform:none;
  5014. visibility:hidden;
  5015. }
  5016. #u15924_div {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:73px;
  5022. height:30px;
  5023. background:inherit;
  5024. background-color:rgba(255, 255, 255, 0);
  5025. border:none;
  5026. border-radius:0px;
  5027. -moz-box-shadow:none;
  5028. -webkit-box-shadow:none;
  5029. box-shadow:none;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:18px;
  5034. color:#000000;
  5035. line-height:30px;
  5036. }
  5037. #u15924 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:1662px;
  5041. top:64px;
  5042. width:73px;
  5043. height:30px;
  5044. display:flex;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:18px;
  5049. color:#000000;
  5050. line-height:30px;
  5051. }
  5052. #u15924 .text {
  5053. position:absolute;
  5054. align-self:flex-start;
  5055. padding:0px 0px 0px 0px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u15924_text {
  5060. border-width:0px;
  5061. white-space:nowrap;
  5062. text-transform:none;
  5063. }
  5064. #u15925_div {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:78px;
  5070. height:30px;
  5071. background:inherit;
  5072. background-color:rgba(255, 255, 255, 0);
  5073. border:none;
  5074. border-top:0px;
  5075. border-right:0px;
  5076. border-bottom:0px;
  5077. border-radius:0px;
  5078. border-top-left-radius:0px;
  5079. border-bottom-left-radius:0px;
  5080. -moz-box-shadow:none;
  5081. -webkit-box-shadow:none;
  5082. box-shadow:none;
  5083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. font-size:14px;
  5087. text-align:right;
  5088. }
  5089. #u15925 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:1706px;
  5093. top:266px;
  5094. width:78px;
  5095. height:30px;
  5096. display:flex;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:14px;
  5101. text-align:right;
  5102. }
  5103. #u15925 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:5px 0px 5px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u15925_text {
  5111. border-width:0px;
  5112. white-space:nowrap;
  5113. text-transform:none;
  5114. }
  5115. #u15926 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:0px;
  5121. height:0px;
  5122. }
  5123. #u15927_div {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:40px;
  5129. height:40px;
  5130. background:inherit;
  5131. background-color:rgba(255, 255, 255, 0);
  5132. border:none;
  5133. border-top:0px;
  5134. border-right:0px;
  5135. border-bottom:0px;
  5136. border-radius:0px;
  5137. border-top-left-radius:0px;
  5138. border-bottom-left-radius:0px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5143. font-weight:500;
  5144. font-style:normal;
  5145. font-size:18px;
  5146. text-align:center;
  5147. }
  5148. #u15927 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:2402px;
  5152. top:44px;
  5153. width:40px;
  5154. height:40px;
  5155. display:flex;
  5156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5157. font-weight:500;
  5158. font-style:normal;
  5159. font-size:18px;
  5160. text-align:center;
  5161. }
  5162. #u15927 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:5px 10px 5px 0px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u15927_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. }
  5174. #u15928_img {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:13px;
  5180. height:17px;
  5181. }
  5182. #u15928 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:2389px;
  5186. top:56px;
  5187. width:13px;
  5188. height:17px;
  5189. display:flex;
  5190. }
  5191. #u15928 .text {
  5192. position:absolute;
  5193. align-self:center;
  5194. padding:2px 2px 2px 2px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u15928_text {
  5199. border-width:0px;
  5200. word-wrap:break-word;
  5201. text-transform:none;
  5202. visibility:hidden;
  5203. }
  5204. #u15929 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:0px;
  5210. height:0px;
  5211. }
  5212. #u15930_div {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:800px;
  5218. height:60px;
  5219. background:inherit;
  5220. background-color:rgba(255, 255, 255, 1);
  5221. box-sizing:border-box;
  5222. border-width:1px;
  5223. border-style:solid;
  5224. border-color:rgba(215, 215, 215, 1);
  5225. border-radius:0px;
  5226. -moz-box-shadow:none;
  5227. -webkit-box-shadow:none;
  5228. box-shadow:none;
  5229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5230. font-weight:400;
  5231. font-style:normal;
  5232. font-size:14px;
  5233. color:#AAAAAA;
  5234. text-align:center;
  5235. line-height:30px;
  5236. }
  5237. #u15930 {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:1642px;
  5241. top:1182px;
  5242. width:800px;
  5243. height:60px;
  5244. display:flex;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. color:#AAAAAA;
  5250. text-align:center;
  5251. line-height:30px;
  5252. }
  5253. #u15930 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:5px 10px 5px 10px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u15930_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u15931_div {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:80px;
  5272. height:30px;
  5273. background:inherit;
  5274. background-color:rgba(24, 144, 255, 1);
  5275. border:none;
  5276. border-radius:4px;
  5277. -moz-box-shadow:none;
  5278. -webkit-box-shadow:none;
  5279. box-shadow:none;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:14px;
  5284. color:#FFFFFF;
  5285. }
  5286. #u15931 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:2317px;
  5290. top:1197px;
  5291. width:80px;
  5292. height:30px;
  5293. display:flex;
  5294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5295. font-weight:400;
  5296. font-style:normal;
  5297. font-size:14px;
  5298. color:#FFFFFF;
  5299. }
  5300. #u15931 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 2px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u15931_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. }
  5312. #u15932_div {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:80px;
  5318. height:30px;
  5319. background:inherit;
  5320. background-color:rgba(255, 255, 255, 1);
  5321. box-sizing:border-box;
  5322. border-width:1px;
  5323. border-style:solid;
  5324. border-color:rgba(170, 170, 170, 1);
  5325. border-radius:4px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:14px;
  5333. }
  5334. #u15932 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:2218px;
  5338. top:1197px;
  5339. width:80px;
  5340. height:30px;
  5341. display:flex;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:14px;
  5346. }
  5347. #u15932 .text {
  5348. position:absolute;
  5349. align-self:center;
  5350. padding:2px 2px 2px 2px;
  5351. box-sizing:border-box;
  5352. width:100%;
  5353. }
  5354. #u15932_text {
  5355. border-width:0px;
  5356. word-wrap:break-word;
  5357. text-transform:none;
  5358. }
  5359. #u15933 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:0px;
  5365. height:0px;
  5366. }
  5367. #u15934_div {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:400px;
  5373. height:80px;
  5374. background:inherit;
  5375. background-color:rgba(255, 255, 255, 1);
  5376. box-sizing:border-box;
  5377. border-width:1px;
  5378. border-style:solid;
  5379. border-color:rgba(170, 170, 170, 1);
  5380. border-radius:4px;
  5381. -moz-box-shadow:none;
  5382. -webkit-box-shadow:none;
  5383. box-shadow:none;
  5384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. text-align:left;
  5388. }
  5389. #u15934 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:1794px;
  5393. top:361px;
  5394. width:400px;
  5395. height:80px;
  5396. display:flex;
  5397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. text-align:left;
  5401. }
  5402. #u15934 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 10px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u15934_text {
  5410. border-width:0px;
  5411. word-wrap:break-word;
  5412. text-transform:none;
  5413. visibility:hidden;
  5414. }
  5415. #u15935_input {
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:188px;
  5420. height:31px;
  5421. padding:2px 2px 2px 2px;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:13px;
  5426. letter-spacing:normal;
  5427. color:#AAAAAA;
  5428. vertical-align:none;
  5429. text-align:left;
  5430. text-transform:none;
  5431. background-color:transparent;
  5432. border-color:transparent;
  5433. }
  5434. #u15935_input.disabled {
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:188px;
  5439. height:31px;
  5440. padding:2px 2px 2px 2px;
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:13px;
  5445. letter-spacing:normal;
  5446. color:#AAAAAA;
  5447. vertical-align:none;
  5448. text-align:left;
  5449. text-transform:none;
  5450. background-color:transparent;
  5451. border-color:transparent;
  5452. }
  5453. #u15935_div {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:188px;
  5459. height:31px;
  5460. background:inherit;
  5461. background-color:rgba(255, 255, 255, 0);
  5462. border:none;
  5463. border-radius:0px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. color:#AAAAAA;
  5471. }
  5472. #u15935 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:1804px;
  5476. top:366px;
  5477. width:188px;
  5478. height:31px;
  5479. display:flex;
  5480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. color:#AAAAAA;
  5484. }
  5485. #u15935 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 2px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u15935_div.disabled {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:188px;
  5498. height:31px;
  5499. background:inherit;
  5500. background-color:rgba(240, 240, 240, 1);
  5501. border:none;
  5502. border-radius:0px;
  5503. -moz-box-shadow:none;
  5504. -webkit-box-shadow:none;
  5505. box-shadow:none;
  5506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. color:#AAAAAA;
  5510. }
  5511. #u15935.disabled {
  5512. }
  5513. #u15936_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:39px;
  5519. height:24px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 0);
  5522. border:none;
  5523. border-top:0px;
  5524. border-right:0px;
  5525. border-bottom:0px;
  5526. border-radius:0px;
  5527. border-top-left-radius:0px;
  5528. border-bottom-left-radius:0px;
  5529. -moz-box-shadow:none;
  5530. -webkit-box-shadow:none;
  5531. box-shadow:none;
  5532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:10px;
  5536. color:#AAAAAA;
  5537. text-align:right;
  5538. }
  5539. #u15936 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:2152px;
  5543. top:416px;
  5544. width:39px;
  5545. height:24px;
  5546. display:flex;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:10px;
  5551. color:#AAAAAA;
  5552. text-align:right;
  5553. }
  5554. #u15936 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:5px 0px 5px 0px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u15936_text {
  5562. border-width:0px;
  5563. white-space:nowrap;
  5564. text-transform:none;
  5565. }
  5566. #u15937_div {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:78px;
  5572. height:30px;
  5573. background:inherit;
  5574. background-color:rgba(255, 255, 255, 0);
  5575. border:none;
  5576. border-top:0px;
  5577. border-right:0px;
  5578. border-bottom:0px;
  5579. border-radius:0px;
  5580. border-top-left-radius:0px;
  5581. border-bottom-left-radius:0px;
  5582. -moz-box-shadow:none;
  5583. -webkit-box-shadow:none;
  5584. box-shadow:none;
  5585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:14px;
  5589. text-align:right;
  5590. }
  5591. #u15937 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:1706px;
  5595. top:217px;
  5596. width:78px;
  5597. height:30px;
  5598. display:flex;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:14px;
  5603. text-align:right;
  5604. }
  5605. #u15937 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:5px 0px 5px 0px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u15937_text {
  5613. border-width:0px;
  5614. white-space:nowrap;
  5615. text-transform:none;
  5616. }
  5617. #u15938_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:71px;
  5623. height:30px;
  5624. background:inherit;
  5625. background-color:rgba(255, 255, 255, 0);
  5626. border:none;
  5627. border-top:0px;
  5628. border-right:0px;
  5629. border-bottom:0px;
  5630. border-radius:0px;
  5631. border-top-left-radius:0px;
  5632. border-bottom-left-radius:0px;
  5633. -moz-box-shadow:none;
  5634. -webkit-box-shadow:none;
  5635. box-shadow:none;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:14px;
  5640. text-align:right;
  5641. }
  5642. #u15938 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:1713px;
  5646. top:366px;
  5647. width:71px;
  5648. height:30px;
  5649. display:flex;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:14px;
  5654. text-align:right;
  5655. }
  5656. #u15938 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:5px 0px 5px 0px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u15938_text {
  5664. border-width:0px;
  5665. white-space:nowrap;
  5666. text-transform:none;
  5667. }
  5668. #u15939 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:0px;
  5674. height:0px;
  5675. }
  5676. #u15940_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:400px;
  5682. height:40px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 1);
  5685. box-sizing:border-box;
  5686. border-width:1px;
  5687. border-style:solid;
  5688. border-color:rgba(170, 170, 170, 1);
  5689. border-radius:4px;
  5690. -moz-box-shadow:none;
  5691. -webkit-box-shadow:none;
  5692. box-shadow:none;
  5693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. text-align:left;
  5697. }
  5698. #u15940 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:1794px;
  5702. top:212px;
  5703. width:400px;
  5704. height:40px;
  5705. display:flex;
  5706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. text-align:left;
  5710. }
  5711. #u15940 .text {
  5712. position:absolute;
  5713. align-self:center;
  5714. padding:2px 2px 2px 10px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u15940_text {
  5719. border-width:0px;
  5720. word-wrap:break-word;
  5721. text-transform:none;
  5722. visibility:hidden;
  5723. }
  5724. #u15941_input {
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:380px;
  5729. height:31px;
  5730. padding:2px 2px 2px 2px;
  5731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:13px;
  5735. letter-spacing:normal;
  5736. color:#AAAAAA;
  5737. vertical-align:none;
  5738. text-align:left;
  5739. text-transform:none;
  5740. background-color:transparent;
  5741. border-color:transparent;
  5742. }
  5743. #u15941_input.disabled {
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:380px;
  5748. height:31px;
  5749. padding:2px 2px 2px 2px;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:13px;
  5754. letter-spacing:normal;
  5755. color:#AAAAAA;
  5756. vertical-align:none;
  5757. text-align:left;
  5758. text-transform:none;
  5759. background-color:transparent;
  5760. border-color:transparent;
  5761. }
  5762. #u15941_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:380px;
  5768. height:31px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 0);
  5771. border:none;
  5772. border-radius:0px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. color:#AAAAAA;
  5780. }
  5781. #u15941 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:1804px;
  5785. top:217px;
  5786. width:380px;
  5787. height:31px;
  5788. display:flex;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. color:#AAAAAA;
  5793. }
  5794. #u15941 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 2px 2px 2px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u15941_div.disabled {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:380px;
  5807. height:31px;
  5808. background:inherit;
  5809. background-color:rgba(240, 240, 240, 1);
  5810. border:none;
  5811. border-radius:0px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. color:#AAAAAA;
  5819. }
  5820. #u15941.disabled {
  5821. }
  5822. #u15942 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:0px;
  5828. height:0px;
  5829. }
  5830. #u15943_div {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:400px;
  5836. height:40px;
  5837. background:inherit;
  5838. background-color:rgba(255, 255, 255, 1);
  5839. box-sizing:border-box;
  5840. border-width:1px;
  5841. border-style:solid;
  5842. border-color:rgba(170, 170, 170, 1);
  5843. border-radius:4px;
  5844. -moz-box-shadow:none;
  5845. -webkit-box-shadow:none;
  5846. box-shadow:none;
  5847. }
  5848. #u15943 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:1794px;
  5852. top:311px;
  5853. width:400px;
  5854. height:40px;
  5855. display:flex;
  5856. }
  5857. #u15943 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:2px 2px 2px 0px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u15943_text {
  5865. border-width:0px;
  5866. word-wrap:break-word;
  5867. text-transform:none;
  5868. visibility:hidden;
  5869. }
  5870. #u15944_input {
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:380px;
  5875. height:30px;
  5876. padding:2px 2px 2px 0px;
  5877. font-family:'ArialMT', 'Arial', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:13px;
  5881. letter-spacing:normal;
  5882. color:#AAAAAA;
  5883. vertical-align:none;
  5884. text-align:left;
  5885. text-transform:none;
  5886. background-color:transparent;
  5887. border-color:transparent;
  5888. }
  5889. #u15944_input.disabled {
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:380px;
  5894. height:30px;
  5895. padding:2px 2px 2px 0px;
  5896. font-family:'ArialMT', 'Arial', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:13px;
  5900. letter-spacing:normal;
  5901. color:#AAAAAA;
  5902. vertical-align:none;
  5903. text-align:left;
  5904. text-transform:none;
  5905. background-color:transparent;
  5906. border-color:transparent;
  5907. }
  5908. #u15944_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:380px;
  5914. height:30px;
  5915. background:inherit;
  5916. background-color:rgba(255, 255, 255, 1);
  5917. border:none;
  5918. border-radius:0px;
  5919. -moz-box-shadow:none;
  5920. -webkit-box-shadow:none;
  5921. box-shadow:none;
  5922. color:#AAAAAA;
  5923. }
  5924. #u15944 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:1804px;
  5928. top:315px;
  5929. width:380px;
  5930. height:30px;
  5931. display:flex;
  5932. color:#AAAAAA;
  5933. }
  5934. #u15944 .text {
  5935. position:absolute;
  5936. align-self:flex-start;
  5937. padding:2px 2px 2px 0px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u15944_div.disabled {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:380px;
  5947. height:30px;
  5948. background:inherit;
  5949. background-color:rgba(240, 240, 240, 1);
  5950. border:none;
  5951. border-radius:0px;
  5952. -moz-box-shadow:none;
  5953. -webkit-box-shadow:none;
  5954. box-shadow:none;
  5955. color:#AAAAAA;
  5956. }
  5957. #u15944.disabled {
  5958. }
  5959. .u15944_input_option {
  5960. }
  5961. #u15945 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:0px;
  5967. height:0px;
  5968. }
  5969. #u15946_div {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:400px;
  5975. height:40px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 1);
  5978. box-sizing:border-box;
  5979. border-width:1px;
  5980. border-style:solid;
  5981. border-color:rgba(170, 170, 170, 1);
  5982. border-radius:4px;
  5983. -moz-box-shadow:none;
  5984. -webkit-box-shadow:none;
  5985. box-shadow:none;
  5986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. text-align:left;
  5990. }
  5991. #u15946 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:1794px;
  5995. top:261px;
  5996. width:400px;
  5997. height:40px;
  5998. display:flex;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. text-align:left;
  6003. }
  6004. #u15946 .text {
  6005. position:absolute;
  6006. align-self:center;
  6007. padding:2px 2px 2px 10px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u15946_text {
  6012. border-width:0px;
  6013. word-wrap:break-word;
  6014. text-transform:none;
  6015. visibility:hidden;
  6016. }
  6017. #u15947_input {
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:380px;
  6022. height:31px;
  6023. padding:2px 2px 2px 2px;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:13px;
  6028. letter-spacing:normal;
  6029. color:#AAAAAA;
  6030. vertical-align:none;
  6031. text-align:left;
  6032. text-transform:none;
  6033. background-color:transparent;
  6034. border-color:transparent;
  6035. }
  6036. #u15947_input.disabled {
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:380px;
  6041. height:31px;
  6042. padding:2px 2px 2px 2px;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:13px;
  6047. letter-spacing:normal;
  6048. color:#AAAAAA;
  6049. vertical-align:none;
  6050. text-align:left;
  6051. text-transform:none;
  6052. background-color:transparent;
  6053. border-color:transparent;
  6054. }
  6055. #u15947_div {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:380px;
  6061. height:31px;
  6062. background:inherit;
  6063. background-color:rgba(255, 255, 255, 0);
  6064. border:none;
  6065. border-radius:0px;
  6066. -moz-box-shadow:none;
  6067. -webkit-box-shadow:none;
  6068. box-shadow:none;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. color:#AAAAAA;
  6073. }
  6074. #u15947 {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:1804px;
  6078. top:266px;
  6079. width:380px;
  6080. height:31px;
  6081. display:flex;
  6082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. color:#AAAAAA;
  6086. }
  6087. #u15947 .text {
  6088. position:absolute;
  6089. align-self:center;
  6090. padding:2px 2px 2px 2px;
  6091. box-sizing:border-box;
  6092. width:100%;
  6093. }
  6094. #u15947_div.disabled {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:380px;
  6100. height:31px;
  6101. background:inherit;
  6102. background-color:rgba(240, 240, 240, 1);
  6103. border:none;
  6104. border-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. color:#AAAAAA;
  6112. }
  6113. #u15947.disabled {
  6114. }
  6115. #u15948_div {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:78px;
  6121. height:30px;
  6122. background:inherit;
  6123. background-color:rgba(255, 255, 255, 0);
  6124. border:none;
  6125. border-top:0px;
  6126. border-right:0px;
  6127. border-bottom:0px;
  6128. border-radius:0px;
  6129. border-top-left-radius:0px;
  6130. border-bottom-left-radius:0px;
  6131. -moz-box-shadow:none;
  6132. -webkit-box-shadow:none;
  6133. box-shadow:none;
  6134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:14px;
  6138. text-align:right;
  6139. }
  6140. #u15948 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:1706px;
  6144. top:316px;
  6145. width:78px;
  6146. height:30px;
  6147. display:flex;
  6148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. font-size:14px;
  6152. text-align:right;
  6153. }
  6154. #u15948 .text {
  6155. position:absolute;
  6156. align-self:center;
  6157. padding:5px 0px 5px 0px;
  6158. box-sizing:border-box;
  6159. width:100%;
  6160. }
  6161. #u15948_text {
  6162. border-width:0px;
  6163. white-space:nowrap;
  6164. text-transform:none;
  6165. }
  6166. #u15949 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:0px;
  6172. height:0px;
  6173. }
  6174. #u15950_div {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:400px;
  6180. height:40px;
  6181. background:inherit;
  6182. background-color:rgba(255, 255, 255, 1);
  6183. box-sizing:border-box;
  6184. border-width:1px;
  6185. border-style:solid;
  6186. border-color:rgba(170, 170, 170, 1);
  6187. border-radius:4px;
  6188. -moz-box-shadow:none;
  6189. -webkit-box-shadow:none;
  6190. box-shadow:none;
  6191. }
  6192. #u15950 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:1794px;
  6196. top:162px;
  6197. width:400px;
  6198. height:40px;
  6199. display:flex;
  6200. }
  6201. #u15950 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 0px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u15950_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. visibility:hidden;
  6213. }
  6214. #u15951_input {
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:380px;
  6219. height:30px;
  6220. padding:2px 2px 2px 0px;
  6221. font-family:'ArialMT', 'Arial', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:13px;
  6225. letter-spacing:normal;
  6226. color:#AAAAAA;
  6227. vertical-align:none;
  6228. text-align:left;
  6229. text-transform:none;
  6230. background-color:transparent;
  6231. border-color:transparent;
  6232. }
  6233. #u15951_input.disabled {
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:380px;
  6238. height:30px;
  6239. padding:2px 2px 2px 0px;
  6240. font-family:'ArialMT', 'Arial', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:13px;
  6244. letter-spacing:normal;
  6245. color:#AAAAAA;
  6246. vertical-align:none;
  6247. text-align:left;
  6248. text-transform:none;
  6249. background-color:transparent;
  6250. border-color:transparent;
  6251. }
  6252. #u15951_div {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:0px;
  6256. top:0px;
  6257. width:380px;
  6258. height:30px;
  6259. background:inherit;
  6260. background-color:rgba(255, 255, 255, 1);
  6261. border:none;
  6262. border-radius:0px;
  6263. -moz-box-shadow:none;
  6264. -webkit-box-shadow:none;
  6265. box-shadow:none;
  6266. color:#AAAAAA;
  6267. }
  6268. #u15951 {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:1803px;
  6272. top:166px;
  6273. width:380px;
  6274. height:30px;
  6275. display:flex;
  6276. color:#AAAAAA;
  6277. }
  6278. #u15951 .text {
  6279. position:absolute;
  6280. align-self:flex-start;
  6281. padding:2px 2px 2px 0px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u15951_div.disabled {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:380px;
  6291. height:30px;
  6292. background:inherit;
  6293. background-color:rgba(240, 240, 240, 1);
  6294. border:none;
  6295. border-radius:0px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. color:#AAAAAA;
  6300. }
  6301. #u15951.disabled {
  6302. }
  6303. .u15951_input_option {
  6304. }
  6305. #u15952_div {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:78px;
  6311. height:30px;
  6312. background:inherit;
  6313. background-color:rgba(255, 255, 255, 0);
  6314. border:none;
  6315. border-top:0px;
  6316. border-right:0px;
  6317. border-bottom:0px;
  6318. border-radius:0px;
  6319. border-top-left-radius:0px;
  6320. border-bottom-left-radius:0px;
  6321. -moz-box-shadow:none;
  6322. -webkit-box-shadow:none;
  6323. box-shadow:none;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:14px;
  6328. text-align:right;
  6329. }
  6330. #u15952 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:1706px;
  6334. top:128px;
  6335. width:78px;
  6336. height:30px;
  6337. display:flex;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:14px;
  6342. text-align:right;
  6343. }
  6344. #u15952 .text {
  6345. position:absolute;
  6346. align-self:center;
  6347. padding:5px 0px 5px 0px;
  6348. box-sizing:border-box;
  6349. width:100%;
  6350. }
  6351. #u15952_text {
  6352. border-width:0px;
  6353. white-space:nowrap;
  6354. text-transform:none;
  6355. }
  6356. #u15953 label {
  6357. left:0px;
  6358. width:100%;
  6359. }
  6360. #u15953_img {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:3px;
  6365. width:12px;
  6366. height:12px;
  6367. }
  6368. #u15953 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:1794px;
  6372. top:133px;
  6373. width:100px;
  6374. height:18px;
  6375. display:flex;
  6376. }
  6377. #u15953 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:0px 2px 0px 2px;
  6381. box-sizing:border-box;
  6382. }
  6383. #u15953_img.selected {
  6384. }
  6385. #u15953.selected {
  6386. }
  6387. #u15953_img.disabled {
  6388. }
  6389. #u15953.disabled {
  6390. }
  6391. #u15953_img.selectedDisabled {
  6392. }
  6393. #u15953.selectedDisabled {
  6394. }
  6395. #u15953_text {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:14px;
  6399. top:0px;
  6400. width:84px;
  6401. word-wrap:break-word;
  6402. text-transform:none;
  6403. }
  6404. #u15953_input {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:0px;
  6410. height:0px;
  6411. opacity:0;
  6412. }
  6413. #u15954 label {
  6414. left:0px;
  6415. width:100%;
  6416. }
  6417. #u15954_img {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:3px;
  6422. width:12px;
  6423. height:12px;
  6424. }
  6425. #u15954 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:1915px;
  6429. top:133px;
  6430. width:100px;
  6431. height:18px;
  6432. display:flex;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. }
  6437. #u15954 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:0px 2px 0px 2px;
  6441. box-sizing:border-box;
  6442. }
  6443. #u15954_img.selected {
  6444. }
  6445. #u15954.selected {
  6446. }
  6447. #u15954_img.disabled {
  6448. }
  6449. #u15954.disabled {
  6450. }
  6451. #u15954_img.selectedDisabled {
  6452. }
  6453. #u15954.selectedDisabled {
  6454. }
  6455. #u15954_text {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:14px;
  6459. top:0px;
  6460. width:84px;
  6461. word-wrap:break-word;
  6462. text-transform:none;
  6463. }
  6464. #u15954_input {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:0px;
  6468. top:0px;
  6469. width:0px;
  6470. height:0px;
  6471. opacity:0;
  6472. }
  6473. #u15955_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:657px;
  6479. height:130px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 0);
  6482. border:none;
  6483. border-top:0px;
  6484. border-right:0px;
  6485. border-bottom:0px;
  6486. border-radius:0px;
  6487. border-top-left-radius:0px;
  6488. border-bottom-left-radius:0px;
  6489. -moz-box-shadow:none;
  6490. -webkit-box-shadow:none;
  6491. box-shadow:none;
  6492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:14px;
  6496. color:#D9001B;
  6497. line-height:30px;
  6498. }
  6499. #u15955 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:1673px;
  6503. top:472px;
  6504. width:657px;
  6505. height:130px;
  6506. display:flex;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:14px;
  6511. color:#D9001B;
  6512. line-height:30px;
  6513. }
  6514. #u15955 .text {
  6515. position:absolute;
  6516. align-self:flex-start;
  6517. padding:5px 0px 5px 0px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u15955_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. }
  6526. #u15956_div {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:146px;
  6532. height:30px;
  6533. background:inherit;
  6534. background-color:rgba(24, 144, 255, 1);
  6535. border:none;
  6536. border-radius:4px;
  6537. -moz-box-shadow:none;
  6538. -webkit-box-shadow:none;
  6539. box-shadow:none;
  6540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:14px;
  6544. color:#FFFFFF;
  6545. }
  6546. #u15956 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:446px;
  6550. top:150px;
  6551. width:146px;
  6552. height:30px;
  6553. display:flex;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:14px;
  6558. color:#FFFFFF;
  6559. }
  6560. #u15956 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:5px 15px 5px 15px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u15956_text {
  6568. border-width:0px;
  6569. white-space:nowrap;
  6570. text-transform:none;
  6571. }
  6572. #u15957_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:849px;
  6578. height:120px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 0);
  6581. border:none;
  6582. border-left:0px;
  6583. border-top:0px;
  6584. border-right:0px;
  6585. border-radius:0px;
  6586. border-bottom-right-radius:0px;
  6587. border-bottom-left-radius:0px;
  6588. -moz-box-shadow:none;
  6589. -webkit-box-shadow:none;
  6590. box-shadow:none;
  6591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:18px;
  6595. color:#D9001B;
  6596. line-height:40px;
  6597. }
  6598. #u15957 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:590px;
  6602. top:586px;
  6603. width:849px;
  6604. height:120px;
  6605. display:flex;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:18px;
  6610. color:#D9001B;
  6611. line-height:40px;
  6612. }
  6613. #u15957 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:0px 0px 0px 0px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u15957_text {
  6621. border-width:0px;
  6622. white-space:nowrap;
  6623. text-transform:none;
  6624. }
  6625. #u15958 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:0px;
  6631. height:0px;
  6632. }
  6633. #u15959_div {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:163px;
  6639. height:30px;
  6640. background:inherit;
  6641. background-color:rgba(255, 255, 255, 1);
  6642. box-sizing:border-box;
  6643. border-width:1px;
  6644. border-style:solid;
  6645. border-color:rgba(215, 215, 215, 1);
  6646. border-radius:4px;
  6647. -moz-box-shadow:none;
  6648. -webkit-box-shadow:none;
  6649. box-shadow:none;
  6650. font-size:11px;
  6651. }
  6652. #u15959 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:499px;
  6656. top:101px;
  6657. width:163px;
  6658. height:30px;
  6659. display:flex;
  6660. font-size:11px;
  6661. }
  6662. #u15959 .text {
  6663. position:absolute;
  6664. align-self:center;
  6665. padding:2px 2px 2px 2px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u15959_text {
  6670. border-width:0px;
  6671. word-wrap:break-word;
  6672. text-transform:none;
  6673. visibility:hidden;
  6674. }
  6675. #u15960_input {
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:147px;
  6680. height:23px;
  6681. padding:2px 2px 2px 2px;
  6682. font-family:'ArialMT', 'Arial', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:11px;
  6686. letter-spacing:normal;
  6687. color:#AAAAAA;
  6688. vertical-align:none;
  6689. text-align:left;
  6690. text-transform:none;
  6691. background-color:transparent;
  6692. border-color:transparent;
  6693. }
  6694. #u15960_input.disabled {
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:147px;
  6699. height:23px;
  6700. padding:2px 2px 2px 2px;
  6701. font-family:'ArialMT', 'Arial', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:11px;
  6705. letter-spacing:normal;
  6706. color:#AAAAAA;
  6707. vertical-align:none;
  6708. text-align:left;
  6709. text-transform:none;
  6710. background-color:transparent;
  6711. border-color:transparent;
  6712. }
  6713. #u15960_div {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:147px;
  6719. height:23px;
  6720. background:inherit;
  6721. background-color:rgba(255, 255, 255, 1);
  6722. border:none;
  6723. border-radius:0px;
  6724. -moz-box-shadow:none;
  6725. -webkit-box-shadow:none;
  6726. box-shadow:none;
  6727. font-size:11px;
  6728. color:#AAAAAA;
  6729. }
  6730. #u15960 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:508px;
  6734. top:103px;
  6735. width:147px;
  6736. height:23px;
  6737. display:flex;
  6738. font-size:11px;
  6739. color:#AAAAAA;
  6740. }
  6741. #u15960 .text {
  6742. position:absolute;
  6743. align-self:flex-start;
  6744. padding:2px 2px 2px 2px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u15960_div.disabled {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:147px;
  6754. height:23px;
  6755. background:inherit;
  6756. background-color:rgba(240, 240, 240, 1);
  6757. border:none;
  6758. border-radius:0px;
  6759. -moz-box-shadow:none;
  6760. -webkit-box-shadow:none;
  6761. box-shadow:none;
  6762. font-size:11px;
  6763. color:#AAAAAA;
  6764. }
  6765. #u15960.disabled {
  6766. }
  6767. .u15960_input_option {
  6768. font-size:11px;
  6769. }
  6770. #u15961 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:0px;
  6776. height:0px;
  6777. }
  6778. #u15962_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:163px;
  6784. height:30px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 1);
  6787. box-sizing:border-box;
  6788. border-width:1px;
  6789. border-style:solid;
  6790. border-color:rgba(215, 215, 215, 1);
  6791. border-radius:4px;
  6792. -moz-box-shadow:none;
  6793. -webkit-box-shadow:none;
  6794. box-shadow:none;
  6795. font-size:11px;
  6796. }
  6797. #u15962 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:672px;
  6801. top:100px;
  6802. width:163px;
  6803. height:30px;
  6804. display:flex;
  6805. font-size:11px;
  6806. }
  6807. #u15962 .text {
  6808. position:absolute;
  6809. align-self:center;
  6810. padding:2px 2px 2px 2px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u15962_text {
  6815. border-width:0px;
  6816. word-wrap:break-word;
  6817. text-transform:none;
  6818. visibility:hidden;
  6819. }
  6820. #u15963_input {
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:147px;
  6825. height:23px;
  6826. padding:2px 2px 2px 2px;
  6827. font-family:'ArialMT', 'Arial', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:11px;
  6831. letter-spacing:normal;
  6832. color:#AAAAAA;
  6833. vertical-align:none;
  6834. text-align:left;
  6835. text-transform:none;
  6836. background-color:transparent;
  6837. border-color:transparent;
  6838. }
  6839. #u15963_input.disabled {
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:147px;
  6844. height:23px;
  6845. padding:2px 2px 2px 2px;
  6846. font-family:'ArialMT', 'Arial', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:11px;
  6850. letter-spacing:normal;
  6851. color:#AAAAAA;
  6852. vertical-align:none;
  6853. text-align:left;
  6854. text-transform:none;
  6855. background-color:transparent;
  6856. border-color:transparent;
  6857. }
  6858. #u15963_div {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:147px;
  6864. height:23px;
  6865. background:inherit;
  6866. background-color:rgba(255, 255, 255, 1);
  6867. border:none;
  6868. border-radius:0px;
  6869. -moz-box-shadow:none;
  6870. -webkit-box-shadow:none;
  6871. box-shadow:none;
  6872. font-size:11px;
  6873. color:#AAAAAA;
  6874. }
  6875. #u15963 {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:681px;
  6879. top:102px;
  6880. width:147px;
  6881. height:23px;
  6882. display:flex;
  6883. font-size:11px;
  6884. color:#AAAAAA;
  6885. }
  6886. #u15963 .text {
  6887. position:absolute;
  6888. align-self:flex-start;
  6889. padding:2px 2px 2px 2px;
  6890. box-sizing:border-box;
  6891. width:100%;
  6892. }
  6893. #u15963_div.disabled {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:147px;
  6899. height:23px;
  6900. background:inherit;
  6901. background-color:rgba(240, 240, 240, 1);
  6902. border:none;
  6903. border-radius:0px;
  6904. -moz-box-shadow:none;
  6905. -webkit-box-shadow:none;
  6906. box-shadow:none;
  6907. font-size:11px;
  6908. color:#AAAAAA;
  6909. }
  6910. #u15963.disabled {
  6911. }
  6912. .u15963_input_option {
  6913. font-size:11px;
  6914. }
  6915. #u15964 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:0px;
  6921. height:0px;
  6922. }
  6923. #u15965_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:163px;
  6929. height:30px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 1);
  6932. box-sizing:border-box;
  6933. border-width:1px;
  6934. border-style:solid;
  6935. border-color:rgba(215, 215, 215, 1);
  6936. border-radius:4px;
  6937. -moz-box-shadow:none;
  6938. -webkit-box-shadow:none;
  6939. box-shadow:none;
  6940. font-size:11px;
  6941. }
  6942. #u15965 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:845px;
  6946. top:100px;
  6947. width:163px;
  6948. height:30px;
  6949. display:flex;
  6950. font-size:11px;
  6951. }
  6952. #u15965 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u15965_text {
  6960. border-width:0px;
  6961. word-wrap:break-word;
  6962. text-transform:none;
  6963. visibility:hidden;
  6964. }
  6965. #u15966_input {
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:147px;
  6970. height:23px;
  6971. padding:2px 2px 2px 2px;
  6972. font-family:'ArialMT', 'Arial', sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. font-size:11px;
  6976. letter-spacing:normal;
  6977. color:#AAAAAA;
  6978. vertical-align:none;
  6979. text-align:left;
  6980. text-transform:none;
  6981. background-color:transparent;
  6982. border-color:transparent;
  6983. }
  6984. #u15966_input.disabled {
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:147px;
  6989. height:23px;
  6990. padding:2px 2px 2px 2px;
  6991. font-family:'ArialMT', 'Arial', sans-serif;
  6992. font-weight:400;
  6993. font-style:normal;
  6994. font-size:11px;
  6995. letter-spacing:normal;
  6996. color:#AAAAAA;
  6997. vertical-align:none;
  6998. text-align:left;
  6999. text-transform:none;
  7000. background-color:transparent;
  7001. border-color:transparent;
  7002. }
  7003. #u15966_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:147px;
  7009. height:23px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 1);
  7012. border:none;
  7013. border-radius:0px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. font-size:11px;
  7018. color:#AAAAAA;
  7019. }
  7020. #u15966 {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:854px;
  7024. top:102px;
  7025. width:147px;
  7026. height:23px;
  7027. display:flex;
  7028. font-size:11px;
  7029. color:#AAAAAA;
  7030. }
  7031. #u15966 .text {
  7032. position:absolute;
  7033. align-self:flex-start;
  7034. padding:2px 2px 2px 2px;
  7035. box-sizing:border-box;
  7036. width:100%;
  7037. }
  7038. #u15966_div.disabled {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:147px;
  7044. height:23px;
  7045. background:inherit;
  7046. background-color:rgba(240, 240, 240, 1);
  7047. border:none;
  7048. border-radius:0px;
  7049. -moz-box-shadow:none;
  7050. -webkit-box-shadow:none;
  7051. box-shadow:none;
  7052. font-size:11px;
  7053. color:#AAAAAA;
  7054. }
  7055. #u15966.disabled {
  7056. }
  7057. .u15966_input_option {
  7058. font-size:11px;
  7059. }
  7060. #u15967 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:0px;
  7066. height:0px;
  7067. }
  7068. #u15968_div {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:163px;
  7074. height:30px;
  7075. background:inherit;
  7076. background-color:rgba(255, 255, 255, 1);
  7077. box-sizing:border-box;
  7078. border-width:1px;
  7079. border-style:solid;
  7080. border-color:rgba(215, 215, 215, 1);
  7081. border-radius:4px;
  7082. -moz-box-shadow:none;
  7083. -webkit-box-shadow:none;
  7084. box-shadow:none;
  7085. font-size:11px;
  7086. }
  7087. #u15968 {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:1018px;
  7091. top:98px;
  7092. width:163px;
  7093. height:30px;
  7094. display:flex;
  7095. font-size:11px;
  7096. }
  7097. #u15968 .text {
  7098. position:absolute;
  7099. align-self:center;
  7100. padding:2px 2px 2px 2px;
  7101. box-sizing:border-box;
  7102. width:100%;
  7103. }
  7104. #u15968_text {
  7105. border-width:0px;
  7106. word-wrap:break-word;
  7107. text-transform:none;
  7108. visibility:hidden;
  7109. }
  7110. #u15969_input {
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:147px;
  7115. height:23px;
  7116. padding:2px 2px 2px 2px;
  7117. font-family:'ArialMT', 'Arial', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:11px;
  7121. letter-spacing:normal;
  7122. color:#AAAAAA;
  7123. vertical-align:none;
  7124. text-align:left;
  7125. text-transform:none;
  7126. background-color:transparent;
  7127. border-color:transparent;
  7128. }
  7129. #u15969_input.disabled {
  7130. position:absolute;
  7131. left:0px;
  7132. top:0px;
  7133. width:147px;
  7134. height:23px;
  7135. padding:2px 2px 2px 2px;
  7136. font-family:'ArialMT', 'Arial', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:11px;
  7140. letter-spacing:normal;
  7141. color:#AAAAAA;
  7142. vertical-align:none;
  7143. text-align:left;
  7144. text-transform:none;
  7145. background-color:transparent;
  7146. border-color:transparent;
  7147. }
  7148. #u15969_div {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:147px;
  7154. height:23px;
  7155. background:inherit;
  7156. background-color:rgba(255, 255, 255, 1);
  7157. border:none;
  7158. border-radius:0px;
  7159. -moz-box-shadow:none;
  7160. -webkit-box-shadow:none;
  7161. box-shadow:none;
  7162. font-size:11px;
  7163. color:#AAAAAA;
  7164. }
  7165. #u15969 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:1027px;
  7169. top:100px;
  7170. width:147px;
  7171. height:23px;
  7172. display:flex;
  7173. font-size:11px;
  7174. color:#AAAAAA;
  7175. }
  7176. #u15969 .text {
  7177. position:absolute;
  7178. align-self:flex-start;
  7179. padding:2px 2px 2px 2px;
  7180. box-sizing:border-box;
  7181. width:100%;
  7182. }
  7183. #u15969_div.disabled {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:147px;
  7189. height:23px;
  7190. background:inherit;
  7191. background-color:rgba(240, 240, 240, 1);
  7192. border:none;
  7193. border-radius:0px;
  7194. -moz-box-shadow:none;
  7195. -webkit-box-shadow:none;
  7196. box-shadow:none;
  7197. font-size:11px;
  7198. color:#AAAAAA;
  7199. }
  7200. #u15969.disabled {
  7201. }
  7202. .u15969_input_option {
  7203. font-size:11px;
  7204. }
  7205. #u15970 {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:0px;
  7209. top:0px;
  7210. width:0px;
  7211. height:0px;
  7212. }
  7213. #u15971_div {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:163px;
  7219. height:30px;
  7220. background:inherit;
  7221. background-color:rgba(255, 255, 255, 1);
  7222. box-sizing:border-box;
  7223. border-width:1px;
  7224. border-style:solid;
  7225. border-color:rgba(215, 215, 215, 1);
  7226. border-radius:4px;
  7227. -moz-box-shadow:none;
  7228. -webkit-box-shadow:none;
  7229. box-shadow:none;
  7230. font-size:11px;
  7231. }
  7232. #u15971 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:1191px;
  7236. top:99px;
  7237. width:163px;
  7238. height:30px;
  7239. display:flex;
  7240. font-size:11px;
  7241. }
  7242. #u15971 .text {
  7243. position:absolute;
  7244. align-self:center;
  7245. padding:2px 2px 2px 2px;
  7246. box-sizing:border-box;
  7247. width:100%;
  7248. }
  7249. #u15971_text {
  7250. border-width:0px;
  7251. word-wrap:break-word;
  7252. text-transform:none;
  7253. visibility:hidden;
  7254. }
  7255. #u15972_input {
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:147px;
  7260. height:23px;
  7261. padding:2px 2px 2px 2px;
  7262. font-family:'ArialMT', 'Arial', sans-serif;
  7263. font-weight:400;
  7264. font-style:normal;
  7265. font-size:11px;
  7266. letter-spacing:normal;
  7267. color:#AAAAAA;
  7268. vertical-align:none;
  7269. text-align:left;
  7270. text-transform:none;
  7271. background-color:transparent;
  7272. border-color:transparent;
  7273. }
  7274. #u15972_input.disabled {
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:147px;
  7279. height:23px;
  7280. padding:2px 2px 2px 2px;
  7281. font-family:'ArialMT', 'Arial', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:11px;
  7285. letter-spacing:normal;
  7286. color:#AAAAAA;
  7287. vertical-align:none;
  7288. text-align:left;
  7289. text-transform:none;
  7290. background-color:transparent;
  7291. border-color:transparent;
  7292. }
  7293. #u15972_div {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:147px;
  7299. height:23px;
  7300. background:inherit;
  7301. background-color:rgba(255, 255, 255, 1);
  7302. border:none;
  7303. border-radius:0px;
  7304. -moz-box-shadow:none;
  7305. -webkit-box-shadow:none;
  7306. box-shadow:none;
  7307. font-size:11px;
  7308. color:#AAAAAA;
  7309. }
  7310. #u15972 {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:1200px;
  7314. top:101px;
  7315. width:147px;
  7316. height:23px;
  7317. display:flex;
  7318. font-size:11px;
  7319. color:#AAAAAA;
  7320. }
  7321. #u15972 .text {
  7322. position:absolute;
  7323. align-self:flex-start;
  7324. padding:2px 2px 2px 2px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u15972_div.disabled {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:147px;
  7334. height:23px;
  7335. background:inherit;
  7336. background-color:rgba(240, 240, 240, 1);
  7337. border:none;
  7338. border-radius:0px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-size:11px;
  7343. color:#AAAAAA;
  7344. }
  7345. #u15972.disabled {
  7346. }
  7347. .u15972_input_option {
  7348. font-size:11px;
  7349. }
  7350. #u15973_img {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:50px;
  7356. height:31px;
  7357. }
  7358. #u15973 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:1319px;
  7362. top:230px;
  7363. width:50px;
  7364. height:31px;
  7365. display:flex;
  7366. }
  7367. #u15973 .text {
  7368. position:absolute;
  7369. align-self:center;
  7370. padding:2px 2px 2px 2px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u15973_text {
  7375. border-width:0px;
  7376. word-wrap:break-word;
  7377. text-transform:none;
  7378. visibility:hidden;
  7379. }
  7380. #u15974_img {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:0px;
  7384. top:0px;
  7385. width:50px;
  7386. height:31px;
  7387. }
  7388. #u15974 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:1319px;
  7392. top:269px;
  7393. width:50px;
  7394. height:31px;
  7395. display:flex;
  7396. }
  7397. #u15974 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:2px 2px 2px 2px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u15974_text {
  7405. border-width:0px;
  7406. word-wrap:break-word;
  7407. text-transform:none;
  7408. visibility:hidden;
  7409. }
  7410. #u15975 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:0px;
  7416. height:0px;
  7417. }
  7418. #u15976_div {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:200px;
  7424. height:1192px;
  7425. background:inherit;
  7426. background-color:rgba(255, 255, 255, 1);
  7427. border:none;
  7428. border-radius:0px;
  7429. -moz-box-shadow:none;
  7430. -webkit-box-shadow:none;
  7431. box-shadow:none;
  7432. }
  7433. #u15976 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:120px;
  7437. top:50px;
  7438. width:200px;
  7439. height:1192px;
  7440. display:flex;
  7441. }
  7442. #u15976 .text {
  7443. position:absolute;
  7444. align-self:center;
  7445. padding:2px 2px 2px 2px;
  7446. box-sizing:border-box;
  7447. width:100%;
  7448. }
  7449. #u15976_text {
  7450. border-width:0px;
  7451. word-wrap:break-word;
  7452. text-transform:none;
  7453. visibility:hidden;
  7454. }
  7455. #u15977_div {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:200px;
  7461. height:60px;
  7462. background:inherit;
  7463. background-color:rgba(224, 231, 247, 1);
  7464. border:none;
  7465. border-radius:0px;
  7466. -moz-box-shadow:none;
  7467. -webkit-box-shadow:none;
  7468. box-shadow:none;
  7469. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7470. font-weight:500;
  7471. font-style:normal;
  7472. font-size:18px;
  7473. }
  7474. #u15977 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:120px;
  7478. top:50px;
  7479. width:200px;
  7480. height:60px;
  7481. display:flex;
  7482. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7483. font-weight:500;
  7484. font-style:normal;
  7485. font-size:18px;
  7486. }
  7487. #u15977 .text {
  7488. position:absolute;
  7489. align-self:center;
  7490. padding:0px 0px 0px 20px;
  7491. box-sizing:border-box;
  7492. width:100%;
  7493. }
  7494. #u15977_text {
  7495. border-width:0px;
  7496. word-wrap:break-word;
  7497. text-transform:none;
  7498. }
  7499. #u15978_div {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:65px;
  7505. height:22px;
  7506. background:inherit;
  7507. background-color:rgba(255, 255, 255, 0);
  7508. border:none;
  7509. border-radius:0px;
  7510. -moz-box-shadow:none;
  7511. -webkit-box-shadow:none;
  7512. box-shadow:none;
  7513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7514. font-weight:400;
  7515. font-style:normal;
  7516. font-size:16px;
  7517. }
  7518. #u15978 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:147px;
  7522. top:392px;
  7523. width:65px;
  7524. height:22px;
  7525. display:flex;
  7526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:16px;
  7530. }
  7531. #u15978 .text {
  7532. position:absolute;
  7533. align-self:flex-start;
  7534. padding:0px 0px 0px 0px;
  7535. box-sizing:border-box;
  7536. width:100%;
  7537. }
  7538. #u15978_text {
  7539. border-width:0px;
  7540. white-space:nowrap;
  7541. text-transform:none;
  7542. }
  7543. #u15979_div {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:0px;
  7547. top:0px;
  7548. width:65px;
  7549. height:22px;
  7550. background:inherit;
  7551. background-color:rgba(255, 255, 255, 0);
  7552. border:none;
  7553. border-radius:0px;
  7554. -moz-box-shadow:none;
  7555. -webkit-box-shadow:none;
  7556. box-shadow:none;
  7557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:16px;
  7561. }
  7562. #u15979 {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:147px;
  7566. top:434px;
  7567. width:65px;
  7568. height:22px;
  7569. display:flex;
  7570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7571. font-weight:400;
  7572. font-style:normal;
  7573. font-size:16px;
  7574. }
  7575. #u15979 .text {
  7576. position:absolute;
  7577. align-self:flex-start;
  7578. padding:0px 0px 0px 0px;
  7579. box-sizing:border-box;
  7580. width:100%;
  7581. }
  7582. #u15979_text {
  7583. border-width:0px;
  7584. white-space:nowrap;
  7585. text-transform:none;
  7586. }
  7587. #u15980_img {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:201px;
  7593. height:2px;
  7594. }
  7595. #u15980 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:120px;
  7599. top:335px;
  7600. width:200px;
  7601. height:1px;
  7602. display:flex;
  7603. }
  7604. #u15980 .text {
  7605. position:absolute;
  7606. align-self:center;
  7607. padding:2px 2px 2px 2px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u15980_text {
  7612. border-width:0px;
  7613. word-wrap:break-word;
  7614. text-transform:none;
  7615. visibility:hidden;
  7616. }
  7617. #u15981_div {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:49px;
  7623. height:17px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 0);
  7626. border:none;
  7627. border-radius:0px;
  7628. -moz-box-shadow:none;
  7629. -webkit-box-shadow:none;
  7630. box-shadow:none;
  7631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. font-size:12px;
  7635. color:#AAAAAA;
  7636. }
  7637. #u15981 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:147px;
  7641. top:355px;
  7642. width:49px;
  7643. height:17px;
  7644. display:flex;
  7645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:12px;
  7649. color:#AAAAAA;
  7650. }
  7651. #u15981 .text {
  7652. position:absolute;
  7653. align-self:flex-start;
  7654. padding:0px 0px 0px 0px;
  7655. box-sizing:border-box;
  7656. width:100%;
  7657. }
  7658. #u15981_text {
  7659. border-width:0px;
  7660. white-space:nowrap;
  7661. text-transform:none;
  7662. }
  7663. #u15982_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:33px;
  7669. height:22px;
  7670. background:inherit;
  7671. background-color:rgba(255, 255, 255, 0);
  7672. border:none;
  7673. border-radius:0px;
  7674. -moz-box-shadow:none;
  7675. -webkit-box-shadow:none;
  7676. box-shadow:none;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:16px;
  7681. }
  7682. #u15982 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:147px;
  7686. top:476px;
  7687. width:33px;
  7688. height:22px;
  7689. display:flex;
  7690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7691. font-weight:400;
  7692. font-style:normal;
  7693. font-size:16px;
  7694. }
  7695. #u15982 .text {
  7696. position:absolute;
  7697. align-self:flex-start;
  7698. padding:0px 0px 0px 0px;
  7699. box-sizing:border-box;
  7700. width:100%;
  7701. }
  7702. #u15982_text {
  7703. border-width:0px;
  7704. white-space:nowrap;
  7705. text-transform:none;
  7706. }
  7707. #u15983_div {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:33px;
  7713. height:22px;
  7714. background:inherit;
  7715. background-color:rgba(255, 255, 255, 0);
  7716. border:none;
  7717. border-radius:0px;
  7718. -moz-box-shadow:none;
  7719. -webkit-box-shadow:none;
  7720. box-shadow:none;
  7721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:16px;
  7725. }
  7726. #u15983 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:147px;
  7730. top:518px;
  7731. width:33px;
  7732. height:22px;
  7733. display:flex;
  7734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:16px;
  7738. }
  7739. #u15983 .text {
  7740. position:absolute;
  7741. align-self:flex-start;
  7742. padding:0px 0px 0px 0px;
  7743. box-sizing:border-box;
  7744. width:100%;
  7745. }
  7746. #u15983_text {
  7747. border-width:0px;
  7748. white-space:nowrap;
  7749. text-transform:none;
  7750. }
  7751. #u15984_div {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:0px;
  7755. top:0px;
  7756. width:49px;
  7757. height:22px;
  7758. background:inherit;
  7759. background-color:rgba(255, 255, 255, 0);
  7760. border:none;
  7761. border-radius:0px;
  7762. -moz-box-shadow:none;
  7763. -webkit-box-shadow:none;
  7764. box-shadow:none;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:16px;
  7769. }
  7770. #u15984 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:147px;
  7774. top:560px;
  7775. width:49px;
  7776. height:22px;
  7777. display:flex;
  7778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7779. font-weight:400;
  7780. font-style:normal;
  7781. font-size:16px;
  7782. }
  7783. #u15984 .text {
  7784. position:absolute;
  7785. align-self:flex-start;
  7786. padding:0px 0px 0px 0px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u15984_text {
  7791. border-width:0px;
  7792. white-space:nowrap;
  7793. text-transform:none;
  7794. }
  7795. #u15985_div {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:65px;
  7801. height:22px;
  7802. background:inherit;
  7803. background-color:rgba(255, 255, 255, 0);
  7804. border:none;
  7805. border-radius:0px;
  7806. -moz-box-shadow:none;
  7807. -webkit-box-shadow:none;
  7808. box-shadow:none;
  7809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:16px;
  7813. }
  7814. #u15985 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:147px;
  7818. top:209px;
  7819. width:65px;
  7820. height:22px;
  7821. display:flex;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:16px;
  7826. }
  7827. #u15985 .text {
  7828. position:absolute;
  7829. align-self:flex-start;
  7830. padding:0px 0px 0px 0px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u15985_text {
  7835. border-width:0px;
  7836. white-space:nowrap;
  7837. text-transform:none;
  7838. }
  7839. #u15986_div {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:49px;
  7845. height:17px;
  7846. background:inherit;
  7847. background-color:rgba(255, 255, 255, 0);
  7848. border:none;
  7849. border-radius:0px;
  7850. -moz-box-shadow:none;
  7851. -webkit-box-shadow:none;
  7852. box-shadow:none;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:12px;
  7857. color:#AAAAAA;
  7858. }
  7859. #u15986 {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:147px;
  7863. top:130px;
  7864. width:49px;
  7865. height:17px;
  7866. display:flex;
  7867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:12px;
  7871. color:#AAAAAA;
  7872. }
  7873. #u15986 .text {
  7874. position:absolute;
  7875. align-self:flex-start;
  7876. padding:0px 0px 0px 0px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u15986_text {
  7881. border-width:0px;
  7882. white-space:nowrap;
  7883. text-transform:none;
  7884. }
  7885. #u15987_div {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:65px;
  7891. height:22px;
  7892. background:inherit;
  7893. background-color:rgba(255, 255, 255, 0);
  7894. border:none;
  7895. border-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. font-size:16px;
  7903. }
  7904. #u15987 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:147px;
  7908. top:251px;
  7909. width:65px;
  7910. height:22px;
  7911. display:flex;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:16px;
  7916. }
  7917. #u15987 .text {
  7918. position:absolute;
  7919. align-self:flex-start;
  7920. padding:0px 0px 0px 0px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u15987_text {
  7925. border-width:0px;
  7926. white-space:nowrap;
  7927. text-transform:none;
  7928. }
  7929. #u15988_div {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:65px;
  7935. height:22px;
  7936. background:inherit;
  7937. background-color:rgba(255, 255, 255, 0);
  7938. border:none;
  7939. border-radius:0px;
  7940. -moz-box-shadow:none;
  7941. -webkit-box-shadow:none;
  7942. box-shadow:none;
  7943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7944. font-weight:400;
  7945. font-style:normal;
  7946. font-size:16px;
  7947. }
  7948. #u15988 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:147px;
  7952. top:293px;
  7953. width:65px;
  7954. height:22px;
  7955. display:flex;
  7956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:16px;
  7960. }
  7961. #u15988 .text {
  7962. position:absolute;
  7963. align-self:flex-start;
  7964. padding:0px 0px 0px 0px;
  7965. box-sizing:border-box;
  7966. width:100%;
  7967. }
  7968. #u15988_text {
  7969. border-width:0px;
  7970. white-space:nowrap;
  7971. text-transform:none;
  7972. }
  7973. #u15989_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:33px;
  7979. height:22px;
  7980. background:inherit;
  7981. background-color:rgba(255, 255, 255, 0);
  7982. border:none;
  7983. border-radius:0px;
  7984. -moz-box-shadow:none;
  7985. -webkit-box-shadow:none;
  7986. box-shadow:none;
  7987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7988. font-weight:400;
  7989. font-style:normal;
  7990. font-size:16px;
  7991. }
  7992. #u15989 {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:147px;
  7996. top:167px;
  7997. width:33px;
  7998. height:22px;
  7999. display:flex;
  8000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:16px;
  8004. }
  8005. #u15989 .text {
  8006. position:absolute;
  8007. align-self:flex-start;
  8008. padding:0px 0px 0px 0px;
  8009. box-sizing:border-box;
  8010. width:100%;
  8011. }
  8012. #u15989_text {
  8013. border-width:0px;
  8014. white-space:nowrap;
  8015. text-transform:none;
  8016. }