styles.css 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2337px;
  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. #u14832_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u14832 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u14832 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u14832_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u14833_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u14833 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u14833 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u14833_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u14834_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u14834 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u14834 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u14834_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u14835 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u14836_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u14836 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u14836 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u14836_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u14837_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u14837 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u14837 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u14837_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u14838_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u14838 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u14838 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u14838_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u14839 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u14840_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u14840_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u14840_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u14840 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u14840 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u14840_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u14840.disabled {
  356. }
  357. .u14840_input_option {
  358. font-size:14px;
  359. }
  360. #u14841_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u14841 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u14841 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u14841_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u14842_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u14842 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u14842 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u14842_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u14843_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u14843 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u14843 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u14843_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u14844 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u14845_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u14845 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u14845 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u14845_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u14846_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u14846 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u14846 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u14846_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u14847 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u14848_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u14848 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u14848 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u14848_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u14849_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u14849 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u14849 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u14849_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u14850 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u14851_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u14851 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u14851 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u14851_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u14852_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u14852 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u14852 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u14852_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u14853 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u14854_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u14854 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u14854 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u14854_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u14855_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u14855 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u14855 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u14855_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u14856 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u14857_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u14857 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u14857 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u14857_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u14858_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u14858 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u14858 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u14858_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u14859 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u14860_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u14860 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u14860 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u14860_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u14861_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u14861 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u14861 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u14861_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u14862 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u14863_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u14863 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u14863 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u14863_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u14864_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u14864 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u14864 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u14864_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u14865 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u14866_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u14866 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u14866 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u14866_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u14867_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u14867 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u14867 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u14867_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u14868 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u14869_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u14869 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u14869 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u14869_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u14870_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u14870 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u14870 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u14870_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u14871 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u14872_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u14872 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u14872 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u14872_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u14873_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u14873 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u14873 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u14873_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u14874_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u14874 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u14874 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u14874_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u14875_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u14875 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u14875 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u14875_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u14876_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u14876 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u14876 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u14876_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u14877_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u14877 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u14877 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u14877_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u14878 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u14879_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u14879 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u14879 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u14879_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u14880_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u14880 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u14880 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u14880_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u14881 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u14882_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u14882 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u14882 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u14882_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u14883_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u14883 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u14883 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u14883_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u14884 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u14885_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u14885 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u14885 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u14885_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u14886_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u14886 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u14886 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u14886_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u14887_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:1191px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#FFFFFF;
  1741. text-align:left;
  1742. }
  1743. #u14887 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:331px;
  1747. top:50px;
  1748. width:1260px;
  1749. height:1191px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:12px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. }
  1758. #u14887 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 50px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u14887_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. visibility:hidden;
  1770. }
  1771. #u14888_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:73px;
  1777. height:50px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-left:0px;
  1782. border-top:0px;
  1783. border-right:0px;
  1784. border-radius:0px;
  1785. border-bottom-right-radius:0px;
  1786. border-bottom-left-radius:0px;
  1787. -moz-box-shadow:none;
  1788. -webkit-box-shadow:none;
  1789. box-shadow:none;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:18px;
  1794. }
  1795. #u14888 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:350px;
  1799. top:50px;
  1800. width:73px;
  1801. height:50px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:18px;
  1807. }
  1808. #u14888 .text {
  1809. position:absolute;
  1810. align-self:center;
  1811. padding:0px 0px 0px 0px;
  1812. box-sizing:border-box;
  1813. width:100%;
  1814. }
  1815. #u14888_text {
  1816. border-width:0px;
  1817. white-space:nowrap;
  1818. text-transform:none;
  1819. }
  1820. #u14889 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:0px;
  1826. height:0px;
  1827. }
  1828. #u14890 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:0px;
  1834. height:0px;
  1835. }
  1836. #u14891_div {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:59px;
  1842. height:30px;
  1843. background:inherit;
  1844. background-color:rgba(24, 144, 255, 1);
  1845. box-sizing:border-box;
  1846. border-width:1px;
  1847. border-style:solid;
  1848. border-color:rgba(0, 153, 255, 1);
  1849. border-radius:4px;
  1850. -moz-box-shadow:none;
  1851. -webkit-box-shadow:none;
  1852. box-shadow:none;
  1853. font-family:'Microsoft YaHei', sans-serif;
  1854. font-weight:400;
  1855. font-style:normal;
  1856. font-size:14px;
  1857. color:#FFFFFF;
  1858. }
  1859. #u14891 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:800px;
  1863. top:110px;
  1864. width:59px;
  1865. height:30px;
  1866. display:flex;
  1867. font-family:'Microsoft YaHei', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:14px;
  1871. color:#FFFFFF;
  1872. }
  1873. #u14891 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:5px 15px 5px 15px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u14891_text {
  1881. border-width:0px;
  1882. white-space:nowrap;
  1883. text-transform:none;
  1884. }
  1885. #u14892_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:55px;
  1891. height:30px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 1);
  1894. box-sizing:border-box;
  1895. border-width:1px;
  1896. border-style:solid;
  1897. border-color:rgba(170, 170, 170, 1);
  1898. border-radius:4px;
  1899. -moz-box-shadow:none;
  1900. -webkit-box-shadow:none;
  1901. box-shadow:none;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:12px;
  1906. color:#555555;
  1907. }
  1908. #u14892 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:869px;
  1912. top:110px;
  1913. width:55px;
  1914. height:30px;
  1915. display:flex;
  1916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:12px;
  1920. color:#555555;
  1921. }
  1922. #u14892 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:5px 15px 5px 15px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u14892_text {
  1930. border-width:0px;
  1931. white-space:nowrap;
  1932. text-transform:none;
  1933. }
  1934. #u14893 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:0px;
  1940. height:0px;
  1941. }
  1942. #u14894_div {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:140px;
  1948. height:30px;
  1949. background:inherit;
  1950. background-color:rgba(255, 255, 255, 1);
  1951. box-sizing:border-box;
  1952. border-width:1px;
  1953. border-style:solid;
  1954. border-color:rgba(215, 215, 215, 1);
  1955. border-radius:4px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-size:11px;
  1960. }
  1961. #u14894 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:350px;
  1965. top:110px;
  1966. width:140px;
  1967. height:30px;
  1968. display:flex;
  1969. font-size:11px;
  1970. }
  1971. #u14894 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:2px 2px 2px 2px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u14894_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. visibility:hidden;
  1983. }
  1984. #u14895_input {
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:126px;
  1989. height:23px;
  1990. padding:2px 2px 2px 2px;
  1991. font-family:'ArialMT', 'Arial', sans-serif;
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:11px;
  1995. letter-spacing:normal;
  1996. color:#AAAAAA;
  1997. vertical-align:none;
  1998. text-align:left;
  1999. text-transform:none;
  2000. background-color:transparent;
  2001. border-color:transparent;
  2002. }
  2003. #u14895_input.disabled {
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:126px;
  2008. height:23px;
  2009. padding:2px 2px 2px 2px;
  2010. font-family:'ArialMT', 'Arial', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:11px;
  2014. letter-spacing:normal;
  2015. color:#AAAAAA;
  2016. vertical-align:none;
  2017. text-align:left;
  2018. text-transform:none;
  2019. background-color:transparent;
  2020. border-color:transparent;
  2021. }
  2022. #u14895_div {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:126px;
  2028. height:23px;
  2029. background:inherit;
  2030. background-color:rgba(255, 255, 255, 1);
  2031. border:none;
  2032. border-radius:0px;
  2033. -moz-box-shadow:none;
  2034. -webkit-box-shadow:none;
  2035. box-shadow:none;
  2036. font-size:11px;
  2037. color:#AAAAAA;
  2038. }
  2039. #u14895 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:357px;
  2043. top:112px;
  2044. width:126px;
  2045. height:23px;
  2046. display:flex;
  2047. font-size:11px;
  2048. color:#AAAAAA;
  2049. }
  2050. #u14895 .text {
  2051. position:absolute;
  2052. align-self:flex-start;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u14895_div.disabled {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:126px;
  2063. height:23px;
  2064. background:inherit;
  2065. background-color:rgba(240, 240, 240, 1);
  2066. border:none;
  2067. border-radius:0px;
  2068. -moz-box-shadow:none;
  2069. -webkit-box-shadow:none;
  2070. box-shadow:none;
  2071. font-size:11px;
  2072. color:#AAAAAA;
  2073. }
  2074. #u14895.disabled {
  2075. }
  2076. .u14895_input_option {
  2077. font-size:11px;
  2078. }
  2079. #u14896 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:0px;
  2085. height:0px;
  2086. }
  2087. #u14897_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:140px;
  2093. height:30px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 1);
  2096. box-sizing:border-box;
  2097. border-width:1px;
  2098. border-style:solid;
  2099. border-color:rgba(201, 201, 201, 1);
  2100. border-radius:4px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-family:'Microsoft YaHei', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:14px;
  2108. color:#CCCCCC;
  2109. text-align:left;
  2110. }
  2111. #u14897 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:500px;
  2115. top:110px;
  2116. width:140px;
  2117. height:30px;
  2118. display:flex;
  2119. font-family:'Microsoft YaHei', sans-serif;
  2120. font-weight:400;
  2121. font-style:normal;
  2122. font-size:14px;
  2123. color:#CCCCCC;
  2124. text-align:left;
  2125. }
  2126. #u14897 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 8px 2px 8px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u14897_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. visibility:hidden;
  2138. }
  2139. #u14898_input {
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:127px;
  2144. height:25px;
  2145. padding:2px 2px 2px 2px;
  2146. font-family:'Microsoft YaHei', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:10px;
  2150. letter-spacing:normal;
  2151. color:#000000;
  2152. vertical-align:none;
  2153. text-align:left;
  2154. text-transform:none;
  2155. background-color:transparent;
  2156. border-color:transparent;
  2157. }
  2158. #u14898_input.disabled {
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:127px;
  2163. height:25px;
  2164. padding:2px 2px 2px 2px;
  2165. font-family:'Microsoft YaHei', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:10px;
  2169. letter-spacing:normal;
  2170. color:#000000;
  2171. vertical-align:none;
  2172. text-align:left;
  2173. text-transform:none;
  2174. background-color:transparent;
  2175. border-color:transparent;
  2176. }
  2177. #u14898_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:127px;
  2183. height:25px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 1);
  2186. border:none;
  2187. border-radius:0px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. font-family:'Microsoft YaHei', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:10px;
  2195. }
  2196. #u14898 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:508px;
  2200. top:111px;
  2201. width:127px;
  2202. height:25px;
  2203. display:flex;
  2204. font-family:'Microsoft YaHei', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:10px;
  2208. }
  2209. #u14898 .text {
  2210. position:absolute;
  2211. align-self:center;
  2212. padding:2px 2px 2px 2px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u14898_div.disabled {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:127px;
  2222. height:25px;
  2223. background:inherit;
  2224. background-color:rgba(240, 240, 240, 1);
  2225. border:none;
  2226. border-radius:0px;
  2227. -moz-box-shadow:none;
  2228. -webkit-box-shadow:none;
  2229. box-shadow:none;
  2230. font-family:'Microsoft YaHei', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:10px;
  2234. }
  2235. #u14898.disabled {
  2236. }
  2237. #u14899 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:0px;
  2243. height:0px;
  2244. }
  2245. #u14900_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:140px;
  2251. height:30px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 1);
  2254. box-sizing:border-box;
  2255. border-width:1px;
  2256. border-style:solid;
  2257. border-color:rgba(188, 188, 188, 1);
  2258. border-radius:4px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:12px;
  2266. color:#FFFFFF;
  2267. }
  2268. #u14900 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:650px;
  2272. top:110px;
  2273. width:140px;
  2274. height:30px;
  2275. display:flex;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. color:#FFFFFF;
  2281. }
  2282. #u14900 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:8px 15px 8px 15px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u14900_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u14901_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:18px;
  2301. height:18px;
  2302. }
  2303. #u14901 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:767px;
  2307. top:116px;
  2308. width:18px;
  2309. height:18px;
  2310. display:flex;
  2311. opacity:0.5;
  2312. }
  2313. #u14901 .text {
  2314. position:absolute;
  2315. align-self:center;
  2316. padding:2px 2px 2px 2px;
  2317. box-sizing:border-box;
  2318. width:100%;
  2319. }
  2320. #u14901_text {
  2321. border-width:0px;
  2322. word-wrap:break-word;
  2323. text-transform:none;
  2324. visibility:hidden;
  2325. }
  2326. #u14902 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:350px;
  2330. top:160px;
  2331. width:1222px;
  2332. height:293px;
  2333. }
  2334. #u14903_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:102px;
  2340. height:34px;
  2341. }
  2342. #u14903 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:102px;
  2348. height:34px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:14px;
  2354. color:#FFFFFF;
  2355. text-align:left;
  2356. line-height:30px;
  2357. }
  2358. #u14903 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 10px 2px 10px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u14903_text {
  2366. border-width:0px;
  2367. word-wrap:break-word;
  2368. text-transform:none;
  2369. }
  2370. #u14904_img {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:102px;
  2376. height:34px;
  2377. }
  2378. #u14904 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:102px;
  2382. top:0px;
  2383. width:102px;
  2384. height:34px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:14px;
  2390. color:#FFFFFF;
  2391. text-align:left;
  2392. line-height:30px;
  2393. }
  2394. #u14904 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 10px 2px 10px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u14904_text {
  2402. border-width:0px;
  2403. word-wrap:break-word;
  2404. text-transform:none;
  2405. }
  2406. #u14905_img {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:134px;
  2412. height:34px;
  2413. }
  2414. #u14905 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:204px;
  2418. top:0px;
  2419. width:134px;
  2420. height:34px;
  2421. display:flex;
  2422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:14px;
  2426. color:#FFFFFF;
  2427. text-align:left;
  2428. line-height:30px;
  2429. }
  2430. #u14905 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 10px 2px 10px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u14905_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u14906_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:134px;
  2448. height:34px;
  2449. }
  2450. #u14906 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:338px;
  2454. top:0px;
  2455. width:134px;
  2456. height:34px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:14px;
  2462. color:#FFFFFF;
  2463. text-align:left;
  2464. line-height:30px;
  2465. }
  2466. #u14906 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 10px 2px 10px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u14906_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. }
  2478. #u14907_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:139px;
  2484. height:34px;
  2485. }
  2486. #u14907 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:472px;
  2490. top:0px;
  2491. width:139px;
  2492. height:34px;
  2493. display:flex;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:14px;
  2498. color:#FFFFFF;
  2499. text-align:left;
  2500. line-height:30px;
  2501. }
  2502. #u14907 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 10px 2px 10px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u14907_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. }
  2514. #u14908_img {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:134px;
  2520. height:34px;
  2521. }
  2522. #u14908 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:611px;
  2526. top:0px;
  2527. width:134px;
  2528. height:34px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:14px;
  2534. color:#FFFFFF;
  2535. text-align:left;
  2536. line-height:30px;
  2537. }
  2538. #u14908 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 10px 2px 10px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u14908_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u14909_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:134px;
  2556. height:34px;
  2557. }
  2558. #u14909 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:745px;
  2562. top:0px;
  2563. width:134px;
  2564. height:34px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:14px;
  2570. color:#FFFFFF;
  2571. text-align:left;
  2572. line-height:30px;
  2573. }
  2574. #u14909 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 10px 2px 10px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u14909_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. }
  2586. #u14910_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:139px;
  2592. height:34px;
  2593. }
  2594. #u14910 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:879px;
  2598. top:0px;
  2599. width:139px;
  2600. height:34px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. color:#FFFFFF;
  2607. text-align:left;
  2608. line-height:30px;
  2609. }
  2610. #u14910 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 10px 2px 10px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u14910_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. }
  2622. #u14911_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:204px;
  2628. height:34px;
  2629. }
  2630. #u14911 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:1018px;
  2634. top:0px;
  2635. width:204px;
  2636. height:34px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:14px;
  2642. color:#FFFFFF;
  2643. text-align:left;
  2644. line-height:30px;
  2645. }
  2646. #u14911 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:2px 10px 2px 10px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u14911_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. }
  2658. #u14912_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:102px;
  2664. height:37px;
  2665. }
  2666. #u14912 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:34px;
  2671. width:102px;
  2672. height:37px;
  2673. display:flex;
  2674. font-size:14px;
  2675. text-align:left;
  2676. }
  2677. #u14912 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 10px 2px 10px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u14912_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u14913_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:102px;
  2696. height:37px;
  2697. }
  2698. #u14913 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:102px;
  2702. top:34px;
  2703. width:102px;
  2704. height:37px;
  2705. display:flex;
  2706. font-size:14px;
  2707. text-align:left;
  2708. }
  2709. #u14913 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 10px 2px 10px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u14913_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. visibility:hidden;
  2721. }
  2722. #u14914_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:134px;
  2728. height:37px;
  2729. }
  2730. #u14914 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:204px;
  2734. top:34px;
  2735. width:134px;
  2736. height:37px;
  2737. display:flex;
  2738. font-size:14px;
  2739. text-align:left;
  2740. }
  2741. #u14914 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 10px 2px 10px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u14914_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. }
  2753. #u14915_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:134px;
  2759. height:37px;
  2760. }
  2761. #u14915 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:338px;
  2765. top:34px;
  2766. width:134px;
  2767. height:37px;
  2768. display:flex;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:14px;
  2773. text-align:left;
  2774. }
  2775. #u14915 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 10px 2px 10px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u14915_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. }
  2787. #u14916_img {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:139px;
  2793. height:37px;
  2794. }
  2795. #u14916 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:472px;
  2799. top:34px;
  2800. width:139px;
  2801. height:37px;
  2802. display:flex;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. text-align:left;
  2808. }
  2809. #u14916 .text {
  2810. position:absolute;
  2811. align-self:center;
  2812. padding:2px 10px 2px 10px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u14916_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. visibility:hidden;
  2821. }
  2822. #u14917_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:134px;
  2828. height:37px;
  2829. }
  2830. #u14917 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:611px;
  2834. top:34px;
  2835. width:134px;
  2836. height:37px;
  2837. display:flex;
  2838. font-size:14px;
  2839. text-align:left;
  2840. }
  2841. #u14917 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 10px 2px 10px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u14917_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u14918_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:134px;
  2860. height:37px;
  2861. }
  2862. #u14918 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:745px;
  2866. top:34px;
  2867. width:134px;
  2868. height:37px;
  2869. display:flex;
  2870. font-size:14px;
  2871. text-align:left;
  2872. }
  2873. #u14918 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 10px 2px 10px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u14918_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u14919_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:139px;
  2892. height:37px;
  2893. }
  2894. #u14919 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:879px;
  2898. top:34px;
  2899. width:139px;
  2900. height:37px;
  2901. display:flex;
  2902. font-size:14px;
  2903. text-align:left;
  2904. }
  2905. #u14919 .text {
  2906. position:absolute;
  2907. align-self:center;
  2908. padding:2px 10px 2px 10px;
  2909. box-sizing:border-box;
  2910. width:100%;
  2911. }
  2912. #u14919_text {
  2913. border-width:0px;
  2914. word-wrap:break-word;
  2915. text-transform:none;
  2916. visibility:hidden;
  2917. }
  2918. #u14920_img {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:204px;
  2924. height:37px;
  2925. }
  2926. #u14920 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:1018px;
  2930. top:34px;
  2931. width:204px;
  2932. height:37px;
  2933. display:flex;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:14px;
  2938. text-align:left;
  2939. }
  2940. #u14920 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:2px 10px 2px 10px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u14920_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. }
  2952. #u14921_img {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:102px;
  2958. height:37px;
  2959. }
  2960. #u14921 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:71px;
  2965. width:102px;
  2966. height:37px;
  2967. display:flex;
  2968. font-size:14px;
  2969. text-align:left;
  2970. }
  2971. #u14921 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 10px 2px 10px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u14921_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u14922_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:102px;
  2990. height:37px;
  2991. }
  2992. #u14922 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:102px;
  2996. top:71px;
  2997. width:102px;
  2998. height:37px;
  2999. display:flex;
  3000. font-size:14px;
  3001. text-align:left;
  3002. }
  3003. #u14922 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 10px 2px 10px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u14922_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u14923_img {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:134px;
  3022. height:37px;
  3023. }
  3024. #u14923 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:204px;
  3028. top:71px;
  3029. width:134px;
  3030. height:37px;
  3031. display:flex;
  3032. font-size:14px;
  3033. text-align:left;
  3034. }
  3035. #u14923 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 10px 2px 10px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u14923_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. }
  3047. #u14924_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:134px;
  3053. height:37px;
  3054. }
  3055. #u14924 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:338px;
  3059. top:71px;
  3060. width:134px;
  3061. height:37px;
  3062. display:flex;
  3063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:14px;
  3067. text-align:left;
  3068. }
  3069. #u14924 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 10px 2px 10px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u14924_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. }
  3081. #u14925_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:139px;
  3087. height:37px;
  3088. }
  3089. #u14925 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:472px;
  3093. top:71px;
  3094. width:139px;
  3095. height:37px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:14px;
  3101. text-align:left;
  3102. }
  3103. #u14925 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 10px 2px 10px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u14925_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u14926_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:134px;
  3122. height:37px;
  3123. }
  3124. #u14926 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:611px;
  3128. top:71px;
  3129. width:134px;
  3130. height:37px;
  3131. display:flex;
  3132. font-size:14px;
  3133. text-align:left;
  3134. }
  3135. #u14926 .text {
  3136. position:absolute;
  3137. align-self:center;
  3138. padding:2px 10px 2px 10px;
  3139. box-sizing:border-box;
  3140. width:100%;
  3141. }
  3142. #u14926_text {
  3143. border-width:0px;
  3144. word-wrap:break-word;
  3145. text-transform:none;
  3146. visibility:hidden;
  3147. }
  3148. #u14927_img {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:134px;
  3154. height:37px;
  3155. }
  3156. #u14927 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:745px;
  3160. top:71px;
  3161. width:134px;
  3162. height:37px;
  3163. display:flex;
  3164. font-size:14px;
  3165. text-align:left;
  3166. }
  3167. #u14927 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:2px 10px 2px 10px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u14927_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. visibility:hidden;
  3179. }
  3180. #u14928_img {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:139px;
  3186. height:37px;
  3187. }
  3188. #u14928 {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:879px;
  3192. top:71px;
  3193. width:139px;
  3194. height:37px;
  3195. display:flex;
  3196. font-size:14px;
  3197. text-align:left;
  3198. }
  3199. #u14928 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 10px 2px 10px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u14928_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u14929_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:204px;
  3218. height:37px;
  3219. }
  3220. #u14929 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:1018px;
  3224. top:71px;
  3225. width:204px;
  3226. height:37px;
  3227. display:flex;
  3228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:14px;
  3232. text-align:left;
  3233. }
  3234. #u14929 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:2px 10px 2px 10px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u14929_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. }
  3246. #u14930_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:102px;
  3252. height:37px;
  3253. }
  3254. #u14930 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:108px;
  3259. width:102px;
  3260. height:37px;
  3261. display:flex;
  3262. font-size:14px;
  3263. text-align:left;
  3264. }
  3265. #u14930 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 10px 2px 10px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u14930_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u14931_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:102px;
  3284. height:37px;
  3285. }
  3286. #u14931 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:102px;
  3290. top:108px;
  3291. width:102px;
  3292. height:37px;
  3293. display:flex;
  3294. font-size:14px;
  3295. text-align:left;
  3296. }
  3297. #u14931 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 10px 2px 10px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u14931_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. visibility:hidden;
  3309. }
  3310. #u14932_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:134px;
  3316. height:37px;
  3317. }
  3318. #u14932 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:204px;
  3322. top:108px;
  3323. width:134px;
  3324. height:37px;
  3325. display:flex;
  3326. font-size:14px;
  3327. text-align:left;
  3328. }
  3329. #u14932 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 10px 2px 10px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u14932_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. }
  3341. #u14933_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:134px;
  3347. height:37px;
  3348. }
  3349. #u14933 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:338px;
  3353. top:108px;
  3354. width:134px;
  3355. height:37px;
  3356. display:flex;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:14px;
  3361. text-align:left;
  3362. }
  3363. #u14933 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 10px 2px 10px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u14933_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u14934_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:139px;
  3381. height:37px;
  3382. }
  3383. #u14934 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:472px;
  3387. top:108px;
  3388. width:139px;
  3389. height:37px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:14px;
  3395. text-align:left;
  3396. }
  3397. #u14934 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 10px 2px 10px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u14934_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. visibility:hidden;
  3409. }
  3410. #u14935_img {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:134px;
  3416. height:37px;
  3417. }
  3418. #u14935 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:611px;
  3422. top:108px;
  3423. width:134px;
  3424. height:37px;
  3425. display:flex;
  3426. font-size:14px;
  3427. text-align:left;
  3428. }
  3429. #u14935 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 10px 2px 10px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u14935_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. visibility:hidden;
  3441. }
  3442. #u14936_img {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:134px;
  3448. height:37px;
  3449. }
  3450. #u14936 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:745px;
  3454. top:108px;
  3455. width:134px;
  3456. height:37px;
  3457. display:flex;
  3458. font-size:14px;
  3459. text-align:left;
  3460. }
  3461. #u14936 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 10px 2px 10px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u14936_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. visibility:hidden;
  3473. }
  3474. #u14937_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:139px;
  3480. height:37px;
  3481. }
  3482. #u14937 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:879px;
  3486. top:108px;
  3487. width:139px;
  3488. height:37px;
  3489. display:flex;
  3490. font-size:14px;
  3491. text-align:left;
  3492. }
  3493. #u14937 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 10px 2px 10px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u14937_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u14938_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:204px;
  3512. height:37px;
  3513. }
  3514. #u14938 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:1018px;
  3518. top:108px;
  3519. width:204px;
  3520. height:37px;
  3521. display:flex;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:14px;
  3526. color:#1890FF;
  3527. text-align:left;
  3528. }
  3529. #u14938 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 10px 2px 10px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u14938_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. }
  3541. #u14939_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:102px;
  3547. height:37px;
  3548. }
  3549. #u14939 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:145px;
  3554. width:102px;
  3555. height:37px;
  3556. display:flex;
  3557. font-size:14px;
  3558. text-align:left;
  3559. }
  3560. #u14939 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 10px 2px 10px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u14939_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. visibility:hidden;
  3572. }
  3573. #u14940_img {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:102px;
  3579. height:37px;
  3580. }
  3581. #u14940 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:102px;
  3585. top:145px;
  3586. width:102px;
  3587. height:37px;
  3588. display:flex;
  3589. font-size:14px;
  3590. text-align:left;
  3591. }
  3592. #u14940 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 10px 2px 10px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u14940_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. visibility:hidden;
  3604. }
  3605. #u14941_img {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:134px;
  3611. height:37px;
  3612. }
  3613. #u14941 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:204px;
  3617. top:145px;
  3618. width:134px;
  3619. height:37px;
  3620. display:flex;
  3621. font-size:14px;
  3622. text-align:left;
  3623. }
  3624. #u14941 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 10px 2px 10px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u14941_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u14942_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:134px;
  3643. height:37px;
  3644. }
  3645. #u14942 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:338px;
  3649. top:145px;
  3650. width:134px;
  3651. height:37px;
  3652. display:flex;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:14px;
  3657. text-align:left;
  3658. }
  3659. #u14942 .text {
  3660. position:absolute;
  3661. align-self:center;
  3662. padding:2px 10px 2px 10px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u14942_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u14943_img {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:139px;
  3678. height:37px;
  3679. }
  3680. #u14943 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:472px;
  3684. top:145px;
  3685. width:139px;
  3686. height:37px;
  3687. display:flex;
  3688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:14px;
  3692. text-align:left;
  3693. }
  3694. #u14943 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 10px 2px 10px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u14943_text {
  3702. border-width:0px;
  3703. word-wrap:break-word;
  3704. text-transform:none;
  3705. visibility:hidden;
  3706. }
  3707. #u14944_img {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:134px;
  3713. height:37px;
  3714. }
  3715. #u14944 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:611px;
  3719. top:145px;
  3720. width:134px;
  3721. height:37px;
  3722. display:flex;
  3723. font-size:14px;
  3724. text-align:left;
  3725. }
  3726. #u14944 .text {
  3727. position:absolute;
  3728. align-self:center;
  3729. padding:2px 10px 2px 10px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u14944_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. visibility:hidden;
  3738. }
  3739. #u14945_img {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:134px;
  3745. height:37px;
  3746. }
  3747. #u14945 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:745px;
  3751. top:145px;
  3752. width:134px;
  3753. height:37px;
  3754. display:flex;
  3755. font-size:14px;
  3756. text-align:left;
  3757. }
  3758. #u14945 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 10px 2px 10px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u14945_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u14946_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:139px;
  3777. height:37px;
  3778. }
  3779. #u14946 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:879px;
  3783. top:145px;
  3784. width:139px;
  3785. height:37px;
  3786. display:flex;
  3787. font-size:14px;
  3788. text-align:left;
  3789. }
  3790. #u14946 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 10px 2px 10px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u14946_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u14947_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:204px;
  3809. height:37px;
  3810. }
  3811. #u14947 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:1018px;
  3815. top:145px;
  3816. width:204px;
  3817. height:37px;
  3818. display:flex;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:14px;
  3823. color:#1890FF;
  3824. text-align:left;
  3825. }
  3826. #u14947 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 10px 2px 10px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u14947_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. }
  3838. #u14948_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:102px;
  3844. height:37px;
  3845. }
  3846. #u14948 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:182px;
  3851. width:102px;
  3852. height:37px;
  3853. display:flex;
  3854. font-size:14px;
  3855. text-align:left;
  3856. }
  3857. #u14948 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 10px 2px 10px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u14948_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u14949_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:102px;
  3876. height:37px;
  3877. }
  3878. #u14949 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:102px;
  3882. top:182px;
  3883. width:102px;
  3884. height:37px;
  3885. display:flex;
  3886. font-size:14px;
  3887. text-align:left;
  3888. }
  3889. #u14949 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:2px 10px 2px 10px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u14949_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. visibility:hidden;
  3901. }
  3902. #u14950_img {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:134px;
  3908. height:37px;
  3909. }
  3910. #u14950 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:204px;
  3914. top:182px;
  3915. width:134px;
  3916. height:37px;
  3917. display:flex;
  3918. font-size:14px;
  3919. text-align:left;
  3920. }
  3921. #u14950 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 10px 2px 10px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u14950_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u14951_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:134px;
  3940. height:37px;
  3941. }
  3942. #u14951 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:338px;
  3946. top:182px;
  3947. width:134px;
  3948. height:37px;
  3949. display:flex;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:14px;
  3954. text-align:left;
  3955. }
  3956. #u14951 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 10px 2px 10px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u14951_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u14952_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:139px;
  3975. height:37px;
  3976. }
  3977. #u14952 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:472px;
  3981. top:182px;
  3982. width:139px;
  3983. height:37px;
  3984. display:flex;
  3985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. font-size:14px;
  3989. text-align:left;
  3990. }
  3991. #u14952 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 10px 2px 10px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u14952_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u14953_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:134px;
  4010. height:37px;
  4011. }
  4012. #u14953 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:611px;
  4016. top:182px;
  4017. width:134px;
  4018. height:37px;
  4019. display:flex;
  4020. font-size:14px;
  4021. text-align:left;
  4022. }
  4023. #u14953 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 10px 2px 10px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u14953_text {
  4031. border-width:0px;
  4032. word-wrap:break-word;
  4033. text-transform:none;
  4034. visibility:hidden;
  4035. }
  4036. #u14954_img {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:134px;
  4042. height:37px;
  4043. }
  4044. #u14954 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:745px;
  4048. top:182px;
  4049. width:134px;
  4050. height:37px;
  4051. display:flex;
  4052. font-size:14px;
  4053. text-align:left;
  4054. }
  4055. #u14954 .text {
  4056. position:absolute;
  4057. align-self:center;
  4058. padding:2px 10px 2px 10px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u14954_text {
  4063. border-width:0px;
  4064. word-wrap:break-word;
  4065. text-transform:none;
  4066. visibility:hidden;
  4067. }
  4068. #u14955_img {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:139px;
  4074. height:37px;
  4075. }
  4076. #u14955 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:879px;
  4080. top:182px;
  4081. width:139px;
  4082. height:37px;
  4083. display:flex;
  4084. font-size:14px;
  4085. text-align:left;
  4086. }
  4087. #u14955 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 10px 2px 10px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u14955_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u14956_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:204px;
  4106. height:37px;
  4107. }
  4108. #u14956 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:1018px;
  4112. top:182px;
  4113. width:204px;
  4114. height:37px;
  4115. display:flex;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:14px;
  4120. color:#1890FF;
  4121. text-align:left;
  4122. }
  4123. #u14956 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 10px 2px 10px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u14956_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. }
  4135. #u14957_img {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:102px;
  4141. height:37px;
  4142. }
  4143. #u14957 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:219px;
  4148. width:102px;
  4149. height:37px;
  4150. display:flex;
  4151. font-size:14px;
  4152. text-align:left;
  4153. }
  4154. #u14957 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 10px 2px 10px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u14957_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u14958_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:102px;
  4173. height:37px;
  4174. }
  4175. #u14958 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:102px;
  4179. top:219px;
  4180. width:102px;
  4181. height:37px;
  4182. display:flex;
  4183. font-size:14px;
  4184. text-align:left;
  4185. }
  4186. #u14958 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 10px 2px 10px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u14958_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u14959_img {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:134px;
  4205. height:37px;
  4206. }
  4207. #u14959 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:204px;
  4211. top:219px;
  4212. width:134px;
  4213. height:37px;
  4214. display:flex;
  4215. font-size:14px;
  4216. text-align:left;
  4217. }
  4218. #u14959 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 10px 2px 10px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u14959_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u14960_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:134px;
  4237. height:37px;
  4238. }
  4239. #u14960 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:338px;
  4243. top:219px;
  4244. width:134px;
  4245. height:37px;
  4246. display:flex;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:14px;
  4251. text-align:left;
  4252. }
  4253. #u14960 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 10px 2px 10px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u14960_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u14961_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:139px;
  4272. height:37px;
  4273. }
  4274. #u14961 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:472px;
  4278. top:219px;
  4279. width:139px;
  4280. height:37px;
  4281. display:flex;
  4282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4283. font-weight:400;
  4284. font-style:normal;
  4285. font-size:14px;
  4286. text-align:left;
  4287. }
  4288. #u14961 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 10px 2px 10px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u14961_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u14962_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:134px;
  4307. height:37px;
  4308. }
  4309. #u14962 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:611px;
  4313. top:219px;
  4314. width:134px;
  4315. height:37px;
  4316. display:flex;
  4317. font-size:14px;
  4318. text-align:left;
  4319. }
  4320. #u14962 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 10px 2px 10px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u14962_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u14963_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:134px;
  4339. height:37px;
  4340. }
  4341. #u14963 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:745px;
  4345. top:219px;
  4346. width:134px;
  4347. height:37px;
  4348. display:flex;
  4349. font-size:14px;
  4350. text-align:left;
  4351. }
  4352. #u14963 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:2px 10px 2px 10px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u14963_text {
  4360. border-width:0px;
  4361. word-wrap:break-word;
  4362. text-transform:none;
  4363. visibility:hidden;
  4364. }
  4365. #u14964_img {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:139px;
  4371. height:37px;
  4372. }
  4373. #u14964 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:879px;
  4377. top:219px;
  4378. width:139px;
  4379. height:37px;
  4380. display:flex;
  4381. font-size:14px;
  4382. text-align:left;
  4383. }
  4384. #u14964 .text {
  4385. position:absolute;
  4386. align-self:center;
  4387. padding:2px 10px 2px 10px;
  4388. box-sizing:border-box;
  4389. width:100%;
  4390. }
  4391. #u14964_text {
  4392. border-width:0px;
  4393. word-wrap:break-word;
  4394. text-transform:none;
  4395. visibility:hidden;
  4396. }
  4397. #u14965_img {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:204px;
  4403. height:37px;
  4404. }
  4405. #u14965 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:1018px;
  4409. top:219px;
  4410. width:204px;
  4411. height:37px;
  4412. display:flex;
  4413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:14px;
  4417. color:#1890FF;
  4418. text-align:left;
  4419. }
  4420. #u14965 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 10px 2px 10px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u14965_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. }
  4432. #u14966_img {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:102px;
  4438. height:37px;
  4439. }
  4440. #u14966 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:256px;
  4445. width:102px;
  4446. height:37px;
  4447. display:flex;
  4448. font-size:14px;
  4449. text-align:left;
  4450. }
  4451. #u14966 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 10px 2px 10px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u14966_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. visibility:hidden;
  4463. }
  4464. #u14967_img {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:102px;
  4470. height:37px;
  4471. }
  4472. #u14967 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:102px;
  4476. top:256px;
  4477. width:102px;
  4478. height:37px;
  4479. display:flex;
  4480. font-size:14px;
  4481. text-align:left;
  4482. }
  4483. #u14967 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 10px 2px 10px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u14967_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. visibility:hidden;
  4495. }
  4496. #u14968_img {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:134px;
  4502. height:37px;
  4503. }
  4504. #u14968 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:204px;
  4508. top:256px;
  4509. width:134px;
  4510. height:37px;
  4511. display:flex;
  4512. font-size:14px;
  4513. text-align:left;
  4514. }
  4515. #u14968 .text {
  4516. position:absolute;
  4517. align-self:center;
  4518. padding:2px 10px 2px 10px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u14968_text {
  4523. border-width:0px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. visibility:hidden;
  4527. }
  4528. #u14969_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:134px;
  4534. height:37px;
  4535. }
  4536. #u14969 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:338px;
  4540. top:256px;
  4541. width:134px;
  4542. height:37px;
  4543. display:flex;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:14px;
  4548. text-align:left;
  4549. }
  4550. #u14969 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 10px 2px 10px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u14969_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. visibility:hidden;
  4562. }
  4563. #u14970_img {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:139px;
  4569. height:37px;
  4570. }
  4571. #u14970 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:472px;
  4575. top:256px;
  4576. width:139px;
  4577. height:37px;
  4578. display:flex;
  4579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:14px;
  4583. text-align:left;
  4584. }
  4585. #u14970 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 10px 2px 10px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u14970_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. visibility:hidden;
  4597. }
  4598. #u14971_img {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:134px;
  4604. height:37px;
  4605. }
  4606. #u14971 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:611px;
  4610. top:256px;
  4611. width:134px;
  4612. height:37px;
  4613. display:flex;
  4614. font-size:14px;
  4615. text-align:left;
  4616. }
  4617. #u14971 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 10px 2px 10px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u14971_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u14972_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:134px;
  4636. height:37px;
  4637. }
  4638. #u14972 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:745px;
  4642. top:256px;
  4643. width:134px;
  4644. height:37px;
  4645. display:flex;
  4646. font-size:14px;
  4647. text-align:left;
  4648. }
  4649. #u14972 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 10px 2px 10px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u14972_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. visibility:hidden;
  4661. }
  4662. #u14973_img {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:139px;
  4668. height:37px;
  4669. }
  4670. #u14973 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:879px;
  4674. top:256px;
  4675. width:139px;
  4676. height:37px;
  4677. display:flex;
  4678. font-size:14px;
  4679. text-align:left;
  4680. }
  4681. #u14973 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 10px 2px 10px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u14973_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u14974_img {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:204px;
  4700. height:37px;
  4701. }
  4702. #u14974 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:1018px;
  4706. top:256px;
  4707. width:204px;
  4708. height:37px;
  4709. display:flex;
  4710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:14px;
  4714. color:#1890FF;
  4715. text-align:left;
  4716. }
  4717. #u14974 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 10px 2px 10px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u14974_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u14976 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:0px;
  4736. height:0px;
  4737. }
  4738. #u14977_img {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:200px;
  4744. height:1191px;
  4745. }
  4746. #u14977 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:120px;
  4750. top:50px;
  4751. width:200px;
  4752. height:1191px;
  4753. display:flex;
  4754. }
  4755. #u14977 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u14977_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u14978_div {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:200px;
  4774. height:60px;
  4775. background:inherit;
  4776. background-color:rgba(224, 231, 247, 1);
  4777. border:none;
  4778. border-radius:0px;
  4779. -moz-box-shadow:none;
  4780. -webkit-box-shadow:none;
  4781. box-shadow:none;
  4782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4783. font-weight:500;
  4784. font-style:normal;
  4785. font-size:18px;
  4786. }
  4787. #u14978 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:120px;
  4791. top:50px;
  4792. width:200px;
  4793. height:60px;
  4794. display:flex;
  4795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4796. font-weight:500;
  4797. font-style:normal;
  4798. font-size:18px;
  4799. }
  4800. #u14978 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:0px 0px 0px 20px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u14978_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. }
  4812. #u14979 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:120px;
  4816. top:130px;
  4817. width:200px;
  4818. height:1078px;
  4819. }
  4820. #u14979_state0 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:200px;
  4826. height:1078px;
  4827. overflow:auto;
  4828. -webkit-overflow-scrolling:touch;
  4829. -ms-overflow-x:hidden;
  4830. overflow-x:hidden;
  4831. background-image:none;
  4832. border:none;
  4833. border-radius:0px;
  4834. -moz-box-shadow:none;
  4835. -webkit-box-shadow:none;
  4836. box-shadow:none;
  4837. }
  4838. #u14979_state0_content {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:1px;
  4844. height:1px;
  4845. }
  4846. #u14980_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:97px;
  4852. height:22px;
  4853. background:inherit;
  4854. background-color:rgba(255, 255, 255, 0);
  4855. border:none;
  4856. border-radius:0px;
  4857. -moz-box-shadow:none;
  4858. -webkit-box-shadow:none;
  4859. box-shadow:none;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:16px;
  4864. }
  4865. #u14980 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:30px;
  4869. top:0px;
  4870. width:97px;
  4871. height:22px;
  4872. display:flex;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:16px;
  4877. }
  4878. #u14980 .text {
  4879. position:absolute;
  4880. align-self:flex-start;
  4881. padding:0px 0px 0px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u14980_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. }
  4890. #u14981_div {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:65px;
  4896. height:22px;
  4897. background:inherit;
  4898. background-color:rgba(255, 255, 255, 0);
  4899. border:none;
  4900. border-radius:0px;
  4901. -moz-box-shadow:none;
  4902. -webkit-box-shadow:none;
  4903. box-shadow:none;
  4904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:16px;
  4908. }
  4909. #u14981 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:30px;
  4913. top:42px;
  4914. width:65px;
  4915. height:22px;
  4916. display:flex;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:16px;
  4921. }
  4922. #u14981 .text {
  4923. position:absolute;
  4924. align-self:flex-start;
  4925. padding:0px 0px 0px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u14981_text {
  4930. border-width:0px;
  4931. white-space:nowrap;
  4932. text-transform:none;
  4933. }
  4934. #u14982_div {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:49px;
  4940. height:22px;
  4941. background:inherit;
  4942. background-color:rgba(255, 255, 255, 0);
  4943. border:none;
  4944. border-radius:0px;
  4945. -moz-box-shadow:none;
  4946. -webkit-box-shadow:none;
  4947. box-shadow:none;
  4948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:16px;
  4952. }
  4953. #u14982 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:30px;
  4957. top:145px;
  4958. width:49px;
  4959. height:22px;
  4960. display:flex;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:16px;
  4965. }
  4966. #u14982 .text {
  4967. position:absolute;
  4968. align-self:flex-start;
  4969. padding:0px 0px 0px 0px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u14982_text {
  4974. border-width:0px;
  4975. white-space:nowrap;
  4976. text-transform:none;
  4977. }
  4978. #u14983_div {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:97px;
  4984. height:22px;
  4985. background:inherit;
  4986. background-color:rgba(255, 255, 255, 0);
  4987. border:none;
  4988. border-radius:0px;
  4989. -moz-box-shadow:none;
  4990. -webkit-box-shadow:none;
  4991. box-shadow:none;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:16px;
  4996. }
  4997. #u14983 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:30px;
  5001. top:187px;
  5002. width:97px;
  5003. height:22px;
  5004. display:flex;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:16px;
  5009. }
  5010. #u14983 .text {
  5011. position:absolute;
  5012. align-self:flex-start;
  5013. padding:0px 0px 0px 0px;
  5014. box-sizing:border-box;
  5015. width:100%;
  5016. }
  5017. #u14983_text {
  5018. border-width:0px;
  5019. word-wrap:break-word;
  5020. text-transform:none;
  5021. }
  5022. #u14984_img {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:201px;
  5028. height:2px;
  5029. }
  5030. #u14984 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:84px;
  5035. width:200px;
  5036. height:1px;
  5037. display:flex;
  5038. }
  5039. #u14984 .text {
  5040. position:absolute;
  5041. align-self:center;
  5042. padding:2px 2px 2px 2px;
  5043. box-sizing:border-box;
  5044. width:100%;
  5045. }
  5046. #u14984_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. visibility:hidden;
  5051. }
  5052. #u14985_div {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:49px;
  5058. height:17px;
  5059. background:inherit;
  5060. background-color:rgba(255, 255, 255, 0);
  5061. border:none;
  5062. border-radius:0px;
  5063. -moz-box-shadow:none;
  5064. -webkit-box-shadow:none;
  5065. box-shadow:none;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. color:#AAAAAA;
  5071. }
  5072. #u14985 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:30px;
  5076. top:105px;
  5077. width:49px;
  5078. height:17px;
  5079. display:flex;
  5080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:12px;
  5084. color:#AAAAAA;
  5085. }
  5086. #u14985 .text {
  5087. position:absolute;
  5088. align-self:flex-start;
  5089. padding:0px 0px 0px 0px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u14985_text {
  5094. border-width:0px;
  5095. white-space:nowrap;
  5096. text-transform:none;
  5097. }
  5098. #u14986_div {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:97px;
  5104. height:22px;
  5105. background:inherit;
  5106. background-color:rgba(255, 255, 255, 0);
  5107. border:none;
  5108. border-radius:0px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:16px;
  5116. }
  5117. #u14986 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:30px;
  5121. top:229px;
  5122. width:97px;
  5123. height:22px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:16px;
  5129. }
  5130. #u14986 .text {
  5131. position:absolute;
  5132. align-self:flex-start;
  5133. padding:0px 0px 0px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u14986_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. }
  5142. #u14987_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:65px;
  5148. height:22px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:16px;
  5160. }
  5161. #u14987 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:30px;
  5165. top:271px;
  5166. width:65px;
  5167. height:22px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:16px;
  5173. }
  5174. #u14987 .text {
  5175. position:absolute;
  5176. align-self:flex-start;
  5177. padding:0px 0px 0px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u14987_text {
  5182. border-width:0px;
  5183. white-space:nowrap;
  5184. text-transform:none;
  5185. }
  5186. #u14988_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:201px;
  5192. height:2px;
  5193. }
  5194. #u14988 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:353px;
  5199. width:200px;
  5200. height:1px;
  5201. display:flex;
  5202. }
  5203. #u14988 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 2px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u14988_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. visibility:hidden;
  5215. }
  5216. #u14989_div {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:65px;
  5222. height:22px;
  5223. background:inherit;
  5224. background-color:rgba(255, 255, 255, 0);
  5225. border:none;
  5226. border-radius:0px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:16px;
  5234. }
  5235. #u14989 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:30px;
  5239. top:410px;
  5240. width:65px;
  5241. height:22px;
  5242. display:flex;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:16px;
  5247. }
  5248. #u14989 .text {
  5249. position:absolute;
  5250. align-self:flex-start;
  5251. padding:0px 0px 0px 0px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u14989_text {
  5256. border-width:0px;
  5257. white-space:nowrap;
  5258. text-transform:none;
  5259. }
  5260. #u14990_div {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:49px;
  5266. height:17px;
  5267. background:inherit;
  5268. background-color:rgba(255, 255, 255, 0);
  5269. border:none;
  5270. border-radius:0px;
  5271. -moz-box-shadow:none;
  5272. -webkit-box-shadow:none;
  5273. box-shadow:none;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. color:#AAAAAA;
  5279. }
  5280. #u14990 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:30px;
  5284. top:374px;
  5285. width:49px;
  5286. height:17px;
  5287. display:flex;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:12px;
  5292. color:#AAAAAA;
  5293. }
  5294. #u14990 .text {
  5295. position:absolute;
  5296. align-self:flex-start;
  5297. padding:0px 0px 0px 0px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u14990_text {
  5302. border-width:0px;
  5303. white-space:nowrap;
  5304. text-transform:none;
  5305. }
  5306. #u14991_div {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:65px;
  5312. height:22px;
  5313. background:inherit;
  5314. background-color:rgba(255, 255, 255, 0);
  5315. border:none;
  5316. border-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:16px;
  5324. }
  5325. #u14991 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:30px;
  5329. top:452px;
  5330. width:65px;
  5331. height:22px;
  5332. display:flex;
  5333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:16px;
  5337. }
  5338. #u14991 .text {
  5339. position:absolute;
  5340. align-self:flex-start;
  5341. padding:0px 0px 0px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u14991_text {
  5346. border-width:0px;
  5347. white-space:nowrap;
  5348. text-transform:none;
  5349. }
  5350. #u14992_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:65px;
  5356. height:22px;
  5357. background:inherit;
  5358. background-color:rgba(255, 255, 255, 0);
  5359. border:none;
  5360. border-radius:0px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:16px;
  5368. }
  5369. #u14992 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:30px;
  5373. top:494px;
  5374. width:65px;
  5375. height:22px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:16px;
  5381. }
  5382. #u14992 .text {
  5383. position:absolute;
  5384. align-self:flex-start;
  5385. padding:0px 0px 0px 0px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u14992_text {
  5390. border-width:0px;
  5391. white-space:nowrap;
  5392. text-transform:none;
  5393. }
  5394. #u14993_div {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:65px;
  5400. height:22px;
  5401. background:inherit;
  5402. background-color:rgba(255, 255, 255, 0);
  5403. border:none;
  5404. border-radius:0px;
  5405. -moz-box-shadow:none;
  5406. -webkit-box-shadow:none;
  5407. box-shadow:none;
  5408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:16px;
  5412. }
  5413. #u14993 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:30px;
  5417. top:536px;
  5418. width:65px;
  5419. height:22px;
  5420. display:flex;
  5421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5422. font-weight:400;
  5423. font-style:normal;
  5424. font-size:16px;
  5425. }
  5426. #u14993 .text {
  5427. position:absolute;
  5428. align-self:flex-start;
  5429. padding:0px 0px 0px 0px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u14993_text {
  5434. border-width:0px;
  5435. white-space:nowrap;
  5436. text-transform:none;
  5437. }
  5438. #u14994_div {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:65px;
  5444. height:22px;
  5445. background:inherit;
  5446. background-color:rgba(255, 255, 255, 0);
  5447. border:none;
  5448. border-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:16px;
  5456. }
  5457. #u14994 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:30px;
  5461. top:578px;
  5462. width:65px;
  5463. height:22px;
  5464. display:flex;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:16px;
  5469. }
  5470. #u14994 .text {
  5471. position:absolute;
  5472. align-self:flex-start;
  5473. padding:0px 0px 0px 0px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u14994_text {
  5478. border-width:0px;
  5479. white-space:nowrap;
  5480. text-transform:none;
  5481. }
  5482. #u14995_div {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:65px;
  5488. height:22px;
  5489. background:inherit;
  5490. background-color:rgba(255, 255, 255, 0);
  5491. border:none;
  5492. border-radius:0px;
  5493. -moz-box-shadow:none;
  5494. -webkit-box-shadow:none;
  5495. box-shadow:none;
  5496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:16px;
  5500. }
  5501. #u14995 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:30px;
  5505. top:620px;
  5506. width:65px;
  5507. height:22px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:16px;
  5513. }
  5514. #u14995 .text {
  5515. position:absolute;
  5516. align-self:flex-start;
  5517. padding:0px 0px 0px 0px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u14995_text {
  5522. border-width:0px;
  5523. white-space:nowrap;
  5524. text-transform:none;
  5525. }
  5526. #u14996_img {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:201px;
  5532. height:2px;
  5533. }
  5534. #u14996 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:1325px;
  5539. width:200px;
  5540. height:1px;
  5541. display:flex;
  5542. }
  5543. #u14996 .text {
  5544. position:absolute;
  5545. align-self:center;
  5546. padding:2px 2px 2px 2px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u14996_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. visibility:hidden;
  5555. }
  5556. #u14997_div {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:65px;
  5562. height:22px;
  5563. background:inherit;
  5564. background-color:rgba(255, 255, 255, 0);
  5565. border:none;
  5566. border-radius:0px;
  5567. -moz-box-shadow:none;
  5568. -webkit-box-shadow:none;
  5569. box-shadow:none;
  5570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5571. font-weight:400;
  5572. font-style:normal;
  5573. font-size:16px;
  5574. }
  5575. #u14997 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:30px;
  5579. top:1382px;
  5580. width:65px;
  5581. height:22px;
  5582. display:flex;
  5583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5584. font-weight:400;
  5585. font-style:normal;
  5586. font-size:16px;
  5587. }
  5588. #u14997 .text {
  5589. position:absolute;
  5590. align-self:flex-start;
  5591. padding:0px 0px 0px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u14997_text {
  5596. border-width:0px;
  5597. white-space:nowrap;
  5598. text-transform:none;
  5599. }
  5600. #u14998_div {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:49px;
  5606. height:17px;
  5607. background:inherit;
  5608. background-color:rgba(255, 255, 255, 0);
  5609. border:none;
  5610. border-radius:0px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. color:#AAAAAA;
  5619. }
  5620. #u14998 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:30px;
  5624. top:1346px;
  5625. width:49px;
  5626. height:17px;
  5627. display:flex;
  5628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:12px;
  5632. color:#AAAAAA;
  5633. }
  5634. #u14998 .text {
  5635. position:absolute;
  5636. align-self:flex-start;
  5637. padding:0px 0px 0px 0px;
  5638. box-sizing:border-box;
  5639. width:100%;
  5640. }
  5641. #u14998_text {
  5642. border-width:0px;
  5643. white-space:nowrap;
  5644. text-transform:none;
  5645. }
  5646. #u14999_div {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:65px;
  5652. height:22px;
  5653. background:inherit;
  5654. background-color:rgba(255, 255, 255, 0);
  5655. border:none;
  5656. border-radius:0px;
  5657. -moz-box-shadow:none;
  5658. -webkit-box-shadow:none;
  5659. box-shadow:none;
  5660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5661. font-weight:400;
  5662. font-style:normal;
  5663. font-size:16px;
  5664. }
  5665. #u14999 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:30px;
  5669. top:1424px;
  5670. width:65px;
  5671. height:22px;
  5672. display:flex;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:16px;
  5677. }
  5678. #u14999 .text {
  5679. position:absolute;
  5680. align-self:flex-start;
  5681. padding:0px 0px 0px 0px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u14999_text {
  5686. border-width:0px;
  5687. white-space:nowrap;
  5688. text-transform:none;
  5689. }
  5690. #u15000_div {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:65px;
  5696. height:22px;
  5697. background:inherit;
  5698. background-color:rgba(255, 255, 255, 0);
  5699. border:none;
  5700. border-radius:0px;
  5701. -moz-box-shadow:none;
  5702. -webkit-box-shadow:none;
  5703. box-shadow:none;
  5704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:16px;
  5708. }
  5709. #u15000 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:30px;
  5713. top:1508px;
  5714. width:65px;
  5715. height:22px;
  5716. display:flex;
  5717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5718. font-weight:400;
  5719. font-style:normal;
  5720. font-size:16px;
  5721. }
  5722. #u15000 .text {
  5723. position:absolute;
  5724. align-self:flex-start;
  5725. padding:0px 0px 0px 0px;
  5726. box-sizing:border-box;
  5727. width:100%;
  5728. }
  5729. #u15000_text {
  5730. border-width:0px;
  5731. white-space:nowrap;
  5732. text-transform:none;
  5733. }
  5734. #u15001_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:201px;
  5740. height:2px;
  5741. }
  5742. #u15001 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:1634px;
  5747. width:200px;
  5748. height:1px;
  5749. display:flex;
  5750. }
  5751. #u15001 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 2px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u15001_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. visibility:hidden;
  5763. }
  5764. #u15002_div {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:49px;
  5770. height:22px;
  5771. background:inherit;
  5772. background-color:rgba(255, 255, 255, 0);
  5773. border:none;
  5774. border-radius:0px;
  5775. -moz-box-shadow:none;
  5776. -webkit-box-shadow:none;
  5777. box-shadow:none;
  5778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5779. font-weight:400;
  5780. font-style:normal;
  5781. font-size:16px;
  5782. }
  5783. #u15002 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:30px;
  5787. top:1691px;
  5788. width:49px;
  5789. height:22px;
  5790. display:flex;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:16px;
  5795. }
  5796. #u15002 .text {
  5797. position:absolute;
  5798. align-self:flex-start;
  5799. padding:0px 0px 0px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u15002_text {
  5804. border-width:0px;
  5805. white-space:nowrap;
  5806. text-transform:none;
  5807. }
  5808. #u15003_div {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:49px;
  5814. height:17px;
  5815. background:inherit;
  5816. background-color:rgba(255, 255, 255, 0);
  5817. border:none;
  5818. border-radius:0px;
  5819. -moz-box-shadow:none;
  5820. -webkit-box-shadow:none;
  5821. box-shadow:none;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:12px;
  5826. color:#AAAAAA;
  5827. }
  5828. #u15003 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:30px;
  5832. top:1655px;
  5833. width:49px;
  5834. height:17px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. color:#AAAAAA;
  5841. }
  5842. #u15003 .text {
  5843. position:absolute;
  5844. align-self:flex-start;
  5845. padding:0px 0px 0px 0px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u15003_text {
  5850. border-width:0px;
  5851. white-space:nowrap;
  5852. text-transform:none;
  5853. }
  5854. #u15004_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:49px;
  5860. height:22px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 0);
  5863. border:none;
  5864. border-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:16px;
  5872. }
  5873. #u15004 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:30px;
  5877. top:1733px;
  5878. width:49px;
  5879. height:22px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:16px;
  5885. }
  5886. #u15004 .text {
  5887. position:absolute;
  5888. align-self:flex-start;
  5889. padding:0px 0px 0px 0px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u15004_text {
  5894. border-width:0px;
  5895. white-space:nowrap;
  5896. text-transform:none;
  5897. }
  5898. #u15005_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:65px;
  5904. height:22px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 0);
  5907. border:none;
  5908. border-radius:0px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:16px;
  5916. }
  5917. #u15005 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:30px;
  5921. top:1775px;
  5922. width:65px;
  5923. height:22px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:16px;
  5929. }
  5930. #u15005 .text {
  5931. position:absolute;
  5932. align-self:flex-start;
  5933. padding:0px 0px 0px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u15005_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u15006_img {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:201px;
  5948. height:2px;
  5949. }
  5950. #u15006 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:1817px;
  5955. width:200px;
  5956. height:1px;
  5957. display:flex;
  5958. }
  5959. #u15006 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:2px 2px 2px 2px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u15006_text {
  5967. border-width:0px;
  5968. word-wrap:break-word;
  5969. text-transform:none;
  5970. visibility:hidden;
  5971. }
  5972. #u15007_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:81px;
  5978. height:22px;
  5979. background:inherit;
  5980. background-color:rgba(255, 255, 255, 0);
  5981. border:none;
  5982. border-radius:0px;
  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. font-size:16px;
  5990. }
  5991. #u15007 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:30px;
  5995. top:1874px;
  5996. width:81px;
  5997. height:22px;
  5998. display:flex;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:16px;
  6003. }
  6004. #u15007 .text {
  6005. position:absolute;
  6006. align-self:flex-start;
  6007. padding:0px 0px 0px 0px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u15007_text {
  6012. border-width:0px;
  6013. white-space:nowrap;
  6014. text-transform:none;
  6015. }
  6016. #u15008_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:49px;
  6022. height:17px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 0);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:12px;
  6034. color:#AAAAAA;
  6035. }
  6036. #u15008 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:30px;
  6040. top:1838px;
  6041. width:49px;
  6042. height:17px;
  6043. display:flex;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:12px;
  6048. color:#AAAAAA;
  6049. }
  6050. #u15008 .text {
  6051. position:absolute;
  6052. align-self:flex-start;
  6053. padding:0px 0px 0px 0px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u15008_text {
  6058. border-width:0px;
  6059. white-space:nowrap;
  6060. text-transform:none;
  6061. }
  6062. #u15009_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:81px;
  6068. height:22px;
  6069. background:inherit;
  6070. background-color:rgba(255, 255, 255, 0);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:16px;
  6080. }
  6081. #u15009 {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:30px;
  6085. top:1916px;
  6086. width:81px;
  6087. height:22px;
  6088. display:flex;
  6089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:16px;
  6093. }
  6094. #u15009 .text {
  6095. position:absolute;
  6096. align-self:flex-start;
  6097. padding:0px 0px 0px 0px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u15009_text {
  6102. border-width:0px;
  6103. white-space:nowrap;
  6104. text-transform:none;
  6105. }
  6106. #u15010_div {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:81px;
  6112. height:22px;
  6113. background:inherit;
  6114. background-color:rgba(255, 255, 255, 0);
  6115. border:none;
  6116. border-radius:0px;
  6117. -moz-box-shadow:none;
  6118. -webkit-box-shadow:none;
  6119. box-shadow:none;
  6120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:16px;
  6124. }
  6125. #u15010 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:30px;
  6129. top:1958px;
  6130. width:81px;
  6131. height:22px;
  6132. display:flex;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:16px;
  6137. }
  6138. #u15010 .text {
  6139. position:absolute;
  6140. align-self:flex-start;
  6141. padding:0px 0px 0px 0px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u15010_text {
  6146. border-width:0px;
  6147. white-space:nowrap;
  6148. text-transform:none;
  6149. }
  6150. #u15011_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:65px;
  6156. height:22px;
  6157. background:inherit;
  6158. background-color:rgba(255, 255, 255, 0);
  6159. border:none;
  6160. border-radius:0px;
  6161. -moz-box-shadow:none;
  6162. -webkit-box-shadow:none;
  6163. box-shadow:none;
  6164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:16px;
  6168. }
  6169. #u15011 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:30px;
  6173. top:1466px;
  6174. width:65px;
  6175. height:22px;
  6176. display:flex;
  6177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:16px;
  6181. }
  6182. #u15011 .text {
  6183. position:absolute;
  6184. align-self:flex-start;
  6185. padding:0px 0px 0px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u15011_text {
  6190. border-width:0px;
  6191. white-space:nowrap;
  6192. text-transform:none;
  6193. }
  6194. #u15012_img {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:201px;
  6200. height:2px;
  6201. }
  6202. #u15012 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:709px;
  6207. width:200px;
  6208. height:1px;
  6209. display:flex;
  6210. }
  6211. #u15012 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 2px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u15012_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. visibility:hidden;
  6223. }
  6224. #u15013_div {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:65px;
  6230. height:22px;
  6231. background:inherit;
  6232. background-color:rgba(255, 255, 255, 0);
  6233. border:none;
  6234. border-radius:0px;
  6235. -moz-box-shadow:none;
  6236. -webkit-box-shadow:none;
  6237. box-shadow:none;
  6238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:16px;
  6242. }
  6243. #u15013 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:30px;
  6247. top:766px;
  6248. width:65px;
  6249. height:22px;
  6250. display:flex;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:16px;
  6255. }
  6256. #u15013 .text {
  6257. position:absolute;
  6258. align-self:flex-start;
  6259. padding:0px 0px 0px 0px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u15013_text {
  6264. border-width:0px;
  6265. white-space:nowrap;
  6266. text-transform:none;
  6267. }
  6268. #u15014_div {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:49px;
  6274. height:17px;
  6275. background:inherit;
  6276. background-color:rgba(255, 255, 255, 0);
  6277. border:none;
  6278. border-radius:0px;
  6279. -moz-box-shadow:none;
  6280. -webkit-box-shadow:none;
  6281. box-shadow:none;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:12px;
  6286. color:#AAAAAA;
  6287. }
  6288. #u15014 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:30px;
  6292. top:730px;
  6293. width:49px;
  6294. height:17px;
  6295. display:flex;
  6296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:12px;
  6300. color:#AAAAAA;
  6301. }
  6302. #u15014 .text {
  6303. position:absolute;
  6304. align-self:flex-start;
  6305. padding:0px 0px 0px 0px;
  6306. box-sizing:border-box;
  6307. width:100%;
  6308. }
  6309. #u15014_text {
  6310. border-width:0px;
  6311. white-space:nowrap;
  6312. text-transform:none;
  6313. }
  6314. #u15015_div {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:65px;
  6320. height:22px;
  6321. background:inherit;
  6322. background-color:rgba(255, 255, 255, 0);
  6323. border:none;
  6324. border-radius:0px;
  6325. -moz-box-shadow:none;
  6326. -webkit-box-shadow:none;
  6327. box-shadow:none;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:16px;
  6332. }
  6333. #u15015 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:30px;
  6337. top:808px;
  6338. width:65px;
  6339. height:22px;
  6340. display:flex;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:16px;
  6345. }
  6346. #u15015 .text {
  6347. position:absolute;
  6348. align-self:flex-start;
  6349. padding:0px 0px 0px 0px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u15015_text {
  6354. border-width:0px;
  6355. white-space:nowrap;
  6356. text-transform:none;
  6357. }
  6358. #u15016_div {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:65px;
  6364. height:22px;
  6365. background:inherit;
  6366. background-color:rgba(255, 255, 255, 0);
  6367. border:none;
  6368. border-radius:0px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6373. font-weight:400;
  6374. font-style:normal;
  6375. font-size:16px;
  6376. }
  6377. #u15016 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:30px;
  6381. top:892px;
  6382. width:65px;
  6383. height:22px;
  6384. display:flex;
  6385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:16px;
  6389. }
  6390. #u15016 .text {
  6391. position:absolute;
  6392. align-self:flex-start;
  6393. padding:0px 0px 0px 0px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u15016_text {
  6398. border-width:0px;
  6399. white-space:nowrap;
  6400. text-transform:none;
  6401. }
  6402. #u15017_div {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:65px;
  6408. height:22px;
  6409. background:inherit;
  6410. background-color:rgba(255, 255, 255, 0);
  6411. border:none;
  6412. border-radius:0px;
  6413. -moz-box-shadow:none;
  6414. -webkit-box-shadow:none;
  6415. box-shadow:none;
  6416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:16px;
  6420. }
  6421. #u15017 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:30px;
  6425. top:850px;
  6426. width:65px;
  6427. height:22px;
  6428. display:flex;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:16px;
  6433. }
  6434. #u15017 .text {
  6435. position:absolute;
  6436. align-self:flex-start;
  6437. padding:0px 0px 0px 0px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u15017_text {
  6442. border-width:0px;
  6443. white-space:nowrap;
  6444. text-transform:none;
  6445. }
  6446. #u15018_div {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:65px;
  6452. height:22px;
  6453. background:inherit;
  6454. background-color:rgba(255, 255, 255, 0);
  6455. border:none;
  6456. border-radius:0px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6461. font-weight:400;
  6462. font-style:normal;
  6463. font-size:16px;
  6464. }
  6465. #u15018 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:30px;
  6469. top:934px;
  6470. width:65px;
  6471. height:22px;
  6472. display:flex;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:16px;
  6477. }
  6478. #u15018 .text {
  6479. position:absolute;
  6480. align-self:flex-start;
  6481. padding:0px 0px 0px 0px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u15018_text {
  6486. border-width:0px;
  6487. white-space:nowrap;
  6488. text-transform:none;
  6489. }
  6490. #u15019_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:65px;
  6496. height:22px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 0);
  6499. border:none;
  6500. border-radius:0px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:16px;
  6508. }
  6509. #u15019 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:30px;
  6513. top:976px;
  6514. width:65px;
  6515. height:22px;
  6516. display:flex;
  6517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:16px;
  6521. }
  6522. #u15019 .text {
  6523. position:absolute;
  6524. align-self:flex-start;
  6525. padding:0px 0px 0px 0px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u15019_text {
  6530. border-width:0px;
  6531. white-space:nowrap;
  6532. text-transform:none;
  6533. }
  6534. #u15020_img {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:201px;
  6540. height:2px;
  6541. }
  6542. #u15020 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:1058px;
  6547. width:200px;
  6548. height:1px;
  6549. display:flex;
  6550. }
  6551. #u15020 .text {
  6552. position:absolute;
  6553. align-self:center;
  6554. padding:2px 2px 2px 2px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u15020_text {
  6559. border-width:0px;
  6560. word-wrap:break-word;
  6561. text-transform:none;
  6562. visibility:hidden;
  6563. }
  6564. #u15021_div {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:65px;
  6570. height:22px;
  6571. background:inherit;
  6572. background-color:rgba(255, 255, 255, 0);
  6573. border:none;
  6574. border-radius:0px;
  6575. -moz-box-shadow:none;
  6576. -webkit-box-shadow:none;
  6577. box-shadow:none;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:16px;
  6582. }
  6583. #u15021 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:30px;
  6587. top:1115px;
  6588. width:65px;
  6589. height:22px;
  6590. display:flex;
  6591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:16px;
  6595. }
  6596. #u15021 .text {
  6597. position:absolute;
  6598. align-self:flex-start;
  6599. padding:0px 0px 0px 0px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u15021_text {
  6604. border-width:0px;
  6605. white-space:nowrap;
  6606. text-transform:none;
  6607. }
  6608. #u15022_div {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:49px;
  6614. height:17px;
  6615. background:inherit;
  6616. background-color:rgba(255, 255, 255, 0);
  6617. border:none;
  6618. border-radius:0px;
  6619. -moz-box-shadow:none;
  6620. -webkit-box-shadow:none;
  6621. box-shadow:none;
  6622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:12px;
  6626. color:#AAAAAA;
  6627. }
  6628. #u15022 {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:30px;
  6632. top:1079px;
  6633. width:49px;
  6634. height:17px;
  6635. display:flex;
  6636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:12px;
  6640. color:#AAAAAA;
  6641. }
  6642. #u15022 .text {
  6643. position:absolute;
  6644. align-self:flex-start;
  6645. padding:0px 0px 0px 0px;
  6646. box-sizing:border-box;
  6647. width:100%;
  6648. }
  6649. #u15022_text {
  6650. border-width:0px;
  6651. white-space:nowrap;
  6652. text-transform:none;
  6653. }
  6654. #u15023_div {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:65px;
  6660. height:22px;
  6661. background:inherit;
  6662. background-color:rgba(255, 255, 255, 0);
  6663. border:none;
  6664. border-radius:0px;
  6665. -moz-box-shadow:none;
  6666. -webkit-box-shadow:none;
  6667. box-shadow:none;
  6668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. font-size:16px;
  6672. }
  6673. #u15023 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:30px;
  6677. top:1157px;
  6678. width:65px;
  6679. height:22px;
  6680. display:flex;
  6681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6682. font-weight:400;
  6683. font-style:normal;
  6684. font-size:16px;
  6685. }
  6686. #u15023 .text {
  6687. position:absolute;
  6688. align-self:flex-start;
  6689. padding:0px 0px 0px 0px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u15023_text {
  6694. border-width:0px;
  6695. white-space:nowrap;
  6696. text-transform:none;
  6697. }
  6698. #u15024_div {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:65px;
  6704. height:22px;
  6705. background:inherit;
  6706. background-color:rgba(255, 255, 255, 0);
  6707. border:none;
  6708. border-radius:0px;
  6709. -moz-box-shadow:none;
  6710. -webkit-box-shadow:none;
  6711. box-shadow:none;
  6712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. font-size:16px;
  6716. }
  6717. #u15024 {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:30px;
  6721. top:1241px;
  6722. width:65px;
  6723. height:22px;
  6724. display:flex;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. font-size:16px;
  6729. }
  6730. #u15024 .text {
  6731. position:absolute;
  6732. align-self:flex-start;
  6733. padding:0px 0px 0px 0px;
  6734. box-sizing:border-box;
  6735. width:100%;
  6736. }
  6737. #u15024_text {
  6738. border-width:0px;
  6739. white-space:nowrap;
  6740. text-transform:none;
  6741. }
  6742. #u15025_div {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:65px;
  6748. height:22px;
  6749. background:inherit;
  6750. background-color:rgba(255, 255, 255, 0);
  6751. border:none;
  6752. border-radius:0px;
  6753. -moz-box-shadow:none;
  6754. -webkit-box-shadow:none;
  6755. box-shadow:none;
  6756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6757. font-weight:400;
  6758. font-style:normal;
  6759. font-size:16px;
  6760. }
  6761. #u15025 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:30px;
  6765. top:1199px;
  6766. width:65px;
  6767. height:22px;
  6768. display:flex;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:16px;
  6773. }
  6774. #u15025 .text {
  6775. position:absolute;
  6776. align-self:flex-start;
  6777. padding:0px 0px 0px 0px;
  6778. box-sizing:border-box;
  6779. width:100%;
  6780. }
  6781. #u15025_text {
  6782. border-width:0px;
  6783. white-space:nowrap;
  6784. text-transform:none;
  6785. }
  6786. #u15026_div {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:0px;
  6790. top:0px;
  6791. width:65px;
  6792. height:22px;
  6793. background:inherit;
  6794. background-color:rgba(255, 255, 255, 0);
  6795. border:none;
  6796. border-radius:0px;
  6797. -moz-box-shadow:none;
  6798. -webkit-box-shadow:none;
  6799. box-shadow:none;
  6800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6801. font-weight:400;
  6802. font-style:normal;
  6803. font-size:16px;
  6804. }
  6805. #u15026 {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:30px;
  6809. top:1283px;
  6810. width:65px;
  6811. height:22px;
  6812. display:flex;
  6813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:16px;
  6817. }
  6818. #u15026 .text {
  6819. position:absolute;
  6820. align-self:flex-start;
  6821. padding:0px 0px 0px 0px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u15026_text {
  6826. border-width:0px;
  6827. white-space:nowrap;
  6828. text-transform:none;
  6829. }
  6830. #u15027_div {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:65px;
  6836. height:22px;
  6837. background:inherit;
  6838. background-color:rgba(255, 255, 255, 0);
  6839. border:none;
  6840. border-radius:0px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:16px;
  6848. }
  6849. #u15027 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:30px;
  6853. top:313px;
  6854. width:65px;
  6855. height:22px;
  6856. display:flex;
  6857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:16px;
  6861. }
  6862. #u15027 .text {
  6863. position:absolute;
  6864. align-self:flex-start;
  6865. padding:0px 0px 0px 0px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u15027_text {
  6870. border-width:0px;
  6871. white-space:nowrap;
  6872. text-transform:none;
  6873. }
  6874. #u15028_div {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:65px;
  6880. height:22px;
  6881. background:inherit;
  6882. background-color:rgba(255, 255, 255, 0);
  6883. border:none;
  6884. border-radius:0px;
  6885. -moz-box-shadow:none;
  6886. -webkit-box-shadow:none;
  6887. box-shadow:none;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:16px;
  6892. }
  6893. #u15028 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:30px;
  6897. top:1550px;
  6898. width:65px;
  6899. height:22px;
  6900. display:flex;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:16px;
  6905. }
  6906. #u15028 .text {
  6907. position:absolute;
  6908. align-self:flex-start;
  6909. padding:0px 0px 0px 0px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u15028_text {
  6914. border-width:0px;
  6915. white-space:nowrap;
  6916. text-transform:none;
  6917. }
  6918. #u15029_div {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:65px;
  6924. height:22px;
  6925. background:inherit;
  6926. background-color:rgba(255, 255, 255, 0);
  6927. border:none;
  6928. border-radius:0px;
  6929. -moz-box-shadow:none;
  6930. -webkit-box-shadow:none;
  6931. box-shadow:none;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:16px;
  6936. }
  6937. #u15029 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:30px;
  6941. top:1592px;
  6942. width:65px;
  6943. height:22px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:16px;
  6949. }
  6950. #u15029 .text {
  6951. position:absolute;
  6952. align-self:flex-start;
  6953. padding:0px 0px 0px 0px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u15029_text {
  6958. border-width:0px;
  6959. white-space:nowrap;
  6960. text-transform:none;
  6961. }
  6962. #u15030_div {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:65px;
  6968. height:22px;
  6969. background:inherit;
  6970. background-color:rgba(255, 255, 255, 0);
  6971. border:none;
  6972. border-radius:0px;
  6973. -moz-box-shadow:none;
  6974. -webkit-box-shadow:none;
  6975. box-shadow:none;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. font-size:16px;
  6980. }
  6981. #u15030 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:30px;
  6985. top:1018px;
  6986. width:65px;
  6987. height:22px;
  6988. display:flex;
  6989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:16px;
  6993. }
  6994. #u15030 .text {
  6995. position:absolute;
  6996. align-self:flex-start;
  6997. padding:0px 0px 0px 0px;
  6998. box-sizing:border-box;
  6999. width:100%;
  7000. }
  7001. #u15030_text {
  7002. border-width:0px;
  7003. white-space:nowrap;
  7004. text-transform:none;
  7005. }
  7006. #u15031_div {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:65px;
  7012. height:22px;
  7013. background:inherit;
  7014. background-color:rgba(255, 255, 255, 0);
  7015. border:none;
  7016. border-radius:0px;
  7017. -moz-box-shadow:none;
  7018. -webkit-box-shadow:none;
  7019. box-shadow:none;
  7020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:16px;
  7024. }
  7025. #u15031 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:30px;
  7029. top:662px;
  7030. width:65px;
  7031. height:22px;
  7032. display:flex;
  7033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. font-size:16px;
  7037. }
  7038. #u15031 .text {
  7039. position:absolute;
  7040. align-self:flex-start;
  7041. padding:0px 0px 0px 0px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u15031_text {
  7046. border-width:0px;
  7047. white-space:nowrap;
  7048. text-transform:none;
  7049. }
  7050. #u15032 {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:0px;
  7056. height:0px;
  7057. }
  7058. #u15033_div {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:700px;
  7064. height:1191px;
  7065. background:inherit;
  7066. background-color:rgba(255, 255, 255, 1);
  7067. box-sizing:border-box;
  7068. border-width:1px;
  7069. border-style:solid;
  7070. border-color:rgba(215, 215, 215, 1);
  7071. border-radius:0px;
  7072. -moz-box-shadow:none;
  7073. -webkit-box-shadow:none;
  7074. box-shadow:none;
  7075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7076. font-weight:400;
  7077. font-style:normal;
  7078. font-size:14px;
  7079. color:#AAAAAA;
  7080. text-align:center;
  7081. line-height:30px;
  7082. }
  7083. #u15033 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:1637px;
  7087. top:50px;
  7088. width:700px;
  7089. height:1191px;
  7090. display:flex;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:14px;
  7095. color:#AAAAAA;
  7096. text-align:center;
  7097. line-height:30px;
  7098. }
  7099. #u15033 .text {
  7100. position:absolute;
  7101. align-self:center;
  7102. padding:5px 10px 5px 10px;
  7103. box-sizing:border-box;
  7104. width:100%;
  7105. }
  7106. #u15033_text {
  7107. border-width:0px;
  7108. word-wrap:break-word;
  7109. text-transform:none;
  7110. visibility:hidden;
  7111. }
  7112. #u15034_div {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:119px;
  7118. height:35px;
  7119. background:inherit;
  7120. background-color:rgba(255, 255, 255, 0);
  7121. border:none;
  7122. border-top:0px;
  7123. border-right:0px;
  7124. border-bottom:0px;
  7125. border-radius:0px;
  7126. border-top-left-radius:0px;
  7127. border-bottom-left-radius:0px;
  7128. -moz-box-shadow:none;
  7129. -webkit-box-shadow:none;
  7130. box-shadow:none;
  7131. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7132. font-weight:500;
  7133. font-style:normal;
  7134. font-size:18px;
  7135. }
  7136. #u15034 {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:1658px;
  7140. top:71px;
  7141. width:119px;
  7142. height:35px;
  7143. display:flex;
  7144. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7145. font-weight:500;
  7146. font-style:normal;
  7147. font-size:18px;
  7148. }
  7149. #u15034 .text {
  7150. position:absolute;
  7151. align-self:center;
  7152. padding:5px 10px 5px 0px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u15034_text {
  7157. border-width:0px;
  7158. white-space:nowrap;
  7159. text-transform:none;
  7160. }
  7161. #u15035 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:0px;
  7167. height:0px;
  7168. }
  7169. #u15036_div {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:40px;
  7175. height:40px;
  7176. background:inherit;
  7177. background-color:rgba(255, 255, 255, 0);
  7178. border:none;
  7179. border-top:0px;
  7180. border-right:0px;
  7181. border-bottom:0px;
  7182. border-radius:0px;
  7183. border-top-left-radius:0px;
  7184. border-bottom-left-radius:0px;
  7185. -moz-box-shadow:none;
  7186. -webkit-box-shadow:none;
  7187. box-shadow:none;
  7188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7189. font-weight:500;
  7190. font-style:normal;
  7191. font-size:18px;
  7192. text-align:center;
  7193. }
  7194. #u15036 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:2297px;
  7198. top:50px;
  7199. width:40px;
  7200. height:40px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7203. font-weight:500;
  7204. font-style:normal;
  7205. font-size:18px;
  7206. text-align:center;
  7207. }
  7208. #u15036 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:5px 10px 5px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u15036_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. }
  7220. #u15037_img {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:13px;
  7226. height:13px;
  7227. }
  7228. #u15037 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:2285px;
  7232. top:66px;
  7233. width:13px;
  7234. height:13px;
  7235. display:flex;
  7236. }
  7237. #u15037 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 2px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u15037_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. visibility:hidden;
  7249. }
  7250. #u15038_div {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:81px;
  7256. height:30px;
  7257. background:inherit;
  7258. background-color:rgba(242, 242, 242, 0);
  7259. border:none;
  7260. border-top:0px;
  7261. border-right:0px;
  7262. border-bottom:0px;
  7263. border-radius:0px;
  7264. border-top-left-radius:0px;
  7265. border-bottom-left-radius:0px;
  7266. -moz-box-shadow:none;
  7267. -webkit-box-shadow:none;
  7268. box-shadow:none;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:14px;
  7273. text-align:right;
  7274. }
  7275. #u15038 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:1680px;
  7279. top:387px;
  7280. width:81px;
  7281. height:30px;
  7282. display:flex;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:14px;
  7287. text-align:right;
  7288. }
  7289. #u15038 .text {
  7290. position:absolute;
  7291. align-self:center;
  7292. padding:5px 10px 5px 0px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u15038_text {
  7297. border-width:0px;
  7298. white-space:nowrap;
  7299. text-transform:none;
  7300. }
  7301. #u15039_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:81px;
  7307. height:30px;
  7308. background:inherit;
  7309. background-color:rgba(242, 242, 242, 0);
  7310. border:none;
  7311. border-top:0px;
  7312. border-right:0px;
  7313. border-bottom:0px;
  7314. border-radius:0px;
  7315. border-top-left-radius:0px;
  7316. border-bottom-left-radius:0px;
  7317. -moz-box-shadow:none;
  7318. -webkit-box-shadow:none;
  7319. box-shadow:none;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:14px;
  7324. text-align:right;
  7325. }
  7326. #u15039 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:1680px;
  7330. top:337px;
  7331. width:81px;
  7332. height:30px;
  7333. display:flex;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:14px;
  7338. text-align:right;
  7339. }
  7340. #u15039 .text {
  7341. position:absolute;
  7342. align-self:center;
  7343. padding:5px 10px 5px 0px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u15039_text {
  7348. border-width:0px;
  7349. white-space:nowrap;
  7350. text-transform:none;
  7351. }
  7352. #u15040 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:0px;
  7358. height:0px;
  7359. }
  7360. #u15041_div {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:300px;
  7366. height:40px;
  7367. background:inherit;
  7368. background-color:rgba(255, 255, 255, 1);
  7369. box-sizing:border-box;
  7370. border-width:1px;
  7371. border-style:solid;
  7372. border-color:rgba(201, 201, 201, 1);
  7373. border-radius:4px;
  7374. -moz-box-shadow:none;
  7375. -webkit-box-shadow:none;
  7376. box-shadow:none;
  7377. font-family:'Microsoft YaHei', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:14px;
  7381. color:#CCCCCC;
  7382. text-align:left;
  7383. }
  7384. #u15041 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:1768px;
  7388. top:332px;
  7389. width:300px;
  7390. height:40px;
  7391. display:flex;
  7392. font-family:'Microsoft YaHei', sans-serif;
  7393. font-weight:400;
  7394. font-style:normal;
  7395. font-size:14px;
  7396. color:#CCCCCC;
  7397. text-align:left;
  7398. }
  7399. #u15041 .text {
  7400. position:absolute;
  7401. align-self:center;
  7402. padding:2px 8px 2px 8px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u15041_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. visibility:hidden;
  7411. }
  7412. #u15042_input {
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:263px;
  7417. height:38px;
  7418. padding:2px 2px 2px 2px;
  7419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:14px;
  7423. letter-spacing:normal;
  7424. color:#000000;
  7425. vertical-align:none;
  7426. text-align:left;
  7427. text-transform:none;
  7428. background-color:transparent;
  7429. border-color:transparent;
  7430. }
  7431. #u15042_input.disabled {
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:263px;
  7436. height:38px;
  7437. padding:2px 2px 2px 2px;
  7438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:14px;
  7442. letter-spacing:normal;
  7443. color:#000000;
  7444. vertical-align:none;
  7445. text-align:left;
  7446. text-transform:none;
  7447. background-color:transparent;
  7448. border-color:transparent;
  7449. }
  7450. #u15042_div {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:0px;
  7454. top:0px;
  7455. width:263px;
  7456. height:38px;
  7457. background:inherit;
  7458. background-color:rgba(255, 255, 255, 1);
  7459. border:none;
  7460. border-radius:0px;
  7461. -moz-box-shadow:none;
  7462. -webkit-box-shadow:none;
  7463. box-shadow:none;
  7464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7465. font-weight:400;
  7466. font-style:normal;
  7467. font-size:14px;
  7468. }
  7469. #u15042 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:1776px;
  7473. top:333px;
  7474. width:263px;
  7475. height:38px;
  7476. display:flex;
  7477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7478. font-weight:400;
  7479. font-style:normal;
  7480. font-size:14px;
  7481. }
  7482. #u15042 .text {
  7483. position:absolute;
  7484. align-self:center;
  7485. padding:2px 2px 2px 2px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u15042_div.disabled {
  7490. border-width:0px;
  7491. position:absolute;
  7492. left:0px;
  7493. top:0px;
  7494. width:263px;
  7495. height:38px;
  7496. background:inherit;
  7497. background-color:rgba(240, 240, 240, 1);
  7498. border:none;
  7499. border-radius:0px;
  7500. -moz-box-shadow:none;
  7501. -webkit-box-shadow:none;
  7502. box-shadow:none;
  7503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7504. font-weight:400;
  7505. font-style:normal;
  7506. font-size:14px;
  7507. }
  7508. #u15042.disabled {
  7509. }
  7510. #u15043_div {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:88px;
  7516. height:30px;
  7517. background:inherit;
  7518. background-color:rgba(242, 242, 242, 0);
  7519. border:none;
  7520. border-top:0px;
  7521. border-right:0px;
  7522. border-bottom:0px;
  7523. border-radius:0px;
  7524. border-top-left-radius:0px;
  7525. border-bottom-left-radius:0px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. text-align:right;
  7534. }
  7535. #u15043 {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:1673px;
  7539. top:237px;
  7540. width:88px;
  7541. height:30px;
  7542. display:flex;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:14px;
  7547. text-align:right;
  7548. }
  7549. #u15043 .text {
  7550. position:absolute;
  7551. align-self:center;
  7552. padding:5px 10px 5px 0px;
  7553. box-sizing:border-box;
  7554. width:100%;
  7555. }
  7556. #u15043_text {
  7557. border-width:0px;
  7558. white-space:nowrap;
  7559. text-transform:none;
  7560. }
  7561. #u15044 {
  7562. border-width:0px;
  7563. position:absolute;
  7564. left:0px;
  7565. top:0px;
  7566. width:0px;
  7567. height:0px;
  7568. }
  7569. #u15045_div {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:700px;
  7575. height:60px;
  7576. background:inherit;
  7577. background-color:rgba(255, 255, 255, 1);
  7578. box-sizing:border-box;
  7579. border-width:1px;
  7580. border-style:solid;
  7581. border-color:rgba(215, 215, 215, 1);
  7582. border-radius:0px;
  7583. -moz-box-shadow:none;
  7584. -webkit-box-shadow:none;
  7585. box-shadow:none;
  7586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7587. font-weight:400;
  7588. font-style:normal;
  7589. font-size:14px;
  7590. color:#AAAAAA;
  7591. text-align:center;
  7592. line-height:30px;
  7593. }
  7594. #u15045 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:1637px;
  7598. top:1181px;
  7599. width:700px;
  7600. height:60px;
  7601. display:flex;
  7602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7603. font-weight:400;
  7604. font-style:normal;
  7605. font-size:14px;
  7606. color:#AAAAAA;
  7607. text-align:center;
  7608. line-height:30px;
  7609. }
  7610. #u15045 .text {
  7611. position:absolute;
  7612. align-self:center;
  7613. padding:5px 10px 5px 10px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u15045_text {
  7618. border-width:0px;
  7619. word-wrap:break-word;
  7620. text-transform:none;
  7621. visibility:hidden;
  7622. }
  7623. #u15046_div {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:0px;
  7627. top:0px;
  7628. width:80px;
  7629. height:30px;
  7630. background:inherit;
  7631. background-color:rgba(24, 144, 255, 1);
  7632. border:none;
  7633. border-radius:4px;
  7634. -moz-box-shadow:none;
  7635. -webkit-box-shadow:none;
  7636. box-shadow:none;
  7637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:14px;
  7641. color:#FFFFFF;
  7642. }
  7643. #u15046 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:2212px;
  7647. top:1196px;
  7648. width:80px;
  7649. height:30px;
  7650. display:flex;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:14px;
  7655. color:#FFFFFF;
  7656. }
  7657. #u15046 .text {
  7658. position:absolute;
  7659. align-self:center;
  7660. padding:2px 2px 2px 2px;
  7661. box-sizing:border-box;
  7662. width:100%;
  7663. }
  7664. #u15046_text {
  7665. border-width:0px;
  7666. word-wrap:break-word;
  7667. text-transform:none;
  7668. }
  7669. #u15047_div {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:0px;
  7673. top:0px;
  7674. width:80px;
  7675. height:30px;
  7676. background:inherit;
  7677. background-color:rgba(255, 255, 255, 1);
  7678. box-sizing:border-box;
  7679. border-width:1px;
  7680. border-style:solid;
  7681. border-color:rgba(170, 170, 170, 1);
  7682. border-radius:4px;
  7683. -moz-box-shadow:none;
  7684. -webkit-box-shadow:none;
  7685. box-shadow:none;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:14px;
  7690. }
  7691. #u15047 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:2112px;
  7695. top:1196px;
  7696. width:80px;
  7697. height:30px;
  7698. display:flex;
  7699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:14px;
  7703. }
  7704. #u15047 .text {
  7705. position:absolute;
  7706. align-self:center;
  7707. padding:2px 2px 2px 2px;
  7708. box-sizing:border-box;
  7709. width:100%;
  7710. }
  7711. #u15047_text {
  7712. border-width:0px;
  7713. word-wrap:break-word;
  7714. text-transform:none;
  7715. }
  7716. #u15048 {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:0px;
  7720. top:0px;
  7721. width:0px;
  7722. height:0px;
  7723. }
  7724. #u15049_div {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:300px;
  7730. height:40px;
  7731. background:inherit;
  7732. background-color:rgba(255, 255, 255, 1);
  7733. box-sizing:border-box;
  7734. border-width:1px;
  7735. border-style:solid;
  7736. border-color:rgba(201, 201, 201, 1);
  7737. border-radius:4px;
  7738. -moz-box-shadow:none;
  7739. -webkit-box-shadow:none;
  7740. box-shadow:none;
  7741. font-family:'Microsoft YaHei', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. color:#CCCCCC;
  7746. text-align:left;
  7747. }
  7748. #u15049 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:1768px;
  7752. top:232px;
  7753. width:300px;
  7754. height:40px;
  7755. display:flex;
  7756. font-family:'Microsoft YaHei', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:14px;
  7760. color:#CCCCCC;
  7761. text-align:left;
  7762. }
  7763. #u15049 .text {
  7764. position:absolute;
  7765. align-self:center;
  7766. padding:2px 8px 2px 8px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u15049_text {
  7771. border-width:0px;
  7772. word-wrap:break-word;
  7773. text-transform:none;
  7774. visibility:hidden;
  7775. }
  7776. #u15050_input {
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:263px;
  7781. height:38px;
  7782. padding:2px 2px 2px 2px;
  7783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:14px;
  7787. letter-spacing:normal;
  7788. color:#000000;
  7789. vertical-align:none;
  7790. text-align:left;
  7791. text-transform:none;
  7792. background-color:transparent;
  7793. border-color:transparent;
  7794. }
  7795. #u15050_input.disabled {
  7796. position:absolute;
  7797. left:0px;
  7798. top:0px;
  7799. width:263px;
  7800. height:38px;
  7801. padding:2px 2px 2px 2px;
  7802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7803. font-weight:400;
  7804. font-style:normal;
  7805. font-size:14px;
  7806. letter-spacing:normal;
  7807. color:#000000;
  7808. vertical-align:none;
  7809. text-align:left;
  7810. text-transform:none;
  7811. background-color:transparent;
  7812. border-color:transparent;
  7813. }
  7814. #u15050_div {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:0px;
  7818. top:0px;
  7819. width:263px;
  7820. height:38px;
  7821. background:inherit;
  7822. background-color:rgba(255, 255, 255, 1);
  7823. border:none;
  7824. border-radius:0px;
  7825. -moz-box-shadow:none;
  7826. -webkit-box-shadow:none;
  7827. box-shadow:none;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:14px;
  7832. }
  7833. #u15050 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:1776px;
  7837. top:233px;
  7838. width:263px;
  7839. height:38px;
  7840. display:flex;
  7841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:14px;
  7845. }
  7846. #u15050 .text {
  7847. position:absolute;
  7848. align-self:center;
  7849. padding:2px 2px 2px 2px;
  7850. box-sizing:border-box;
  7851. width:100%;
  7852. }
  7853. #u15050_div.disabled {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:0px;
  7857. top:0px;
  7858. width:263px;
  7859. height:38px;
  7860. background:inherit;
  7861. background-color:rgba(240, 240, 240, 1);
  7862. border:none;
  7863. border-radius:0px;
  7864. -moz-box-shadow:none;
  7865. -webkit-box-shadow:none;
  7866. box-shadow:none;
  7867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:14px;
  7871. }
  7872. #u15050.disabled {
  7873. }
  7874. #u15051 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:0px;
  7878. top:0px;
  7879. width:0px;
  7880. height:0px;
  7881. }
  7882. #u15052_div {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:0px;
  7886. top:0px;
  7887. width:300px;
  7888. height:40px;
  7889. background:inherit;
  7890. background-color:rgba(255, 255, 255, 1);
  7891. box-sizing:border-box;
  7892. border-width:1px;
  7893. border-style:solid;
  7894. border-color:rgba(201, 201, 201, 1);
  7895. border-radius:4px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'Microsoft YaHei', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. font-size:14px;
  7903. color:#CCCCCC;
  7904. text-align:left;
  7905. }
  7906. #u15052 {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:1768px;
  7910. top:382px;
  7911. width:300px;
  7912. height:40px;
  7913. display:flex;
  7914. font-family:'Microsoft YaHei', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. font-size:14px;
  7918. color:#CCCCCC;
  7919. text-align:left;
  7920. }
  7921. #u15052 .text {
  7922. position:absolute;
  7923. align-self:center;
  7924. padding:2px 8px 2px 8px;
  7925. box-sizing:border-box;
  7926. width:100%;
  7927. }
  7928. #u15052_text {
  7929. border-width:0px;
  7930. word-wrap:break-word;
  7931. text-transform:none;
  7932. visibility:hidden;
  7933. }
  7934. #u15053_input {
  7935. position:absolute;
  7936. left:0px;
  7937. top:0px;
  7938. width:263px;
  7939. height:38px;
  7940. padding:2px 2px 2px 2px;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:14px;
  7945. letter-spacing:normal;
  7946. color:#000000;
  7947. vertical-align:none;
  7948. text-align:left;
  7949. text-transform:none;
  7950. background-color:transparent;
  7951. border-color:transparent;
  7952. }
  7953. #u15053_input.disabled {
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:263px;
  7958. height:38px;
  7959. padding:2px 2px 2px 2px;
  7960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7961. font-weight:400;
  7962. font-style:normal;
  7963. font-size:14px;
  7964. letter-spacing:normal;
  7965. color:#000000;
  7966. vertical-align:none;
  7967. text-align:left;
  7968. text-transform:none;
  7969. background-color:transparent;
  7970. border-color:transparent;
  7971. }
  7972. #u15053_div {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:0px;
  7976. top:0px;
  7977. width:263px;
  7978. height:38px;
  7979. background:inherit;
  7980. background-color:rgba(255, 255, 255, 1);
  7981. border:none;
  7982. border-radius:0px;
  7983. -moz-box-shadow:none;
  7984. -webkit-box-shadow:none;
  7985. box-shadow:none;
  7986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7987. font-weight:400;
  7988. font-style:normal;
  7989. font-size:14px;
  7990. }
  7991. #u15053 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:1776px;
  7995. top:383px;
  7996. width:263px;
  7997. height:38px;
  7998. display:flex;
  7999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:14px;
  8003. }
  8004. #u15053 .text {
  8005. position:absolute;
  8006. align-self:center;
  8007. padding:2px 2px 2px 2px;
  8008. box-sizing:border-box;
  8009. width:100%;
  8010. }
  8011. #u15053_div.disabled {
  8012. border-width:0px;
  8013. position:absolute;
  8014. left:0px;
  8015. top:0px;
  8016. width:263px;
  8017. height:38px;
  8018. background:inherit;
  8019. background-color:rgba(240, 240, 240, 1);
  8020. border:none;
  8021. border-radius:0px;
  8022. -moz-box-shadow:none;
  8023. -webkit-box-shadow:none;
  8024. box-shadow:none;
  8025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8026. font-weight:400;
  8027. font-style:normal;
  8028. font-size:14px;
  8029. }
  8030. #u15053.disabled {
  8031. }
  8032. #u15054 {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:0px;
  8038. height:0px;
  8039. }
  8040. #u15055_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:300px;
  8046. height:60px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 1);
  8049. box-sizing:border-box;
  8050. border-width:1px;
  8051. border-style:solid;
  8052. border-color:rgba(201, 201, 201, 1);
  8053. border-radius:4px;
  8054. -moz-box-shadow:none;
  8055. -webkit-box-shadow:none;
  8056. box-shadow:none;
  8057. font-family:'Microsoft YaHei', sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:14px;
  8061. color:#CCCCCC;
  8062. text-align:left;
  8063. }
  8064. #u15055 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:1768px;
  8068. top:476px;
  8069. width:300px;
  8070. height:60px;
  8071. display:flex;
  8072. font-family:'Microsoft YaHei', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:14px;
  8076. color:#CCCCCC;
  8077. text-align:left;
  8078. }
  8079. #u15055 .text {
  8080. position:absolute;
  8081. align-self:center;
  8082. padding:2px 8px 2px 8px;
  8083. box-sizing:border-box;
  8084. width:100%;
  8085. }
  8086. #u15055_text {
  8087. border-width:0px;
  8088. word-wrap:break-word;
  8089. text-transform:none;
  8090. visibility:hidden;
  8091. }
  8092. #u15056_input {
  8093. position:absolute;
  8094. left:0px;
  8095. top:0px;
  8096. width:285px;
  8097. height:57px;
  8098. padding:2px 2px 2px 2px;
  8099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8100. font-weight:400;
  8101. font-style:normal;
  8102. font-size:14px;
  8103. letter-spacing:normal;
  8104. color:#000000;
  8105. vertical-align:none;
  8106. text-align:left;
  8107. text-transform:none;
  8108. background-color:transparent;
  8109. border-color:transparent;
  8110. }
  8111. #u15056_input.disabled {
  8112. position:absolute;
  8113. left:0px;
  8114. top:0px;
  8115. width:285px;
  8116. height:57px;
  8117. padding:2px 2px 2px 2px;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:14px;
  8122. letter-spacing:normal;
  8123. color:#000000;
  8124. vertical-align:none;
  8125. text-align:left;
  8126. text-transform:none;
  8127. background-color:transparent;
  8128. border-color:transparent;
  8129. }
  8130. #u15056_div {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:0px;
  8134. top:0px;
  8135. width:285px;
  8136. height:57px;
  8137. background:inherit;
  8138. background-color:rgba(255, 255, 255, 1);
  8139. border:none;
  8140. border-radius:0px;
  8141. -moz-box-shadow:none;
  8142. -webkit-box-shadow:none;
  8143. box-shadow:none;
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:14px;
  8148. }
  8149. #u15056 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:1776px;
  8153. top:478px;
  8154. width:285px;
  8155. height:57px;
  8156. display:flex;
  8157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. font-size:14px;
  8161. }
  8162. #u15056 .text {
  8163. position:absolute;
  8164. align-self:center;
  8165. padding:2px 2px 2px 2px;
  8166. box-sizing:border-box;
  8167. width:100%;
  8168. }
  8169. #u15056_div.disabled {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:285px;
  8175. height:57px;
  8176. background:inherit;
  8177. background-color:rgba(240, 240, 240, 1);
  8178. border:none;
  8179. border-radius:0px;
  8180. -moz-box-shadow:none;
  8181. -webkit-box-shadow:none;
  8182. box-shadow:none;
  8183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8184. font-weight:400;
  8185. font-style:normal;
  8186. font-size:14px;
  8187. }
  8188. #u15056.disabled {
  8189. }
  8190. #u15057_div {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:136px;
  8196. height:90px;
  8197. background:inherit;
  8198. background-color:rgba(242, 242, 242, 1);
  8199. border:none;
  8200. border-radius:0px;
  8201. -moz-box-shadow:none;
  8202. -webkit-box-shadow:none;
  8203. box-shadow:none;
  8204. font-size:38px;
  8205. color:#AAAAAA;
  8206. }
  8207. #u15057 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:1768px;
  8211. top:546px;
  8212. width:136px;
  8213. height:90px;
  8214. display:flex;
  8215. font-size:38px;
  8216. color:#AAAAAA;
  8217. }
  8218. #u15057 .text {
  8219. position:absolute;
  8220. align-self:center;
  8221. padding:2px 2px 2px 2px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u15057_text {
  8226. border-width:0px;
  8227. word-wrap:break-word;
  8228. text-transform:none;
  8229. }
  8230. #u15058_div {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:81px;
  8236. height:30px;
  8237. background:inherit;
  8238. background-color:rgba(242, 242, 242, 0);
  8239. border:none;
  8240. border-top:0px;
  8241. border-right:0px;
  8242. border-bottom:0px;
  8243. border-radius:0px;
  8244. border-top-left-radius:0px;
  8245. border-bottom-left-radius:0px;
  8246. -moz-box-shadow:none;
  8247. -webkit-box-shadow:none;
  8248. box-shadow:none;
  8249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8250. font-weight:400;
  8251. font-style:normal;
  8252. font-size:14px;
  8253. text-align:right;
  8254. }
  8255. #u15058 {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:1681px;
  8259. top:478px;
  8260. width:81px;
  8261. height:30px;
  8262. display:flex;
  8263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:14px;
  8267. text-align:right;
  8268. }
  8269. #u15058 .text {
  8270. position:absolute;
  8271. align-self:center;
  8272. padding:5px 10px 5px 0px;
  8273. box-sizing:border-box;
  8274. width:100%;
  8275. }
  8276. #u15058_text {
  8277. border-width:0px;
  8278. white-space:nowrap;
  8279. text-transform:none;
  8280. }
  8281. #u15059_div {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:81px;
  8287. height:30px;
  8288. background:inherit;
  8289. background-color:rgba(242, 242, 242, 0);
  8290. border:none;
  8291. border-top:0px;
  8292. border-right:0px;
  8293. border-bottom:0px;
  8294. border-radius:0px;
  8295. border-top-left-radius:0px;
  8296. border-bottom-left-radius:0px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:14px;
  8304. text-align:right;
  8305. }
  8306. #u15059 {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:1681px;
  8310. top:546px;
  8311. width:81px;
  8312. height:30px;
  8313. display:flex;
  8314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8315. font-weight:400;
  8316. font-style:normal;
  8317. font-size:14px;
  8318. text-align:right;
  8319. }
  8320. #u15059 .text {
  8321. position:absolute;
  8322. align-self:center;
  8323. padding:5px 10px 5px 0px;
  8324. box-sizing:border-box;
  8325. width:100%;
  8326. }
  8327. #u15059_text {
  8328. border-width:0px;
  8329. white-space:nowrap;
  8330. text-transform:none;
  8331. }
  8332. #u15060_div {
  8333. border-width:0px;
  8334. position:absolute;
  8335. left:0px;
  8336. top:0px;
  8337. width:88px;
  8338. height:30px;
  8339. background:inherit;
  8340. background-color:rgba(242, 242, 242, 0);
  8341. border:none;
  8342. border-top:0px;
  8343. border-right:0px;
  8344. border-bottom:0px;
  8345. border-radius:0px;
  8346. border-top-left-radius:0px;
  8347. border-bottom-left-radius:0px;
  8348. -moz-box-shadow:none;
  8349. -webkit-box-shadow:none;
  8350. box-shadow:none;
  8351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8352. font-weight:400;
  8353. font-style:normal;
  8354. font-size:14px;
  8355. text-align:right;
  8356. }
  8357. #u15060 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:1674px;
  8361. top:136px;
  8362. width:88px;
  8363. height:30px;
  8364. display:flex;
  8365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:14px;
  8369. text-align:right;
  8370. }
  8371. #u15060 .text {
  8372. position:absolute;
  8373. align-self:center;
  8374. padding:5px 10px 5px 0px;
  8375. box-sizing:border-box;
  8376. width:100%;
  8377. }
  8378. #u15060_text {
  8379. border-width:0px;
  8380. white-space:nowrap;
  8381. text-transform:none;
  8382. }
  8383. #u15061 {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:0px;
  8389. height:0px;
  8390. }
  8391. #u15062_div {
  8392. border-width:0px;
  8393. position:absolute;
  8394. left:0px;
  8395. top:0px;
  8396. width:300px;
  8397. height:40px;
  8398. background:inherit;
  8399. background-color:rgba(255, 255, 255, 1);
  8400. box-sizing:border-box;
  8401. border-width:1px;
  8402. border-style:solid;
  8403. border-color:rgba(215, 215, 215, 1);
  8404. border-radius:4px;
  8405. -moz-box-shadow:none;
  8406. -webkit-box-shadow:none;
  8407. box-shadow:none;
  8408. font-size:11px;
  8409. }
  8410. #u15062 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:1768px;
  8414. top:132px;
  8415. width:300px;
  8416. height:40px;
  8417. display:flex;
  8418. font-size:11px;
  8419. }
  8420. #u15062 .text {
  8421. position:absolute;
  8422. align-self:center;
  8423. padding:2px 2px 2px 2px;
  8424. box-sizing:border-box;
  8425. width:100%;
  8426. }
  8427. #u15062_text {
  8428. border-width:0px;
  8429. word-wrap:break-word;
  8430. text-transform:none;
  8431. visibility:hidden;
  8432. }
  8433. #u15063_input {
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:286px;
  8438. height:31px;
  8439. padding:2px 2px 2px 2px;
  8440. font-family:'ArialMT', 'Arial', sans-serif;
  8441. font-weight:400;
  8442. font-style:normal;
  8443. font-size:11px;
  8444. letter-spacing:normal;
  8445. color:#AAAAAA;
  8446. vertical-align:none;
  8447. text-align:left;
  8448. text-transform:none;
  8449. background-color:transparent;
  8450. border-color:transparent;
  8451. }
  8452. #u15063_input.disabled {
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:286px;
  8457. height:31px;
  8458. padding:2px 2px 2px 2px;
  8459. font-family:'ArialMT', 'Arial', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:11px;
  8463. letter-spacing:normal;
  8464. color:#AAAAAA;
  8465. vertical-align:none;
  8466. text-align:left;
  8467. text-transform:none;
  8468. background-color:transparent;
  8469. border-color:transparent;
  8470. }
  8471. #u15063_div {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:286px;
  8477. height:31px;
  8478. background:inherit;
  8479. background-color:rgba(255, 255, 255, 1);
  8480. border:none;
  8481. border-radius:0px;
  8482. -moz-box-shadow:none;
  8483. -webkit-box-shadow:none;
  8484. box-shadow:none;
  8485. font-size:11px;
  8486. color:#AAAAAA;
  8487. }
  8488. #u15063 {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:1775px;
  8492. top:135px;
  8493. width:286px;
  8494. height:31px;
  8495. display:flex;
  8496. font-size:11px;
  8497. color:#AAAAAA;
  8498. }
  8499. #u15063 .text {
  8500. position:absolute;
  8501. align-self:flex-start;
  8502. padding:2px 2px 2px 2px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u15063_div.disabled {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:286px;
  8512. height:31px;
  8513. background:inherit;
  8514. background-color:rgba(240, 240, 240, 1);
  8515. border:none;
  8516. border-radius:0px;
  8517. -moz-box-shadow:none;
  8518. -webkit-box-shadow:none;
  8519. box-shadow:none;
  8520. font-size:11px;
  8521. color:#AAAAAA;
  8522. }
  8523. #u15063.disabled {
  8524. }
  8525. .u15063_input_option {
  8526. font-size:11px;
  8527. }
  8528. #u15064_div {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:0px;
  8532. top:0px;
  8533. width:88px;
  8534. height:30px;
  8535. background:inherit;
  8536. background-color:rgba(242, 242, 242, 0);
  8537. border:none;
  8538. border-top:0px;
  8539. border-right:0px;
  8540. border-bottom:0px;
  8541. border-radius:0px;
  8542. border-top-left-radius:0px;
  8543. border-bottom-left-radius:0px;
  8544. -moz-box-shadow:none;
  8545. -webkit-box-shadow:none;
  8546. box-shadow:none;
  8547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8548. font-weight:400;
  8549. font-style:normal;
  8550. font-size:14px;
  8551. text-align:right;
  8552. }
  8553. #u15064 {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:1674px;
  8557. top:186px;
  8558. width:88px;
  8559. height:30px;
  8560. display:flex;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:14px;
  8565. text-align:right;
  8566. }
  8567. #u15064 .text {
  8568. position:absolute;
  8569. align-self:center;
  8570. padding:5px 10px 5px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u15064_text {
  8575. border-width:0px;
  8576. white-space:nowrap;
  8577. text-transform:none;
  8578. }
  8579. #u15065 {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:0px;
  8585. height:0px;
  8586. }
  8587. #u15066_div {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:0px;
  8592. width:300px;
  8593. height:40px;
  8594. background:inherit;
  8595. background-color:rgba(255, 255, 255, 1);
  8596. box-sizing:border-box;
  8597. border-width:1px;
  8598. border-style:solid;
  8599. border-color:rgba(215, 215, 215, 1);
  8600. border-radius:4px;
  8601. -moz-box-shadow:none;
  8602. -webkit-box-shadow:none;
  8603. box-shadow:none;
  8604. font-size:11px;
  8605. }
  8606. #u15066 {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:1768px;
  8610. top:182px;
  8611. width:300px;
  8612. height:40px;
  8613. display:flex;
  8614. font-size:11px;
  8615. }
  8616. #u15066 .text {
  8617. position:absolute;
  8618. align-self:center;
  8619. padding:2px 2px 2px 2px;
  8620. box-sizing:border-box;
  8621. width:100%;
  8622. }
  8623. #u15066_text {
  8624. border-width:0px;
  8625. word-wrap:break-word;
  8626. text-transform:none;
  8627. visibility:hidden;
  8628. }
  8629. #u15067_input {
  8630. position:absolute;
  8631. left:0px;
  8632. top:0px;
  8633. width:286px;
  8634. height:31px;
  8635. padding:2px 2px 2px 2px;
  8636. font-family:'ArialMT', 'Arial', sans-serif;
  8637. font-weight:400;
  8638. font-style:normal;
  8639. font-size:11px;
  8640. letter-spacing:normal;
  8641. color:#AAAAAA;
  8642. vertical-align:none;
  8643. text-align:left;
  8644. text-transform:none;
  8645. background-color:transparent;
  8646. border-color:transparent;
  8647. }
  8648. #u15067_input.disabled {
  8649. position:absolute;
  8650. left:0px;
  8651. top:0px;
  8652. width:286px;
  8653. height:31px;
  8654. padding:2px 2px 2px 2px;
  8655. font-family:'ArialMT', 'Arial', sans-serif;
  8656. font-weight:400;
  8657. font-style:normal;
  8658. font-size:11px;
  8659. letter-spacing:normal;
  8660. color:#AAAAAA;
  8661. vertical-align:none;
  8662. text-align:left;
  8663. text-transform:none;
  8664. background-color:transparent;
  8665. border-color:transparent;
  8666. }
  8667. #u15067_div {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:0px;
  8671. top:0px;
  8672. width:286px;
  8673. height:31px;
  8674. background:inherit;
  8675. background-color:rgba(255, 255, 255, 1);
  8676. border:none;
  8677. border-radius:0px;
  8678. -moz-box-shadow:none;
  8679. -webkit-box-shadow:none;
  8680. box-shadow:none;
  8681. font-size:11px;
  8682. color:#AAAAAA;
  8683. }
  8684. #u15067 {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:1775px;
  8688. top:185px;
  8689. width:286px;
  8690. height:31px;
  8691. display:flex;
  8692. font-size:11px;
  8693. color:#AAAAAA;
  8694. }
  8695. #u15067 .text {
  8696. position:absolute;
  8697. align-self:flex-start;
  8698. padding:2px 2px 2px 2px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u15067_div.disabled {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:0px;
  8706. top:0px;
  8707. width:286px;
  8708. height:31px;
  8709. background:inherit;
  8710. background-color:rgba(240, 240, 240, 1);
  8711. border:none;
  8712. border-radius:0px;
  8713. -moz-box-shadow:none;
  8714. -webkit-box-shadow:none;
  8715. box-shadow:none;
  8716. font-size:11px;
  8717. color:#AAAAAA;
  8718. }
  8719. #u15067.disabled {
  8720. }
  8721. .u15067_input_option {
  8722. font-size:11px;
  8723. }
  8724. #u15068_div {
  8725. border-width:0px;
  8726. position:absolute;
  8727. left:0px;
  8728. top:0px;
  8729. width:88px;
  8730. height:30px;
  8731. background:inherit;
  8732. background-color:rgba(242, 242, 242, 0);
  8733. border:none;
  8734. border-top:0px;
  8735. border-right:0px;
  8736. border-bottom:0px;
  8737. border-radius:0px;
  8738. border-top-left-radius:0px;
  8739. border-bottom-left-radius:0px;
  8740. -moz-box-shadow:none;
  8741. -webkit-box-shadow:none;
  8742. box-shadow:none;
  8743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8744. font-weight:400;
  8745. font-style:normal;
  8746. font-size:14px;
  8747. text-align:right;
  8748. }
  8749. #u15068 {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:1673px;
  8753. top:437px;
  8754. width:88px;
  8755. height:30px;
  8756. display:flex;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:14px;
  8761. text-align:right;
  8762. }
  8763. #u15068 .text {
  8764. position:absolute;
  8765. align-self:center;
  8766. padding:5px 10px 5px 0px;
  8767. box-sizing:border-box;
  8768. width:100%;
  8769. }
  8770. #u15068_text {
  8771. border-width:0px;
  8772. white-space:nowrap;
  8773. text-transform:none;
  8774. }
  8775. #u15069 label {
  8776. left:0px;
  8777. width:100%;
  8778. }
  8779. #u15069_img {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:0px;
  8783. top:3px;
  8784. width:12px;
  8785. height:12px;
  8786. }
  8787. #u15069 {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:1768px;
  8791. top:443px;
  8792. width:100px;
  8793. height:18px;
  8794. display:flex;
  8795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8796. font-weight:400;
  8797. font-style:normal;
  8798. }
  8799. #u15069 .text {
  8800. position:absolute;
  8801. align-self:center;
  8802. padding:0px 2px 0px 2px;
  8803. box-sizing:border-box;
  8804. }
  8805. #u15069_img.selected {
  8806. }
  8807. #u15069.selected {
  8808. }
  8809. #u15069_img.disabled {
  8810. }
  8811. #u15069.disabled {
  8812. }
  8813. #u15069_img.selectedDisabled {
  8814. }
  8815. #u15069.selectedDisabled {
  8816. }
  8817. #u15069_text {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:14px;
  8821. top:0px;
  8822. width:84px;
  8823. word-wrap:break-word;
  8824. text-transform:none;
  8825. }
  8826. #u15069_input {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:0px;
  8830. top:0px;
  8831. width:0px;
  8832. height:0px;
  8833. opacity:0;
  8834. }
  8835. #u15070 label {
  8836. left:0px;
  8837. width:100%;
  8838. }
  8839. #u15070_img {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:0px;
  8843. top:3px;
  8844. width:12px;
  8845. height:12px;
  8846. }
  8847. #u15070 {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:1868px;
  8851. top:443px;
  8852. width:100px;
  8853. height:18px;
  8854. display:flex;
  8855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8856. font-weight:400;
  8857. font-style:normal;
  8858. }
  8859. #u15070 .text {
  8860. position:absolute;
  8861. align-self:center;
  8862. padding:0px 2px 0px 2px;
  8863. box-sizing:border-box;
  8864. }
  8865. #u15070_img.selected {
  8866. }
  8867. #u15070.selected {
  8868. }
  8869. #u15070_img.disabled {
  8870. }
  8871. #u15070.disabled {
  8872. }
  8873. #u15070_img.selectedDisabled {
  8874. }
  8875. #u15070.selectedDisabled {
  8876. }
  8877. #u15070_text {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:14px;
  8881. top:0px;
  8882. width:84px;
  8883. word-wrap:break-word;
  8884. text-transform:none;
  8885. }
  8886. #u15070_input {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:0px;
  8890. top:0px;
  8891. width:0px;
  8892. height:0px;
  8893. opacity:0;
  8894. }
  8895. #u15071 label {
  8896. left:0px;
  8897. width:100%;
  8898. }
  8899. #u15071_img {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:0px;
  8903. top:3px;
  8904. width:12px;
  8905. height:12px;
  8906. }
  8907. #u15071 {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:1968px;
  8911. top:443px;
  8912. width:100px;
  8913. height:18px;
  8914. display:flex;
  8915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8916. font-weight:400;
  8917. font-style:normal;
  8918. }
  8919. #u15071 .text {
  8920. position:absolute;
  8921. align-self:center;
  8922. padding:0px 2px 0px 2px;
  8923. box-sizing:border-box;
  8924. }
  8925. #u15071_img.selected {
  8926. }
  8927. #u15071.selected {
  8928. }
  8929. #u15071_img.disabled {
  8930. }
  8931. #u15071.disabled {
  8932. }
  8933. #u15071_img.selectedDisabled {
  8934. }
  8935. #u15071.selectedDisabled {
  8936. }
  8937. #u15071_text {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:14px;
  8941. top:0px;
  8942. width:84px;
  8943. word-wrap:break-word;
  8944. text-transform:none;
  8945. }
  8946. #u15071_input {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:0px;
  8950. top:0px;
  8951. width:0px;
  8952. height:0px;
  8953. opacity:0;
  8954. }
  8955. #u15072_div {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:0px;
  8959. top:0px;
  8960. width:88px;
  8961. height:30px;
  8962. background:inherit;
  8963. background-color:rgba(242, 242, 242, 0);
  8964. border:none;
  8965. border-top:0px;
  8966. border-right:0px;
  8967. border-bottom:0px;
  8968. border-radius:0px;
  8969. border-top-left-radius:0px;
  8970. border-bottom-left-radius:0px;
  8971. -moz-box-shadow:none;
  8972. -webkit-box-shadow:none;
  8973. box-shadow:none;
  8974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8975. font-weight:400;
  8976. font-style:normal;
  8977. font-size:14px;
  8978. text-align:right;
  8979. }
  8980. #u15072 {
  8981. border-width:0px;
  8982. position:absolute;
  8983. left:1674px;
  8984. top:286px;
  8985. width:88px;
  8986. height:30px;
  8987. display:flex;
  8988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8989. font-weight:400;
  8990. font-style:normal;
  8991. font-size:14px;
  8992. text-align:right;
  8993. }
  8994. #u15072 .text {
  8995. position:absolute;
  8996. align-self:center;
  8997. padding:5px 10px 5px 0px;
  8998. box-sizing:border-box;
  8999. width:100%;
  9000. }
  9001. #u15072_text {
  9002. border-width:0px;
  9003. white-space:nowrap;
  9004. text-transform:none;
  9005. }
  9006. #u15073 {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:0px;
  9012. height:0px;
  9013. }
  9014. #u15074_div {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:0px;
  9018. top:0px;
  9019. width:300px;
  9020. height:40px;
  9021. background:inherit;
  9022. background-color:rgba(255, 255, 255, 1);
  9023. box-sizing:border-box;
  9024. border-width:1px;
  9025. border-style:solid;
  9026. border-color:rgba(215, 215, 215, 1);
  9027. border-radius:4px;
  9028. -moz-box-shadow:none;
  9029. -webkit-box-shadow:none;
  9030. box-shadow:none;
  9031. font-size:11px;
  9032. }
  9033. #u15074 {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:1768px;
  9037. top:282px;
  9038. width:300px;
  9039. height:40px;
  9040. display:flex;
  9041. font-size:11px;
  9042. }
  9043. #u15074 .text {
  9044. position:absolute;
  9045. align-self:center;
  9046. padding:2px 2px 2px 2px;
  9047. box-sizing:border-box;
  9048. width:100%;
  9049. }
  9050. #u15074_text {
  9051. border-width:0px;
  9052. word-wrap:break-word;
  9053. text-transform:none;
  9054. visibility:hidden;
  9055. }
  9056. #u15075_input {
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:286px;
  9061. height:31px;
  9062. padding:2px 2px 2px 2px;
  9063. font-family:'ArialMT', 'Arial', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:11px;
  9067. letter-spacing:normal;
  9068. color:#AAAAAA;
  9069. vertical-align:none;
  9070. text-align:left;
  9071. text-transform:none;
  9072. background-color:transparent;
  9073. border-color:transparent;
  9074. }
  9075. #u15075_input.disabled {
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:286px;
  9080. height:31px;
  9081. padding:2px 2px 2px 2px;
  9082. font-family:'ArialMT', 'Arial', sans-serif;
  9083. font-weight:400;
  9084. font-style:normal;
  9085. font-size:11px;
  9086. letter-spacing:normal;
  9087. color:#AAAAAA;
  9088. vertical-align:none;
  9089. text-align:left;
  9090. text-transform:none;
  9091. background-color:transparent;
  9092. border-color:transparent;
  9093. }
  9094. #u15075_div {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:286px;
  9100. height:31px;
  9101. background:inherit;
  9102. background-color:rgba(255, 255, 255, 1);
  9103. border:none;
  9104. border-radius:0px;
  9105. -moz-box-shadow:none;
  9106. -webkit-box-shadow:none;
  9107. box-shadow:none;
  9108. font-size:11px;
  9109. color:#AAAAAA;
  9110. }
  9111. #u15075 {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:1775px;
  9115. top:285px;
  9116. width:286px;
  9117. height:31px;
  9118. display:flex;
  9119. font-size:11px;
  9120. color:#AAAAAA;
  9121. }
  9122. #u15075 .text {
  9123. position:absolute;
  9124. align-self:flex-start;
  9125. padding:2px 2px 2px 2px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u15075_div.disabled {
  9130. border-width:0px;
  9131. position:absolute;
  9132. left:0px;
  9133. top:0px;
  9134. width:286px;
  9135. height:31px;
  9136. background:inherit;
  9137. background-color:rgba(240, 240, 240, 1);
  9138. border:none;
  9139. border-radius:0px;
  9140. -moz-box-shadow:none;
  9141. -webkit-box-shadow:none;
  9142. box-shadow:none;
  9143. font-size:11px;
  9144. color:#AAAAAA;
  9145. }
  9146. #u15075.disabled {
  9147. }
  9148. .u15075_input_option {
  9149. font-size:11px;
  9150. }