styles.css 158 KB

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