styles.css 139 KB

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