styles.css 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2450px;
  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. #u75499_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. #u75499 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u75499 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u75499_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u75500_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. #u75500 {
  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. #u75500 .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. #u75500_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u75501_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. #u75501 {
  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. #u75501 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u75501_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u75502 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u75503_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u75503 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u75503 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u75503_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u75504_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. #u75504 {
  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. #u75504 .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. #u75504_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u75505_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. #u75505 {
  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. #u75505 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u75505_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u75506 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u75507_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. #u75507_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. #u75507_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. #u75507 {
  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. #u75507 .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. #u75507_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. #u75507.disabled {
  356. }
  357. .u75507_input_option {
  358. font-size:14px;
  359. }
  360. #u75508_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u75508 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u75508 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u75508_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u75509_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. #u75509 {
  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. #u75509 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u75509_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u75510_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. #u75510 {
  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. #u75510 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u75510_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u75511 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u75512_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. #u75512 {
  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. #u75512 .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. #u75512_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u75513_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u75513 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u75513 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u75513_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u75514 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u75515_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. #u75515 {
  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. #u75515 .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. #u75515_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u75516_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u75516 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u75516 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u75516_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u75517 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u75518_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. #u75518 {
  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. #u75518 .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. #u75518_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u75519_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u75519 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u75519 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u75519_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u75520 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u75521_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. #u75521 {
  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. #u75521 .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. #u75521_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u75522_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u75522 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u75522 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u75522_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u75523 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u75524_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. #u75524 {
  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. #u75524 .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. #u75524_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u75525_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u75525 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u75525 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u75525_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u75526 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u75527_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. #u75527 {
  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. #u75527 .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. #u75527_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u75528_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u75528 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u75528 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u75528_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u75529 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u75530_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. #u75530 {
  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. #u75530 .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. #u75530_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u75531_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u75531 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u75531 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u75531_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u75532 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u75533_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. #u75533 {
  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. #u75533 .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. #u75533_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u75534_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u75534 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u75534 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u75534_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u75535 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u75536_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. #u75536 {
  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. #u75536 .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. #u75536_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u75537_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u75537 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u75537 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u75537_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u75538 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u75539_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. #u75539 {
  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. #u75539 .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. #u75539_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u75540_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u75540 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u75540 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u75540_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u75541_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. #u75541 {
  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. #u75541 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u75541_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u75542_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u75542 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u75542 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u75542_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u75543_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. #u75543 {
  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. #u75543 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u75543_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u75544_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u75544 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u75544 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u75544_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u75545 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u75546_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. #u75546 {
  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. #u75546 .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. #u75546_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u75547_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u75547 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u75547 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u75547_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u75548 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u75549_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. #u75549 {
  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. #u75549 .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. #u75549_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u75550_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u75550 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u75550 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u75550_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u75551_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  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. #u75551 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u75551 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u75551_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u75552 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:668px;
  1679. top:253px;
  1680. width:901px;
  1681. height:465px;
  1682. }
  1683. #u75553_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:167px;
  1689. height:41px;
  1690. }
  1691. #u75553 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:167px;
  1697. height:41px;
  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. #u75553 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u75553_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u75554_img {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:190px;
  1723. height:41px;
  1724. }
  1725. #u75554 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:167px;
  1729. top:0px;
  1730. width:190px;
  1731. height:41px;
  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. #u75554 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u75554_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u75555_img {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:190px;
  1757. height:41px;
  1758. }
  1759. #u75555 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:357px;
  1763. top:0px;
  1764. width:190px;
  1765. height:41px;
  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. #u75555 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u75555_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u75556_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:167px;
  1791. height:41px;
  1792. }
  1793. #u75556 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:547px;
  1797. top:0px;
  1798. width:167px;
  1799. height:41px;
  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. #u75556 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u75556_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u75557_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:187px;
  1825. height:41px;
  1826. }
  1827. #u75557 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:714px;
  1831. top:0px;
  1832. width:187px;
  1833. height:41px;
  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. #u75557 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u75557_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u75558_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:167px;
  1859. height:39px;
  1860. }
  1861. #u75558 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:41px;
  1866. width:167px;
  1867. height:39px;
  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. }
  1874. #u75558 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 0px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u75558_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. }
  1886. #u75559_img {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:190px;
  1892. height:39px;
  1893. }
  1894. #u75559 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:167px;
  1898. top:41px;
  1899. width:190px;
  1900. height:39px;
  1901. display:flex;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:12px;
  1906. }
  1907. #u75559 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u75559_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. }
  1919. #u75560_img {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:190px;
  1925. height:39px;
  1926. }
  1927. #u75560 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:357px;
  1931. top:41px;
  1932. width:190px;
  1933. height:39px;
  1934. display:flex;
  1935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:12px;
  1939. }
  1940. #u75560 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u75560_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u75561_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:167px;
  1958. height:39px;
  1959. }
  1960. #u75561 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:547px;
  1964. top:41px;
  1965. width:167px;
  1966. height:39px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. }
  1973. #u75561 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u75561_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u75562_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:187px;
  1991. height:39px;
  1992. }
  1993. #u75562 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:714px;
  1997. top:41px;
  1998. width:187px;
  1999. height:39px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#1890FF;
  2006. }
  2007. #u75562 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u75562_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u75563_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:167px;
  2025. height:35px;
  2026. }
  2027. #u75563 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:80px;
  2032. width:167px;
  2033. height:35px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:12px;
  2039. }
  2040. #u75563 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u75563_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u75564_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:190px;
  2058. height:35px;
  2059. }
  2060. #u75564 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:167px;
  2064. top:80px;
  2065. width:190px;
  2066. height:35px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:12px;
  2072. }
  2073. #u75564 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 0px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u75564_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. }
  2085. #u75565_img {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:190px;
  2091. height:35px;
  2092. }
  2093. #u75565 {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:357px;
  2097. top:80px;
  2098. width:190px;
  2099. height:35px;
  2100. display:flex;
  2101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2102. font-weight:400;
  2103. font-style:normal;
  2104. font-size:12px;
  2105. }
  2106. #u75565 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 2px 2px 0px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u75565_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. }
  2118. #u75566_img {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:167px;
  2124. height:35px;
  2125. }
  2126. #u75566 {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:547px;
  2130. top:80px;
  2131. width:167px;
  2132. height:35px;
  2133. display:flex;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:12px;
  2138. }
  2139. #u75566 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u75566_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. }
  2151. #u75567_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:187px;
  2157. height:35px;
  2158. }
  2159. #u75567 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:714px;
  2163. top:80px;
  2164. width:187px;
  2165. height:35px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#1890FF;
  2172. }
  2173. #u75567 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u75567_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u75568_img {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:167px;
  2191. height:35px;
  2192. }
  2193. #u75568 {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:115px;
  2198. width:167px;
  2199. height:35px;
  2200. display:flex;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:12px;
  2205. }
  2206. #u75568 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 0px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u75568_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. }
  2218. #u75569_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:190px;
  2224. height:35px;
  2225. }
  2226. #u75569 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:167px;
  2230. top:115px;
  2231. width:190px;
  2232. height:35px;
  2233. display:flex;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. }
  2239. #u75569 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 0px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u75569_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u75570_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:190px;
  2257. height:35px;
  2258. }
  2259. #u75570 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:357px;
  2263. top:115px;
  2264. width:190px;
  2265. height:35px;
  2266. display:flex;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. font-size:12px;
  2271. }
  2272. #u75570 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 0px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u75570_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u75571_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:167px;
  2290. height:35px;
  2291. }
  2292. #u75571 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:547px;
  2296. top:115px;
  2297. width:167px;
  2298. height:35px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. }
  2305. #u75571 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u75571_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. }
  2317. #u75572_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:187px;
  2323. height:35px;
  2324. }
  2325. #u75572 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:714px;
  2329. top:115px;
  2330. width:187px;
  2331. height:35px;
  2332. display:flex;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:12px;
  2337. color:#1890FF;
  2338. }
  2339. #u75572 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 2px 2px 0px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u75572_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. }
  2351. #u75573_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:167px;
  2357. height:34px;
  2358. }
  2359. #u75573 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:150px;
  2364. width:167px;
  2365. height:34px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:12px;
  2371. }
  2372. #u75573 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u75573_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. }
  2384. #u75574_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:190px;
  2390. height:34px;
  2391. }
  2392. #u75574 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:167px;
  2396. top:150px;
  2397. width:190px;
  2398. height:34px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:12px;
  2404. }
  2405. #u75574 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 2px 2px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u75574_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u75575_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:190px;
  2423. height:34px;
  2424. }
  2425. #u75575 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:357px;
  2429. top:150px;
  2430. width:190px;
  2431. height:34px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. }
  2438. #u75575 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u75575_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. }
  2450. #u75576_img {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:167px;
  2456. height:34px;
  2457. }
  2458. #u75576 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:547px;
  2462. top:150px;
  2463. width:167px;
  2464. height:34px;
  2465. display:flex;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:12px;
  2470. }
  2471. #u75576 .text {
  2472. position:absolute;
  2473. align-self:center;
  2474. padding:2px 2px 2px 0px;
  2475. box-sizing:border-box;
  2476. width:100%;
  2477. }
  2478. #u75576_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. }
  2483. #u75577_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:187px;
  2489. height:34px;
  2490. }
  2491. #u75577 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:714px;
  2495. top:150px;
  2496. width:187px;
  2497. height:34px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#1890FF;
  2504. }
  2505. #u75577 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u75577_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. }
  2517. #u75578_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:167px;
  2523. height:36px;
  2524. }
  2525. #u75578 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:184px;
  2530. width:167px;
  2531. height:36px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. }
  2538. #u75578 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u75578_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u75579_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:190px;
  2557. height:36px;
  2558. }
  2559. #u75579 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:167px;
  2563. top:184px;
  2564. width:190px;
  2565. height:36px;
  2566. display:flex;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:12px;
  2571. }
  2572. #u75579 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u75579_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. visibility:hidden;
  2584. }
  2585. #u75580_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:190px;
  2591. height:36px;
  2592. }
  2593. #u75580 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:357px;
  2597. top:184px;
  2598. width:190px;
  2599. height:36px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. }
  2606. #u75580 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u75580_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. visibility:hidden;
  2618. }
  2619. #u75581_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:167px;
  2625. height:36px;
  2626. }
  2627. #u75581 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:547px;
  2631. top:184px;
  2632. width:167px;
  2633. height:36px;
  2634. display:flex;
  2635. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:12px;
  2639. }
  2640. #u75581 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u75581_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u75582_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:187px;
  2659. height:36px;
  2660. }
  2661. #u75582 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:714px;
  2665. top:184px;
  2666. width:187px;
  2667. height:36px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#1890FF;
  2674. }
  2675. #u75582 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u75582_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u75583_img {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:167px;
  2694. height:35px;
  2695. }
  2696. #u75583 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:220px;
  2701. width:167px;
  2702. height:35px;
  2703. display:flex;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. }
  2709. #u75583 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u75583_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. visibility:hidden;
  2721. }
  2722. #u75584_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:190px;
  2728. height:35px;
  2729. }
  2730. #u75584 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:167px;
  2734. top:220px;
  2735. width:190px;
  2736. height:35px;
  2737. display:flex;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:12px;
  2742. }
  2743. #u75584 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u75584_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u75585_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:190px;
  2762. height:35px;
  2763. }
  2764. #u75585 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:357px;
  2768. top:220px;
  2769. width:190px;
  2770. height:35px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. }
  2777. #u75585 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u75585_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u75586_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:167px;
  2796. height:35px;
  2797. }
  2798. #u75586 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:547px;
  2802. top:220px;
  2803. width:167px;
  2804. height:35px;
  2805. display:flex;
  2806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:12px;
  2810. }
  2811. #u75586 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u75586_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u75587_img {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:187px;
  2830. height:35px;
  2831. }
  2832. #u75587 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:714px;
  2836. top:220px;
  2837. width:187px;
  2838. height:35px;
  2839. display:flex;
  2840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2841. font-weight:400;
  2842. font-style:normal;
  2843. font-size:12px;
  2844. color:#1890FF;
  2845. }
  2846. #u75587 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 0px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u75587_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u75588_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:167px;
  2865. height:35px;
  2866. }
  2867. #u75588 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:255px;
  2872. width:167px;
  2873. height:35px;
  2874. display:flex;
  2875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:12px;
  2879. }
  2880. #u75588 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 0px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u75588_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u75589_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:190px;
  2899. height:35px;
  2900. }
  2901. #u75589 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:167px;
  2905. top:255px;
  2906. width:190px;
  2907. height:35px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. }
  2914. #u75589 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:2px 2px 2px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u75589_text {
  2922. border-width:0px;
  2923. word-wrap:break-word;
  2924. text-transform:none;
  2925. visibility:hidden;
  2926. }
  2927. #u75590_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:190px;
  2933. height:35px;
  2934. }
  2935. #u75590 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:357px;
  2939. top:255px;
  2940. width:190px;
  2941. height:35px;
  2942. display:flex;
  2943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:12px;
  2947. }
  2948. #u75590 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u75590_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u75591_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:167px;
  2967. height:35px;
  2968. }
  2969. #u75591 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:547px;
  2973. top:255px;
  2974. width:167px;
  2975. height:35px;
  2976. display:flex;
  2977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. }
  2982. #u75591 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u75591_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u75592_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:187px;
  3001. height:35px;
  3002. }
  3003. #u75592 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:714px;
  3007. top:255px;
  3008. width:187px;
  3009. height:35px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#1890FF;
  3016. }
  3017. #u75592 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u75592_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u75593_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:167px;
  3036. height:35px;
  3037. }
  3038. #u75593 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:290px;
  3043. width:167px;
  3044. height:35px;
  3045. display:flex;
  3046. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. color:#606266;
  3051. }
  3052. #u75593 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u75593_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u75594_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:190px;
  3071. height:35px;
  3072. }
  3073. #u75594 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:167px;
  3077. top:290px;
  3078. width:190px;
  3079. height:35px;
  3080. display:flex;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. }
  3086. #u75594 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 0px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u75594_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u75595_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:190px;
  3105. height:35px;
  3106. }
  3107. #u75595 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:357px;
  3111. top:290px;
  3112. width:190px;
  3113. height:35px;
  3114. display:flex;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. }
  3120. #u75595 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 0px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u75595_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u75596_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:167px;
  3139. height:35px;
  3140. }
  3141. #u75596 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:547px;
  3145. top:290px;
  3146. width:167px;
  3147. height:35px;
  3148. display:flex;
  3149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:12px;
  3153. color:#606266;
  3154. }
  3155. #u75596 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 2px 2px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u75596_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u75597_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:187px;
  3174. height:35px;
  3175. }
  3176. #u75597 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:714px;
  3180. top:290px;
  3181. width:187px;
  3182. height:35px;
  3183. display:flex;
  3184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:12px;
  3188. color:#606266;
  3189. }
  3190. #u75597 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 0px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u75597_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u75598_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:167px;
  3209. height:35px;
  3210. }
  3211. #u75598 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:325px;
  3216. width:167px;
  3217. height:35px;
  3218. display:flex;
  3219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:12px;
  3223. color:#606266;
  3224. }
  3225. #u75598 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 0px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u75598_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u75599_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:190px;
  3244. height:35px;
  3245. }
  3246. #u75599 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:167px;
  3250. top:325px;
  3251. width:190px;
  3252. height:35px;
  3253. display:flex;
  3254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:12px;
  3258. color:#606266;
  3259. }
  3260. #u75599 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 0px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u75599_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u75600_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:190px;
  3279. height:35px;
  3280. }
  3281. #u75600 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:357px;
  3285. top:325px;
  3286. width:190px;
  3287. height:35px;
  3288. display:flex;
  3289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:12px;
  3293. color:#606266;
  3294. }
  3295. #u75600 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u75600_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u75601_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:167px;
  3314. height:35px;
  3315. }
  3316. #u75601 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:547px;
  3320. top:325px;
  3321. width:167px;
  3322. height:35px;
  3323. display:flex;
  3324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. color:#606266;
  3329. }
  3330. #u75601 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u75601_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u75602_img {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:187px;
  3349. height:35px;
  3350. }
  3351. #u75602 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:714px;
  3355. top:325px;
  3356. width:187px;
  3357. height:35px;
  3358. display:flex;
  3359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:12px;
  3363. color:#606266;
  3364. }
  3365. #u75602 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 0px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u75602_text {
  3373. border-width:0px;
  3374. word-wrap:break-word;
  3375. text-transform:none;
  3376. visibility:hidden;
  3377. }
  3378. #u75603_img {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:167px;
  3384. height:35px;
  3385. }
  3386. #u75603 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:360px;
  3391. width:167px;
  3392. height:35px;
  3393. display:flex;
  3394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. color:#606266;
  3399. }
  3400. #u75603 .text {
  3401. position:absolute;
  3402. align-self:center;
  3403. padding:2px 2px 2px 0px;
  3404. box-sizing:border-box;
  3405. width:100%;
  3406. }
  3407. #u75603_text {
  3408. border-width:0px;
  3409. word-wrap:break-word;
  3410. text-transform:none;
  3411. visibility:hidden;
  3412. }
  3413. #u75604_img {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:190px;
  3419. height:35px;
  3420. }
  3421. #u75604 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:167px;
  3425. top:360px;
  3426. width:190px;
  3427. height:35px;
  3428. display:flex;
  3429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:12px;
  3433. color:#606266;
  3434. }
  3435. #u75604 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 0px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u75604_text {
  3443. border-width:0px;
  3444. word-wrap:break-word;
  3445. text-transform:none;
  3446. visibility:hidden;
  3447. }
  3448. #u75605_img {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:190px;
  3454. height:35px;
  3455. }
  3456. #u75605 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:357px;
  3460. top:360px;
  3461. width:190px;
  3462. height:35px;
  3463. display:flex;
  3464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:12px;
  3468. color:#606266;
  3469. }
  3470. #u75605 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:2px 2px 2px 0px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u75605_text {
  3478. border-width:0px;
  3479. word-wrap:break-word;
  3480. text-transform:none;
  3481. visibility:hidden;
  3482. }
  3483. #u75606_img {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:167px;
  3489. height:35px;
  3490. }
  3491. #u75606 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:547px;
  3495. top:360px;
  3496. width:167px;
  3497. height:35px;
  3498. display:flex;
  3499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. color:#606266;
  3504. }
  3505. #u75606 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u75606_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u75607_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:187px;
  3524. height:35px;
  3525. }
  3526. #u75607 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:714px;
  3530. top:360px;
  3531. width:187px;
  3532. height:35px;
  3533. display:flex;
  3534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. color:#606266;
  3539. }
  3540. #u75607 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u75607_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. visibility:hidden;
  3552. }
  3553. #u75608_img {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:167px;
  3559. height:35px;
  3560. }
  3561. #u75608 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:395px;
  3566. width:167px;
  3567. height:35px;
  3568. display:flex;
  3569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:12px;
  3573. color:#606266;
  3574. }
  3575. #u75608 .text {
  3576. position:absolute;
  3577. align-self:center;
  3578. padding:2px 2px 2px 0px;
  3579. box-sizing:border-box;
  3580. width:100%;
  3581. }
  3582. #u75608_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. visibility:hidden;
  3587. }
  3588. #u75609_img {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:190px;
  3594. height:35px;
  3595. }
  3596. #u75609 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:167px;
  3600. top:395px;
  3601. width:190px;
  3602. height:35px;
  3603. display:flex;
  3604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:12px;
  3608. color:#606266;
  3609. }
  3610. #u75609 .text {
  3611. position:absolute;
  3612. align-self:center;
  3613. padding:2px 2px 2px 0px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u75609_text {
  3618. border-width:0px;
  3619. word-wrap:break-word;
  3620. text-transform:none;
  3621. visibility:hidden;
  3622. }
  3623. #u75610_img {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:190px;
  3629. height:35px;
  3630. }
  3631. #u75610 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:357px;
  3635. top:395px;
  3636. width:190px;
  3637. height:35px;
  3638. display:flex;
  3639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. color:#606266;
  3644. }
  3645. #u75610 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u75610_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. visibility:hidden;
  3657. }
  3658. #u75611_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:167px;
  3664. height:35px;
  3665. }
  3666. #u75611 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:547px;
  3670. top:395px;
  3671. width:167px;
  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:#606266;
  3679. }
  3680. #u75611 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 2px 2px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u75611_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. visibility:hidden;
  3692. }
  3693. #u75612_img {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:187px;
  3699. height:35px;
  3700. }
  3701. #u75612 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:714px;
  3705. top:395px;
  3706. width:187px;
  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:#606266;
  3714. }
  3715. #u75612 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:2px 2px 2px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u75612_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. visibility:hidden;
  3727. }
  3728. #u75613_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:167px;
  3734. height:35px;
  3735. }
  3736. #u75613 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:430px;
  3741. width:167px;
  3742. height:35px;
  3743. display:flex;
  3744. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:12px;
  3748. color:#606266;
  3749. }
  3750. #u75613 .text {
  3751. position:absolute;
  3752. align-self:center;
  3753. padding:2px 2px 2px 0px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u75613_text {
  3758. border-width:0px;
  3759. word-wrap:break-word;
  3760. text-transform:none;
  3761. visibility:hidden;
  3762. }
  3763. #u75614_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:190px;
  3769. height:35px;
  3770. }
  3771. #u75614 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:167px;
  3775. top:430px;
  3776. width:190px;
  3777. height:35px;
  3778. display:flex;
  3779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3780. font-weight:400;
  3781. font-style:normal;
  3782. font-size:12px;
  3783. color:#606266;
  3784. }
  3785. #u75614 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 0px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u75614_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u75615_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:190px;
  3804. height:35px;
  3805. }
  3806. #u75615 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:357px;
  3810. top:430px;
  3811. width:190px;
  3812. height:35px;
  3813. display:flex;
  3814. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:12px;
  3818. color:#606266;
  3819. }
  3820. #u75615 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 2px 2px 0px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u75615_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u75616_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:167px;
  3839. height:35px;
  3840. }
  3841. #u75616 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:547px;
  3845. top:430px;
  3846. width:167px;
  3847. height:35px;
  3848. display:flex;
  3849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:12px;
  3853. color:#606266;
  3854. }
  3855. #u75616 .text {
  3856. position:absolute;
  3857. align-self:center;
  3858. padding:2px 2px 2px 0px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u75616_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. visibility:hidden;
  3867. }
  3868. #u75617_img {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:187px;
  3874. height:35px;
  3875. }
  3876. #u75617 {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:714px;
  3880. top:430px;
  3881. width:187px;
  3882. height:35px;
  3883. display:flex;
  3884. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:12px;
  3888. color:#606266;
  3889. }
  3890. #u75617 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 0px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u75617_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u75618_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:59px;
  3909. height:30px;
  3910. background:inherit;
  3911. background-color:rgba(41, 143, 255, 1);
  3912. border:none;
  3913. border-radius:4px;
  3914. -moz-box-shadow:none;
  3915. -webkit-box-shadow:none;
  3916. box-shadow:none;
  3917. font-family:'Microsoft YaHei', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:14px;
  3921. color:#FFFFFF;
  3922. }
  3923. #u75618 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:1128px;
  3927. top:162px;
  3928. width:59px;
  3929. height:30px;
  3930. display:flex;
  3931. font-family:'Microsoft YaHei', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:14px;
  3935. color:#FFFFFF;
  3936. }
  3937. #u75618 .text {
  3938. position:absolute;
  3939. align-self:center;
  3940. padding:5px 15px 5px 15px;
  3941. box-sizing:border-box;
  3942. width:100%;
  3943. }
  3944. #u75618_text {
  3945. border-width:0px;
  3946. white-space:nowrap;
  3947. text-transform:none;
  3948. }
  3949. #u75619_div {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:0px;
  3953. top:0px;
  3954. width:55px;
  3955. height:30px;
  3956. background:inherit;
  3957. background-color:rgba(255, 255, 255, 1);
  3958. box-sizing:border-box;
  3959. border-width:1px;
  3960. border-style:solid;
  3961. border-color:rgba(170, 170, 170, 1);
  3962. border-radius:4px;
  3963. -moz-box-shadow:none;
  3964. -webkit-box-shadow:none;
  3965. box-shadow:none;
  3966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:12px;
  3970. color:#555555;
  3971. }
  3972. #u75619 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:1197px;
  3976. top:162px;
  3977. width:55px;
  3978. height:30px;
  3979. display:flex;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:12px;
  3984. color:#555555;
  3985. }
  3986. #u75619 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:5px 15px 5px 15px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u75619_text {
  3994. border-width:0px;
  3995. white-space:nowrap;
  3996. text-transform:none;
  3997. }
  3998. #u75620_div {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:80px;
  4004. height:30px;
  4005. background:inherit;
  4006. background-color:rgba(24, 144, 255, 1);
  4007. border:none;
  4008. border-radius:4px;
  4009. -moz-box-shadow:none;
  4010. -webkit-box-shadow:none;
  4011. box-shadow:none;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:12px;
  4016. color:#FFFFFF;
  4017. }
  4018. #u75620 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:538px;
  4022. top:150px;
  4023. width:80px;
  4024. height:30px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:12px;
  4030. color:#FFFFFF;
  4031. }
  4032. #u75620 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:5px 15px 5px 15px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u75620_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. }
  4044. #u75621 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:0px;
  4050. height:0px;
  4051. }
  4052. #u75622_div {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:140px;
  4058. height:30px;
  4059. background:inherit;
  4060. background-color:rgba(255, 255, 255, 1);
  4061. box-sizing:border-box;
  4062. border-width:1px;
  4063. border-style:solid;
  4064. border-color:rgba(215, 215, 215, 1);
  4065. border-radius:4px;
  4066. -moz-box-shadow:none;
  4067. -webkit-box-shadow:none;
  4068. box-shadow:none;
  4069. font-size:11px;
  4070. }
  4071. #u75622 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:968px;
  4075. top:162px;
  4076. width:140px;
  4077. height:30px;
  4078. display:flex;
  4079. font-size:11px;
  4080. }
  4081. #u75622 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:2px 2px 2px 2px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u75622_text {
  4089. border-width:0px;
  4090. word-wrap:break-word;
  4091. text-transform:none;
  4092. visibility:hidden;
  4093. }
  4094. #u75623_input {
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:120px;
  4099. height:23px;
  4100. padding:2px 2px 2px 2px;
  4101. font-family:'ArialMT', 'Arial', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:11px;
  4105. letter-spacing:normal;
  4106. color:#AAAAAA;
  4107. vertical-align:none;
  4108. text-align:left;
  4109. text-transform:none;
  4110. background-color:transparent;
  4111. border-color:transparent;
  4112. }
  4113. #u75623_input.disabled {
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:120px;
  4118. height:23px;
  4119. padding:2px 2px 2px 2px;
  4120. font-family:'ArialMT', 'Arial', sans-serif;
  4121. font-weight:400;
  4122. font-style:normal;
  4123. font-size:11px;
  4124. letter-spacing:normal;
  4125. color:#AAAAAA;
  4126. vertical-align:none;
  4127. text-align:left;
  4128. text-transform:none;
  4129. background-color:transparent;
  4130. border-color:transparent;
  4131. }
  4132. #u75623_div {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:120px;
  4138. height:23px;
  4139. background:inherit;
  4140. background-color:rgba(255, 255, 255, 1);
  4141. border:none;
  4142. border-radius:0px;
  4143. -moz-box-shadow:none;
  4144. -webkit-box-shadow:none;
  4145. box-shadow:none;
  4146. font-size:11px;
  4147. color:#AAAAAA;
  4148. }
  4149. #u75623 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:975px;
  4153. top:164px;
  4154. width:120px;
  4155. height:23px;
  4156. display:flex;
  4157. font-size:11px;
  4158. color:#AAAAAA;
  4159. }
  4160. #u75623 .text {
  4161. position:absolute;
  4162. align-self:flex-start;
  4163. padding:2px 2px 2px 2px;
  4164. box-sizing:border-box;
  4165. width:100%;
  4166. }
  4167. #u75623_div.disabled {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:120px;
  4173. height:23px;
  4174. background:inherit;
  4175. background-color:rgba(240, 240, 240, 1);
  4176. border:none;
  4177. border-radius:0px;
  4178. -moz-box-shadow:none;
  4179. -webkit-box-shadow:none;
  4180. box-shadow:none;
  4181. font-size:11px;
  4182. color:#AAAAAA;
  4183. }
  4184. #u75623.disabled {
  4185. }
  4186. .u75623_input_option {
  4187. font-size:11px;
  4188. }
  4189. #u75624_div {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:73px;
  4195. height:50px;
  4196. background:inherit;
  4197. background-color:rgba(255, 255, 255, 0);
  4198. border:none;
  4199. border-left:0px;
  4200. border-top:0px;
  4201. border-right:0px;
  4202. border-radius:0px;
  4203. border-bottom-right-radius:0px;
  4204. border-bottom-left-radius:0px;
  4205. -moz-box-shadow:none;
  4206. -webkit-box-shadow:none;
  4207. box-shadow:none;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:18px;
  4212. }
  4213. #u75624 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:349px;
  4217. top:50px;
  4218. width:73px;
  4219. height:50px;
  4220. display:flex;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:18px;
  4225. }
  4226. #u75624 .text {
  4227. position:absolute;
  4228. align-self:center;
  4229. padding:0px 0px 0px 0px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u75624_text {
  4234. border-width:0px;
  4235. white-space:nowrap;
  4236. text-transform:none;
  4237. }
  4238. #u75625 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:0px;
  4244. height:0px;
  4245. }
  4246. #u75626_div {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:140px;
  4252. height:30px;
  4253. background:inherit;
  4254. background-color:rgba(255, 255, 255, 1);
  4255. box-sizing:border-box;
  4256. border-width:1px;
  4257. border-style:solid;
  4258. border-color:rgba(201, 201, 201, 1);
  4259. border-radius:4px;
  4260. -moz-box-shadow:none;
  4261. -webkit-box-shadow:none;
  4262. box-shadow:none;
  4263. font-family:'Microsoft YaHei', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:14px;
  4267. color:#CCCCCC;
  4268. text-align:left;
  4269. }
  4270. #u75626 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:668px;
  4274. top:162px;
  4275. width:140px;
  4276. height:30px;
  4277. display:flex;
  4278. font-family:'Microsoft YaHei', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:14px;
  4282. color:#CCCCCC;
  4283. text-align:left;
  4284. }
  4285. #u75626 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 8px 2px 8px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u75626_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u75627_input {
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:127px;
  4303. height:25px;
  4304. padding:2px 2px 2px 2px;
  4305. font-family:'Microsoft YaHei', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:10px;
  4309. letter-spacing:normal;
  4310. color:#000000;
  4311. vertical-align:none;
  4312. text-align:left;
  4313. text-transform:none;
  4314. background-color:transparent;
  4315. border-color:transparent;
  4316. }
  4317. #u75627_input.disabled {
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:127px;
  4322. height:25px;
  4323. padding:2px 2px 2px 2px;
  4324. font-family:'Microsoft YaHei', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:10px;
  4328. letter-spacing:normal;
  4329. color:#000000;
  4330. vertical-align:none;
  4331. text-align:left;
  4332. text-transform:none;
  4333. background-color:transparent;
  4334. border-color:transparent;
  4335. }
  4336. #u75627_div {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:127px;
  4342. height:25px;
  4343. background:inherit;
  4344. background-color:rgba(255, 255, 255, 1);
  4345. border:none;
  4346. border-radius:0px;
  4347. -moz-box-shadow:none;
  4348. -webkit-box-shadow:none;
  4349. box-shadow:none;
  4350. font-family:'Microsoft YaHei', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:10px;
  4354. }
  4355. #u75627 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:676px;
  4359. top:163px;
  4360. width:127px;
  4361. height:25px;
  4362. display:flex;
  4363. font-family:'Microsoft YaHei', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:10px;
  4367. }
  4368. #u75627 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 2px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u75627_div.disabled {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:127px;
  4381. height:25px;
  4382. background:inherit;
  4383. background-color:rgba(240, 240, 240, 1);
  4384. border:none;
  4385. border-radius:0px;
  4386. -moz-box-shadow:none;
  4387. -webkit-box-shadow:none;
  4388. box-shadow:none;
  4389. font-family:'Microsoft YaHei', sans-serif;
  4390. font-weight:400;
  4391. font-style:normal;
  4392. font-size:10px;
  4393. }
  4394. #u75627.disabled {
  4395. }
  4396. #u75628 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:0px;
  4402. height:0px;
  4403. }
  4404. #u75629_div {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:100px;
  4410. height:100px;
  4411. background:inherit;
  4412. background-color:rgba(255, 255, 255, 1);
  4413. border:none;
  4414. border-radius:4px;
  4415. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4416. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4417. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4418. }
  4419. #u75629 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:1384px;
  4423. top:436px;
  4424. width:100px;
  4425. height:100px;
  4426. display:flex;
  4427. }
  4428. #u75629 .text {
  4429. position:absolute;
  4430. align-self:center;
  4431. padding:2px 2px 2px 2px;
  4432. box-sizing:border-box;
  4433. width:100%;
  4434. }
  4435. #u75629_text {
  4436. border-width:0px;
  4437. word-wrap:break-word;
  4438. text-transform:none;
  4439. visibility:hidden;
  4440. }
  4441. #u75630_div {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:83px;
  4447. height:40px;
  4448. background:inherit;
  4449. background-color:rgba(255, 255, 255, 1);
  4450. box-sizing:border-box;
  4451. border-width:1px;
  4452. border-style:solid;
  4453. border-color:rgba(242, 242, 242, 1);
  4454. border-left:0px;
  4455. border-top:0px;
  4456. border-right:0px;
  4457. border-radius:4px;
  4458. border-bottom-right-radius:0px;
  4459. border-bottom-left-radius:0px;
  4460. -moz-box-shadow:none;
  4461. -webkit-box-shadow:none;
  4462. box-shadow:none;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:14px;
  4467. }
  4468. #u75630 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:1392px;
  4472. top:447px;
  4473. width:83px;
  4474. height:40px;
  4475. display:flex;
  4476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4477. font-weight:400;
  4478. font-style:normal;
  4479. font-size:14px;
  4480. }
  4481. #u75630 .text {
  4482. position:absolute;
  4483. align-self:center;
  4484. padding:5px 0px 5px 0px;
  4485. box-sizing:border-box;
  4486. width:100%;
  4487. }
  4488. #u75630_text {
  4489. border-width:0px;
  4490. word-wrap:break-word;
  4491. text-transform:none;
  4492. }
  4493. #u75631_div {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:83px;
  4499. height:40px;
  4500. background:inherit;
  4501. background-color:rgba(255, 255, 255, 1);
  4502. border:none;
  4503. border-left:0px;
  4504. border-top:0px;
  4505. border-right:0px;
  4506. border-radius:4px;
  4507. border-bottom-right-radius:0px;
  4508. border-bottom-left-radius:0px;
  4509. -moz-box-shadow:none;
  4510. -webkit-box-shadow:none;
  4511. box-shadow:none;
  4512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. font-size:14px;
  4516. }
  4517. #u75631 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:1392px;
  4521. top:487px;
  4522. width:83px;
  4523. height:40px;
  4524. display:flex;
  4525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:14px;
  4529. }
  4530. #u75631 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:5px 0px 5px 0px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u75631_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. }
  4542. #u75632_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:11px;
  4548. height:11px;
  4549. }
  4550. #u75632 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:1077px;
  4554. top:204px;
  4555. width:11px;
  4556. height:11px;
  4557. display:flex;
  4558. color:#FFFFFF;
  4559. }
  4560. #u75632 .text {
  4561. position:absolute;
  4562. align-self:center;
  4563. padding:2px 2px 2px 2px;
  4564. box-sizing:border-box;
  4565. width:100%;
  4566. }
  4567. #u75632_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u75633_div {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:79px;
  4579. height:30px;
  4580. background:inherit;
  4581. background-color:rgba(25, 140, 251, 1);
  4582. border:none;
  4583. border-radius:4px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:12px;
  4591. color:#FFFFFF;
  4592. }
  4593. #u75633 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:668px;
  4597. top:212px;
  4598. width:79px;
  4599. height:30px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:12px;
  4605. color:#FFFFFF;
  4606. }
  4607. #u75633 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:5px 15px 5px 15px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u75633_text {
  4615. border-width:0px;
  4616. white-space:nowrap;
  4617. text-transform:none;
  4618. }
  4619. #u75634_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:300px;
  4625. height:1080px;
  4626. background:inherit;
  4627. background-color:rgba(242, 242, 242, 1);
  4628. border:none;
  4629. border-radius:4px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. }
  4634. #u75634 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:348px;
  4638. top:102px;
  4639. width:300px;
  4640. height:1080px;
  4641. display:flex;
  4642. }
  4643. #u75634 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 2px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u75634_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u75635_div {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:37px;
  4662. height:50px;
  4663. background:inherit;
  4664. background-color:rgba(255, 255, 255, 0);
  4665. border:none;
  4666. border-left:0px;
  4667. border-top:0px;
  4668. border-right:0px;
  4669. border-radius:0px;
  4670. border-bottom-right-radius:0px;
  4671. border-bottom-left-radius:0px;
  4672. -moz-box-shadow:none;
  4673. -webkit-box-shadow:none;
  4674. box-shadow:none;
  4675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:18px;
  4679. color:#000000;
  4680. line-height:40px;
  4681. }
  4682. #u75635 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:668px;
  4686. top:102px;
  4687. width:37px;
  4688. height:50px;
  4689. display:flex;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:18px;
  4694. color:#000000;
  4695. line-height:40px;
  4696. }
  4697. #u75635 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:0px 0px 0px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u75635_text {
  4705. border-width:0px;
  4706. white-space:nowrap;
  4707. text-transform:none;
  4708. }
  4709. #u75636 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:372px;
  4713. top:127px;
  4714. width:117px;
  4715. height:200px;
  4716. }
  4717. #u75636_children {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:0px;
  4723. height:0px;
  4724. }
  4725. #u75637 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:54px;
  4731. height:20px;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. color:#298FFF;
  4736. }
  4737. #u75638_img {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:9px;
  4743. height:9px;
  4744. }
  4745. #u75638 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:6px;
  4749. top:6px;
  4750. width:9px;
  4751. height:9px;
  4752. display:flex;
  4753. }
  4754. #u75638 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:2px 2px 2px 2px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u75638_img.selected {
  4762. }
  4763. #u75638.selected {
  4764. }
  4765. #u75638_text {
  4766. border-width:0px;
  4767. word-wrap:break-word;
  4768. text-transform:none;
  4769. visibility:hidden;
  4770. }
  4771. #u75639_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:32px;
  4777. height:20px;
  4778. background:inherit;
  4779. background-color:rgba(255, 255, 255, 0);
  4780. border:none;
  4781. border-radius:0px;
  4782. -moz-box-shadow:none;
  4783. -webkit-box-shadow:none;
  4784. box-shadow:none;
  4785. }
  4786. #u75639 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:22px;
  4790. top:0px;
  4791. width:32px;
  4792. height:20px;
  4793. display:flex;
  4794. }
  4795. #u75639 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 3px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u75639_text {
  4803. border-width:0px;
  4804. white-space:nowrap;
  4805. text-transform:none;
  4806. }
  4807. #u75637_children {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:0px;
  4813. height:0px;
  4814. }
  4815. #u75640 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:20px;
  4819. top:20px;
  4820. width:67px;
  4821. height:20px;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. }
  4826. #u75641_div {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:45px;
  4832. height:20px;
  4833. background:inherit;
  4834. background-color:rgba(255, 255, 255, 0);
  4835. border:none;
  4836. border-radius:0px;
  4837. -moz-box-shadow:none;
  4838. -webkit-box-shadow:none;
  4839. box-shadow:none;
  4840. }
  4841. #u75641 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:22px;
  4845. top:0px;
  4846. width:45px;
  4847. height:20px;
  4848. display:flex;
  4849. }
  4850. #u75641 .text {
  4851. position:absolute;
  4852. align-self:center;
  4853. padding:2px 2px 2px 3px;
  4854. box-sizing:border-box;
  4855. width:100%;
  4856. }
  4857. #u75641_text {
  4858. border-width:0px;
  4859. white-space:nowrap;
  4860. text-transform:none;
  4861. }
  4862. #u75642 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:20px;
  4866. top:40px;
  4867. width:67px;
  4868. height:20px;
  4869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. }
  4873. #u75643_div {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:45px;
  4879. height:20px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 0);
  4882. border:none;
  4883. border-radius:0px;
  4884. -moz-box-shadow:none;
  4885. -webkit-box-shadow:none;
  4886. box-shadow:none;
  4887. }
  4888. #u75643 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:22px;
  4892. top:0px;
  4893. width:45px;
  4894. height:20px;
  4895. display:flex;
  4896. }
  4897. #u75643 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 3px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u75643_text {
  4905. border-width:0px;
  4906. white-space:nowrap;
  4907. text-transform:none;
  4908. }
  4909. #u75644 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:20px;
  4913. top:60px;
  4914. width:67px;
  4915. height:20px;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. }
  4920. #u75645_div {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:45px;
  4926. height:20px;
  4927. background:inherit;
  4928. background-color:rgba(255, 255, 255, 0);
  4929. border:none;
  4930. border-radius:0px;
  4931. -moz-box-shadow:none;
  4932. -webkit-box-shadow:none;
  4933. box-shadow:none;
  4934. }
  4935. #u75645 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:22px;
  4939. top:0px;
  4940. width:45px;
  4941. height:20px;
  4942. display:flex;
  4943. }
  4944. #u75645 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 3px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u75645_text {
  4952. border-width:0px;
  4953. white-space:nowrap;
  4954. text-transform:none;
  4955. }
  4956. #u75646 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:80px;
  4961. width:54px;
  4962. height:20px;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. }
  4967. #u75647_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:9px;
  4973. height:9px;
  4974. }
  4975. #u75647 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:6px;
  4979. top:6px;
  4980. width:9px;
  4981. height:9px;
  4982. display:flex;
  4983. }
  4984. #u75647 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 2px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u75647_img.selected {
  4992. }
  4993. #u75647.selected {
  4994. }
  4995. #u75647_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. visibility:hidden;
  5000. }
  5001. #u75648_div {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:32px;
  5007. height:20px;
  5008. background:inherit;
  5009. background-color:rgba(255, 255, 255, 0);
  5010. border:none;
  5011. border-radius:0px;
  5012. -moz-box-shadow:none;
  5013. -webkit-box-shadow:none;
  5014. box-shadow:none;
  5015. }
  5016. #u75648 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:22px;
  5020. top:0px;
  5021. width:32px;
  5022. height:20px;
  5023. display:flex;
  5024. }
  5025. #u75648 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 3px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u75648_text {
  5033. border-width:0px;
  5034. white-space:nowrap;
  5035. text-transform:none;
  5036. }
  5037. #u75646_children {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:0px;
  5043. height:0px;
  5044. }
  5045. #u75649 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:20px;
  5049. top:20px;
  5050. width:93px;
  5051. height:20px;
  5052. }
  5053. #u75650_div {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:71px;
  5059. height:20px;
  5060. background:inherit;
  5061. background-color:rgba(255, 255, 255, 0);
  5062. border:none;
  5063. border-radius:0px;
  5064. -moz-box-shadow:none;
  5065. -webkit-box-shadow:none;
  5066. box-shadow:none;
  5067. }
  5068. #u75650 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:22px;
  5072. top:0px;
  5073. width:71px;
  5074. height:20px;
  5075. display:flex;
  5076. }
  5077. #u75650 .text {
  5078. position:absolute;
  5079. align-self:center;
  5080. padding:2px 2px 2px 3px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u75650_text {
  5085. border-width:0px;
  5086. white-space:nowrap;
  5087. text-transform:none;
  5088. }
  5089. #u75651 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:20px;
  5093. top:40px;
  5094. width:93px;
  5095. height:20px;
  5096. }
  5097. #u75652_div {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:71px;
  5103. height:20px;
  5104. background:inherit;
  5105. background-color:rgba(255, 255, 255, 0);
  5106. border:none;
  5107. border-radius:0px;
  5108. -moz-box-shadow:none;
  5109. -webkit-box-shadow:none;
  5110. box-shadow:none;
  5111. }
  5112. #u75652 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:22px;
  5116. top:0px;
  5117. width:71px;
  5118. height:20px;
  5119. display:flex;
  5120. }
  5121. #u75652 .text {
  5122. position:absolute;
  5123. align-self:center;
  5124. padding:2px 2px 2px 3px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u75652_text {
  5129. border-width:0px;
  5130. white-space:nowrap;
  5131. text-transform:none;
  5132. }
  5133. #u75653 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:140px;
  5138. width:54px;
  5139. height:20px;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. }
  5144. #u75654_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:9px;
  5150. height:9px;
  5151. }
  5152. #u75654 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:6px;
  5156. top:6px;
  5157. width:9px;
  5158. height:9px;
  5159. display:flex;
  5160. }
  5161. #u75654 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 2px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u75654_img.selected {
  5169. }
  5170. #u75654.selected {
  5171. }
  5172. #u75654_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. visibility:hidden;
  5177. }
  5178. #u75655_div {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:32px;
  5184. height:20px;
  5185. background:inherit;
  5186. background-color:rgba(255, 255, 255, 0);
  5187. border:none;
  5188. border-radius:0px;
  5189. -moz-box-shadow:none;
  5190. -webkit-box-shadow:none;
  5191. box-shadow:none;
  5192. }
  5193. #u75655 {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:22px;
  5197. top:0px;
  5198. width:32px;
  5199. height:20px;
  5200. display:flex;
  5201. }
  5202. #u75655 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 3px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u75655_text {
  5210. border-width:0px;
  5211. white-space:nowrap;
  5212. text-transform:none;
  5213. }
  5214. #u75653_children {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:0px;
  5220. height:0px;
  5221. }
  5222. #u75656 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:20px;
  5226. top:20px;
  5227. width:97px;
  5228. height:20px;
  5229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5230. font-weight:400;
  5231. font-style:normal;
  5232. }
  5233. #u75657_div {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:75px;
  5239. height:20px;
  5240. background:inherit;
  5241. background-color:rgba(255, 255, 255, 0);
  5242. border:none;
  5243. border-radius:0px;
  5244. -moz-box-shadow:none;
  5245. -webkit-box-shadow:none;
  5246. box-shadow:none;
  5247. }
  5248. #u75657 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:22px;
  5252. top:0px;
  5253. width:75px;
  5254. height:20px;
  5255. display:flex;
  5256. }
  5257. #u75657 .text {
  5258. position:absolute;
  5259. align-self:center;
  5260. padding:2px 2px 2px 3px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u75657_text {
  5265. border-width:0px;
  5266. white-space:nowrap;
  5267. text-transform:none;
  5268. }
  5269. #u75658 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:20px;
  5273. top:40px;
  5274. width:97px;
  5275. height:20px;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. }
  5280. #u75659_div {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:75px;
  5286. height:20px;
  5287. background:inherit;
  5288. background-color:rgba(255, 255, 255, 0);
  5289. border:none;
  5290. border-radius:0px;
  5291. -moz-box-shadow:none;
  5292. -webkit-box-shadow:none;
  5293. box-shadow:none;
  5294. }
  5295. #u75659 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:22px;
  5299. top:0px;
  5300. width:75px;
  5301. height:20px;
  5302. display:flex;
  5303. }
  5304. #u75659 .text {
  5305. position:absolute;
  5306. align-self:center;
  5307. padding:2px 2px 2px 3px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u75659_text {
  5312. border-width:0px;
  5313. white-space:nowrap;
  5314. text-transform:none;
  5315. }
  5316. #u75660 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:0px;
  5322. height:0px;
  5323. }
  5324. #u75661_div {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:140px;
  5330. height:30px;
  5331. background:inherit;
  5332. background-color:rgba(255, 255, 255, 1);
  5333. box-sizing:border-box;
  5334. border-width:1px;
  5335. border-style:solid;
  5336. border-color:rgba(201, 201, 201, 1);
  5337. border-radius:4px;
  5338. -moz-box-shadow:none;
  5339. -webkit-box-shadow:none;
  5340. box-shadow:none;
  5341. font-family:'Microsoft YaHei', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:14px;
  5345. color:#CCCCCC;
  5346. text-align:left;
  5347. }
  5348. #u75661 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:818px;
  5352. top:162px;
  5353. width:140px;
  5354. height:30px;
  5355. display:flex;
  5356. font-family:'Microsoft YaHei', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:14px;
  5360. color:#CCCCCC;
  5361. text-align:left;
  5362. }
  5363. #u75661 .text {
  5364. position:absolute;
  5365. align-self:center;
  5366. padding:2px 8px 2px 8px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u75661_text {
  5371. border-width:0px;
  5372. word-wrap:break-word;
  5373. text-transform:none;
  5374. visibility:hidden;
  5375. }
  5376. #u75662_input {
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:127px;
  5381. height:25px;
  5382. padding:2px 2px 2px 2px;
  5383. font-family:'Microsoft YaHei', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:10px;
  5387. letter-spacing:normal;
  5388. color:#000000;
  5389. vertical-align:none;
  5390. text-align:left;
  5391. text-transform:none;
  5392. background-color:transparent;
  5393. border-color:transparent;
  5394. }
  5395. #u75662_input.disabled {
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:127px;
  5400. height:25px;
  5401. padding:2px 2px 2px 2px;
  5402. font-family:'Microsoft YaHei', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:10px;
  5406. letter-spacing:normal;
  5407. color:#000000;
  5408. vertical-align:none;
  5409. text-align:left;
  5410. text-transform:none;
  5411. background-color:transparent;
  5412. border-color:transparent;
  5413. }
  5414. #u75662_div {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:127px;
  5420. height:25px;
  5421. background:inherit;
  5422. background-color:rgba(255, 255, 255, 1);
  5423. border:none;
  5424. border-radius:0px;
  5425. -moz-box-shadow:none;
  5426. -webkit-box-shadow:none;
  5427. box-shadow:none;
  5428. font-family:'Microsoft YaHei', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:10px;
  5432. }
  5433. #u75662 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:826px;
  5437. top:163px;
  5438. width:127px;
  5439. height:25px;
  5440. display:flex;
  5441. font-family:'Microsoft YaHei', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:10px;
  5445. }
  5446. #u75662 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 2px 2px 2px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u75662_div.disabled {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:127px;
  5459. height:25px;
  5460. background:inherit;
  5461. background-color:rgba(240, 240, 240, 1);
  5462. border:none;
  5463. border-radius:0px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. font-family:'Microsoft YaHei', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:10px;
  5471. }
  5472. #u75662.disabled {
  5473. }
  5474. #u75663_div {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:79px;
  5480. height:30px;
  5481. background:inherit;
  5482. background-color:rgba(255, 255, 255, 1);
  5483. box-sizing:border-box;
  5484. border-width:1px;
  5485. border-style:solid;
  5486. border-color:rgba(170, 170, 170, 1);
  5487. border-radius:4px;
  5488. -moz-box-shadow:none;
  5489. -webkit-box-shadow:none;
  5490. box-shadow:none;
  5491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:12px;
  5495. color:#555555;
  5496. }
  5497. #u75663 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:757px;
  5501. top:212px;
  5502. width:79px;
  5503. height:30px;
  5504. display:flex;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:12px;
  5509. color:#555555;
  5510. }
  5511. #u75663 .text {
  5512. position:absolute;
  5513. align-self:center;
  5514. padding:5px 15px 5px 15px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u75663_text {
  5519. border-width:0px;
  5520. white-space:nowrap;
  5521. text-transform:none;
  5522. }
  5523. #u75664_div {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:79px;
  5529. height:30px;
  5530. background:inherit;
  5531. background-color:rgba(255, 255, 255, 1);
  5532. box-sizing:border-box;
  5533. border-width:1px;
  5534. border-style:solid;
  5535. border-color:rgba(170, 170, 170, 1);
  5536. border-radius:4px;
  5537. -moz-box-shadow:none;
  5538. -webkit-box-shadow:none;
  5539. box-shadow:none;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:12px;
  5544. color:#555555;
  5545. }
  5546. #u75664 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:846px;
  5550. top:212px;
  5551. width:79px;
  5552. height:30px;
  5553. display:flex;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:12px;
  5558. color:#555555;
  5559. }
  5560. #u75664 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:5px 15px 5px 15px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u75664_text {
  5568. border-width:0px;
  5569. white-space:nowrap;
  5570. text-transform:none;
  5571. }
  5572. #u75665 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:0px;
  5578. height:0px;
  5579. }
  5580. #u75666_div {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:500px;
  5586. height:514px;
  5587. background:inherit;
  5588. background-color:rgba(255, 255, 255, 1);
  5589. box-sizing:border-box;
  5590. border-width:1px;
  5591. border-style:solid;
  5592. border-color:rgba(215, 215, 215, 1);
  5593. border-radius:0px;
  5594. -moz-box-shadow:none;
  5595. -webkit-box-shadow:none;
  5596. box-shadow:none;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:14px;
  5601. color:#AAAAAA;
  5602. text-align:center;
  5603. line-height:30px;
  5604. }
  5605. #u75666 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:861px;
  5609. top:519px;
  5610. width:500px;
  5611. height:514px;
  5612. display:flex;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:14px;
  5617. color:#AAAAAA;
  5618. text-align:center;
  5619. line-height:30px;
  5620. }
  5621. #u75666 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:5px 10px 5px 10px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u75666_text {
  5629. border-width:0px;
  5630. word-wrap:break-word;
  5631. text-transform:none;
  5632. visibility:hidden;
  5633. }
  5634. #u75667_div {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:83px;
  5640. height:35px;
  5641. background:inherit;
  5642. background-color:rgba(255, 255, 255, 0);
  5643. border:none;
  5644. border-top:0px;
  5645. border-right:0px;
  5646. border-bottom:0px;
  5647. border-radius:0px;
  5648. border-top-left-radius:0px;
  5649. border-bottom-left-radius:0px;
  5650. -moz-box-shadow:none;
  5651. -webkit-box-shadow:none;
  5652. box-shadow:none;
  5653. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5654. font-weight:500;
  5655. font-style:normal;
  5656. font-size:18px;
  5657. }
  5658. #u75667 {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:881px;
  5662. top:537px;
  5663. width:83px;
  5664. height:35px;
  5665. display:flex;
  5666. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5667. font-weight:500;
  5668. font-style:normal;
  5669. font-size:18px;
  5670. }
  5671. #u75667 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:5px 10px 5px 0px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u75667_text {
  5679. border-width:0px;
  5680. white-space:nowrap;
  5681. text-transform:none;
  5682. }
  5683. #u75668 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:0px;
  5689. height:0px;
  5690. }
  5691. #u75669_div {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:500px;
  5697. height:60px;
  5698. background:inherit;
  5699. background-color:rgba(255, 255, 255, 1);
  5700. box-sizing:border-box;
  5701. border-width:1px;
  5702. border-style:solid;
  5703. border-color:rgba(215, 215, 215, 1);
  5704. border-radius:0px;
  5705. -moz-box-shadow:none;
  5706. -webkit-box-shadow:none;
  5707. box-shadow:none;
  5708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5709. font-weight:400;
  5710. font-style:normal;
  5711. font-size:14px;
  5712. color:#AAAAAA;
  5713. text-align:center;
  5714. line-height:30px;
  5715. }
  5716. #u75669 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:861px;
  5720. top:973px;
  5721. width:500px;
  5722. height:60px;
  5723. display:flex;
  5724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:14px;
  5728. color:#AAAAAA;
  5729. text-align:center;
  5730. line-height:30px;
  5731. }
  5732. #u75669 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:5px 10px 5px 10px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u75669_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. visibility:hidden;
  5744. }
  5745. #u75670_div {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:60px;
  5751. height:30px;
  5752. background:inherit;
  5753. background-color:rgba(24, 144, 255, 1);
  5754. border:none;
  5755. border-radius:4px;
  5756. -moz-box-shadow:none;
  5757. -webkit-box-shadow:none;
  5758. box-shadow:none;
  5759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:14px;
  5763. color:#FFFFFF;
  5764. }
  5765. #u75670 {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:1281px;
  5769. top:988px;
  5770. width:60px;
  5771. height:30px;
  5772. display:flex;
  5773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5774. font-weight:400;
  5775. font-style:normal;
  5776. font-size:14px;
  5777. color:#FFFFFF;
  5778. }
  5779. #u75670 .text {
  5780. position:absolute;
  5781. align-self:center;
  5782. padding:2px 2px 2px 2px;
  5783. box-sizing:border-box;
  5784. width:100%;
  5785. }
  5786. #u75670_text {
  5787. border-width:0px;
  5788. word-wrap:break-word;
  5789. text-transform:none;
  5790. }
  5791. #u75671_div {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:60px;
  5797. height:30px;
  5798. background:inherit;
  5799. background-color:rgba(255, 255, 255, 1);
  5800. box-sizing:border-box;
  5801. border-width:1px;
  5802. border-style:solid;
  5803. border-color:rgba(170, 170, 170, 1);
  5804. border-radius:4px;
  5805. -moz-box-shadow:none;
  5806. -webkit-box-shadow:none;
  5807. box-shadow:none;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:14px;
  5812. }
  5813. #u75671 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:1211px;
  5817. top:988px;
  5818. width:60px;
  5819. height:30px;
  5820. display:flex;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:14px;
  5825. }
  5826. #u75671 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 2px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u75671_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. }
  5838. #u75672_div {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:440px;
  5844. height:40px;
  5845. background:inherit;
  5846. background-color:rgba(255, 255, 128, 0.2);
  5847. border:none;
  5848. border-top:0px;
  5849. border-right:0px;
  5850. border-bottom:0px;
  5851. border-radius:0px;
  5852. border-top-left-radius:0px;
  5853. border-bottom-left-radius:0px;
  5854. -moz-box-shadow:none;
  5855. -webkit-box-shadow:none;
  5856. box-shadow:none;
  5857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:14px;
  5861. color:#F59A23;
  5862. }
  5863. #u75672 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:907px;
  5867. top:595px;
  5868. width:440px;
  5869. height:40px;
  5870. display:flex;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. color:#F59A23;
  5876. }
  5877. #u75672 .text {
  5878. position:absolute;
  5879. align-self:center;
  5880. padding:5px 10px 5px 20px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u75672_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. }
  5889. #u75673 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:923px;
  5893. top:665px;
  5894. width:117px;
  5895. height:200px;
  5896. }
  5897. #u75673_children {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:0px;
  5903. height:0px;
  5904. }
  5905. #u75674 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:54px;
  5911. height:20px;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. color:#298FFF;
  5916. }
  5917. #u75675_img {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:9px;
  5923. height:9px;
  5924. }
  5925. #u75675 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:6px;
  5929. top:6px;
  5930. width:9px;
  5931. height:9px;
  5932. display:flex;
  5933. }
  5934. #u75675 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:2px 2px 2px 2px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u75675_img.selected {
  5942. }
  5943. #u75675.selected {
  5944. }
  5945. #u75675_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. visibility:hidden;
  5950. }
  5951. #u75676_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:32px;
  5957. height:20px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 0);
  5960. border:none;
  5961. border-radius:0px;
  5962. -moz-box-shadow:none;
  5963. -webkit-box-shadow:none;
  5964. box-shadow:none;
  5965. }
  5966. #u75676 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:22px;
  5970. top:0px;
  5971. width:32px;
  5972. height:20px;
  5973. display:flex;
  5974. }
  5975. #u75676 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 2px 2px 3px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u75676_text {
  5983. border-width:0px;
  5984. white-space:nowrap;
  5985. text-transform:none;
  5986. }
  5987. #u75674_children {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:0px;
  5993. height:0px;
  5994. }
  5995. #u75677 {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:20px;
  5999. top:20px;
  6000. width:67px;
  6001. height:20px;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. }
  6006. #u75678_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:45px;
  6012. height:20px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 0);
  6015. border:none;
  6016. border-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. }
  6021. #u75678 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:22px;
  6025. top:0px;
  6026. width:45px;
  6027. height:20px;
  6028. display:flex;
  6029. }
  6030. #u75678 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:2px 2px 2px 3px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u75678_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u75679 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:20px;
  6046. top:40px;
  6047. width:67px;
  6048. height:20px;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. }
  6053. #u75680_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:45px;
  6059. height:20px;
  6060. background:inherit;
  6061. background-color:rgba(255, 255, 255, 0);
  6062. border:none;
  6063. border-radius:0px;
  6064. -moz-box-shadow:none;
  6065. -webkit-box-shadow:none;
  6066. box-shadow:none;
  6067. }
  6068. #u75680 {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:22px;
  6072. top:0px;
  6073. width:45px;
  6074. height:20px;
  6075. display:flex;
  6076. }
  6077. #u75680 .text {
  6078. position:absolute;
  6079. align-self:center;
  6080. padding:2px 2px 2px 3px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u75680_text {
  6085. border-width:0px;
  6086. white-space:nowrap;
  6087. text-transform:none;
  6088. }
  6089. #u75681 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:20px;
  6093. top:60px;
  6094. width:67px;
  6095. height:20px;
  6096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. }
  6100. #u75682_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:45px;
  6106. height:20px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 0);
  6109. border:none;
  6110. border-radius:0px;
  6111. -moz-box-shadow:none;
  6112. -webkit-box-shadow:none;
  6113. box-shadow:none;
  6114. }
  6115. #u75682 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:22px;
  6119. top:0px;
  6120. width:45px;
  6121. height:20px;
  6122. display:flex;
  6123. }
  6124. #u75682 .text {
  6125. position:absolute;
  6126. align-self:center;
  6127. padding:2px 2px 2px 3px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u75682_text {
  6132. border-width:0px;
  6133. white-space:nowrap;
  6134. text-transform:none;
  6135. }
  6136. #u75683 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:80px;
  6141. width:54px;
  6142. height:20px;
  6143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. }
  6147. #u75684_img {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:0px;
  6151. top:0px;
  6152. width:9px;
  6153. height:9px;
  6154. }
  6155. #u75684 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:6px;
  6159. top:6px;
  6160. width:9px;
  6161. height:9px;
  6162. display:flex;
  6163. }
  6164. #u75684 .text {
  6165. position:absolute;
  6166. align-self:center;
  6167. padding:2px 2px 2px 2px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u75684_img.selected {
  6172. }
  6173. #u75684.selected {
  6174. }
  6175. #u75684_text {
  6176. border-width:0px;
  6177. word-wrap:break-word;
  6178. text-transform:none;
  6179. visibility:hidden;
  6180. }
  6181. #u75685_div {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:32px;
  6187. height:20px;
  6188. background:inherit;
  6189. background-color:rgba(255, 255, 255, 0);
  6190. border:none;
  6191. border-radius:0px;
  6192. -moz-box-shadow:none;
  6193. -webkit-box-shadow:none;
  6194. box-shadow:none;
  6195. }
  6196. #u75685 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:22px;
  6200. top:0px;
  6201. width:32px;
  6202. height:20px;
  6203. display:flex;
  6204. }
  6205. #u75685 .text {
  6206. position:absolute;
  6207. align-self:center;
  6208. padding:2px 2px 2px 3px;
  6209. box-sizing:border-box;
  6210. width:100%;
  6211. }
  6212. #u75685_text {
  6213. border-width:0px;
  6214. white-space:nowrap;
  6215. text-transform:none;
  6216. }
  6217. #u75683_children {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:0px;
  6223. height:0px;
  6224. }
  6225. #u75686 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:20px;
  6229. top:20px;
  6230. width:93px;
  6231. height:20px;
  6232. }
  6233. #u75687_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:71px;
  6239. height:20px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 0);
  6242. border:none;
  6243. border-radius:0px;
  6244. -moz-box-shadow:none;
  6245. -webkit-box-shadow:none;
  6246. box-shadow:none;
  6247. }
  6248. #u75687 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:22px;
  6252. top:0px;
  6253. width:71px;
  6254. height:20px;
  6255. display:flex;
  6256. }
  6257. #u75687 .text {
  6258. position:absolute;
  6259. align-self:center;
  6260. padding:2px 2px 2px 3px;
  6261. box-sizing:border-box;
  6262. width:100%;
  6263. }
  6264. #u75687_text {
  6265. border-width:0px;
  6266. white-space:nowrap;
  6267. text-transform:none;
  6268. }
  6269. #u75688 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:20px;
  6273. top:40px;
  6274. width:93px;
  6275. height:20px;
  6276. }
  6277. #u75689_div {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:0px;
  6281. top:0px;
  6282. width:71px;
  6283. height:20px;
  6284. background:inherit;
  6285. background-color:rgba(255, 255, 255, 0);
  6286. border:none;
  6287. border-radius:0px;
  6288. -moz-box-shadow:none;
  6289. -webkit-box-shadow:none;
  6290. box-shadow:none;
  6291. }
  6292. #u75689 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:22px;
  6296. top:0px;
  6297. width:71px;
  6298. height:20px;
  6299. display:flex;
  6300. }
  6301. #u75689 .text {
  6302. position:absolute;
  6303. align-self:center;
  6304. padding:2px 2px 2px 3px;
  6305. box-sizing:border-box;
  6306. width:100%;
  6307. }
  6308. #u75689_text {
  6309. border-width:0px;
  6310. white-space:nowrap;
  6311. text-transform:none;
  6312. }
  6313. #u75690 {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:140px;
  6318. width:54px;
  6319. height:20px;
  6320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. }
  6324. #u75691_img {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:9px;
  6330. height:9px;
  6331. }
  6332. #u75691 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:6px;
  6336. top:6px;
  6337. width:9px;
  6338. height:9px;
  6339. display:flex;
  6340. }
  6341. #u75691 .text {
  6342. position:absolute;
  6343. align-self:center;
  6344. padding:2px 2px 2px 2px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u75691_img.selected {
  6349. }
  6350. #u75691.selected {
  6351. }
  6352. #u75691_text {
  6353. border-width:0px;
  6354. word-wrap:break-word;
  6355. text-transform:none;
  6356. visibility:hidden;
  6357. }
  6358. #u75692_div {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:32px;
  6364. height:20px;
  6365. background:inherit;
  6366. background-color:rgba(255, 255, 255, 0);
  6367. border:none;
  6368. border-radius:0px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. }
  6373. #u75692 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:22px;
  6377. top:0px;
  6378. width:32px;
  6379. height:20px;
  6380. display:flex;
  6381. }
  6382. #u75692 .text {
  6383. position:absolute;
  6384. align-self:center;
  6385. padding:2px 2px 2px 3px;
  6386. box-sizing:border-box;
  6387. width:100%;
  6388. }
  6389. #u75692_text {
  6390. border-width:0px;
  6391. white-space:nowrap;
  6392. text-transform:none;
  6393. }
  6394. #u75690_children {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:0px;
  6398. top:0px;
  6399. width:0px;
  6400. height:0px;
  6401. }
  6402. #u75693 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:20px;
  6406. top:20px;
  6407. width:97px;
  6408. height:20px;
  6409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6410. font-weight:400;
  6411. font-style:normal;
  6412. }
  6413. #u75694_div {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:75px;
  6419. height:20px;
  6420. background:inherit;
  6421. background-color:rgba(255, 255, 255, 0);
  6422. border:none;
  6423. border-radius:0px;
  6424. -moz-box-shadow:none;
  6425. -webkit-box-shadow:none;
  6426. box-shadow:none;
  6427. }
  6428. #u75694 {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:22px;
  6432. top:0px;
  6433. width:75px;
  6434. height:20px;
  6435. display:flex;
  6436. }
  6437. #u75694 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:2px 2px 2px 3px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u75694_text {
  6445. border-width:0px;
  6446. white-space:nowrap;
  6447. text-transform:none;
  6448. }
  6449. #u75695 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:20px;
  6453. top:40px;
  6454. width:97px;
  6455. height:20px;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. }
  6460. #u75696_div {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:75px;
  6466. height:20px;
  6467. background:inherit;
  6468. background-color:rgba(255, 255, 255, 0);
  6469. border:none;
  6470. border-radius:0px;
  6471. -moz-box-shadow:none;
  6472. -webkit-box-shadow:none;
  6473. box-shadow:none;
  6474. }
  6475. #u75696 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:22px;
  6479. top:0px;
  6480. width:75px;
  6481. height:20px;
  6482. display:flex;
  6483. }
  6484. #u75696 .text {
  6485. position:absolute;
  6486. align-self:center;
  6487. padding:2px 2px 2px 3px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u75696_text {
  6492. border-width:0px;
  6493. white-space:nowrap;
  6494. text-transform:none;
  6495. }
  6496. #u75697_img {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:10px;
  6502. height:8px;
  6503. }
  6504. #u75697 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:1312px;
  6508. top:670px;
  6509. width:10px;
  6510. height:8px;
  6511. display:flex;
  6512. }
  6513. #u75697 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:2px 2px 2px 2px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u75697_text {
  6521. border-width:0px;
  6522. word-wrap:break-word;
  6523. text-transform:none;
  6524. visibility:hidden;
  6525. }
  6526. #u75698_img {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:10px;
  6532. height:8px;
  6533. }
  6534. #u75698 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:1312px;
  6538. top:690px;
  6539. width:10px;
  6540. height:8px;
  6541. display:flex;
  6542. }
  6543. #u75698 .text {
  6544. position:absolute;
  6545. align-self:center;
  6546. padding:2px 2px 2px 2px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u75698_text {
  6551. border-width:0px;
  6552. word-wrap:break-word;
  6553. text-transform:none;
  6554. visibility:hidden;
  6555. }
  6556. #u75699_img {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:10px;
  6562. height:8px;
  6563. }
  6564. #u75699 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:1312px;
  6568. top:710px;
  6569. width:10px;
  6570. height:8px;
  6571. display:flex;
  6572. }
  6573. #u75699 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 2px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u75699_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. visibility:hidden;
  6585. }
  6586. #u75700_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:10px;
  6592. height:8px;
  6593. }
  6594. #u75700 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:1312px;
  6598. top:730px;
  6599. width:10px;
  6600. height:8px;
  6601. display:flex;
  6602. }
  6603. #u75700 .text {
  6604. position:absolute;
  6605. align-self:center;
  6606. padding:2px 2px 2px 2px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u75700_text {
  6611. border-width:0px;
  6612. word-wrap:break-word;
  6613. text-transform:none;
  6614. visibility:hidden;
  6615. }
  6616. #u75701_img {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:10px;
  6622. height:8px;
  6623. }
  6624. #u75701 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:1312px;
  6628. top:751px;
  6629. width:10px;
  6630. height:8px;
  6631. display:flex;
  6632. }
  6633. #u75701 .text {
  6634. position:absolute;
  6635. align-self:center;
  6636. padding:2px 2px 2px 2px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u75701_text {
  6641. border-width:0px;
  6642. word-wrap:break-word;
  6643. text-transform:none;
  6644. visibility:hidden;
  6645. }
  6646. #u75702_img {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:10px;
  6652. height:8px;
  6653. }
  6654. #u75702 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:1312px;
  6658. top:771px;
  6659. width:10px;
  6660. height:8px;
  6661. display:flex;
  6662. }
  6663. #u75702 .text {
  6664. position:absolute;
  6665. align-self:center;
  6666. padding:2px 2px 2px 2px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u75702_text {
  6671. border-width:0px;
  6672. word-wrap:break-word;
  6673. text-transform:none;
  6674. visibility:hidden;
  6675. }
  6676. #u75703_img {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:10px;
  6682. height:8px;
  6683. }
  6684. #u75703 {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:1312px;
  6688. top:791px;
  6689. width:10px;
  6690. height:8px;
  6691. display:flex;
  6692. }
  6693. #u75703 .text {
  6694. position:absolute;
  6695. align-self:center;
  6696. padding:2px 2px 2px 2px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u75703_text {
  6701. border-width:0px;
  6702. word-wrap:break-word;
  6703. text-transform:none;
  6704. visibility:hidden;
  6705. }
  6706. #u75704_img {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:10px;
  6712. height:8px;
  6713. }
  6714. #u75704 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:1312px;
  6718. top:811px;
  6719. width:10px;
  6720. height:8px;
  6721. display:flex;
  6722. }
  6723. #u75704 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:2px 2px 2px 2px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u75704_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. visibility:hidden;
  6735. }
  6736. #u75705_img {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:10px;
  6742. height:8px;
  6743. }
  6744. #u75705 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:1312px;
  6748. top:831px;
  6749. width:10px;
  6750. height:8px;
  6751. display:flex;
  6752. }
  6753. #u75705 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u75705_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. visibility:hidden;
  6765. }
  6766. #u75706_img {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:0px;
  6770. top:0px;
  6771. width:10px;
  6772. height:8px;
  6773. }
  6774. #u75706 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:1312px;
  6778. top:851px;
  6779. width:10px;
  6780. height:8px;
  6781. display:flex;
  6782. }
  6783. #u75706 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 2px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u75706_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u75707_div {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:21px;
  6802. height:35px;
  6803. background:inherit;
  6804. background-color:rgba(255, 255, 255, 0);
  6805. border:none;
  6806. border-top:0px;
  6807. border-right:0px;
  6808. border-bottom:0px;
  6809. border-radius:0px;
  6810. border-top-left-radius:0px;
  6811. border-bottom-left-radius:0px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6816. font-weight:500;
  6817. font-style:normal;
  6818. font-size:18px;
  6819. }
  6820. #u75707 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:1340px;
  6824. top:519px;
  6825. width:21px;
  6826. height:35px;
  6827. display:flex;
  6828. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6829. font-weight:500;
  6830. font-style:normal;
  6831. font-size:18px;
  6832. }
  6833. #u75707 .text {
  6834. position:absolute;
  6835. align-self:center;
  6836. padding:5px 10px 5px 0px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u75707_text {
  6841. border-width:0px;
  6842. white-space:nowrap;
  6843. text-transform:none;
  6844. }
  6845. #u75708 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:0px;
  6851. height:0px;
  6852. }
  6853. #u75709_div {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:0px;
  6858. width:800px;
  6859. height:1200px;
  6860. background:inherit;
  6861. background-color:rgba(255, 255, 255, 1);
  6862. box-sizing:border-box;
  6863. border-width:1px;
  6864. border-style:solid;
  6865. border-color:rgba(215, 215, 215, 1);
  6866. border-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:14px;
  6874. color:#AAAAAA;
  6875. text-align:center;
  6876. line-height:30px;
  6877. }
  6878. #u75709 {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:1650px;
  6882. top:50px;
  6883. width:800px;
  6884. height:1200px;
  6885. display:flex;
  6886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6887. font-weight:400;
  6888. font-style:normal;
  6889. font-size:14px;
  6890. color:#AAAAAA;
  6891. text-align:center;
  6892. line-height:30px;
  6893. }
  6894. #u75709 .text {
  6895. position:absolute;
  6896. align-self:center;
  6897. padding:5px 10px 5px 10px;
  6898. box-sizing:border-box;
  6899. width:100%;
  6900. }
  6901. #u75709_text {
  6902. border-width:0px;
  6903. word-wrap:break-word;
  6904. text-transform:none;
  6905. visibility:hidden;
  6906. }
  6907. #u75710_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:83px;
  6913. height:35px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 0);
  6916. border:none;
  6917. border-top:0px;
  6918. border-right:0px;
  6919. border-bottom:0px;
  6920. border-radius:0px;
  6921. border-top-left-radius:0px;
  6922. border-bottom-left-radius:0px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6927. font-weight:500;
  6928. font-style:normal;
  6929. font-size:18px;
  6930. }
  6931. #u75710 {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:1670px;
  6935. top:68px;
  6936. width:83px;
  6937. height:35px;
  6938. display:flex;
  6939. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6940. font-weight:500;
  6941. font-style:normal;
  6942. font-size:18px;
  6943. }
  6944. #u75710 .text {
  6945. position:absolute;
  6946. align-self:center;
  6947. padding:5px 10px 5px 0px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u75710_text {
  6952. border-width:0px;
  6953. white-space:nowrap;
  6954. text-transform:none;
  6955. }
  6956. #u75711 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:0px;
  6962. height:0px;
  6963. }
  6964. #u75712_div {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:800px;
  6970. height:60px;
  6971. background:inherit;
  6972. background-color:rgba(255, 255, 255, 1);
  6973. box-sizing:border-box;
  6974. border-width:1px;
  6975. border-style:solid;
  6976. border-color:rgba(215, 215, 215, 1);
  6977. border-radius:0px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:14px;
  6985. color:#AAAAAA;
  6986. text-align:center;
  6987. line-height:30px;
  6988. }
  6989. #u75712 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:1650px;
  6993. top:1190px;
  6994. width:800px;
  6995. height:60px;
  6996. display:flex;
  6997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:14px;
  7001. color:#AAAAAA;
  7002. text-align:center;
  7003. line-height:30px;
  7004. }
  7005. #u75712 .text {
  7006. position:absolute;
  7007. align-self:center;
  7008. padding:5px 10px 5px 10px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u75712_text {
  7013. border-width:0px;
  7014. word-wrap:break-word;
  7015. text-transform:none;
  7016. visibility:hidden;
  7017. }
  7018. #u75713_div {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:80px;
  7024. height:30px;
  7025. background:inherit;
  7026. background-color:rgba(24, 144, 255, 1);
  7027. border:none;
  7028. border-radius:4px;
  7029. -moz-box-shadow:none;
  7030. -webkit-box-shadow:none;
  7031. box-shadow:none;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:14px;
  7036. color:#FFFFFF;
  7037. }
  7038. #u75713 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:2315px;
  7042. top:1205px;
  7043. width:80px;
  7044. height:30px;
  7045. display:flex;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:14px;
  7050. color:#FFFFFF;
  7051. }
  7052. #u75713 .text {
  7053. position:absolute;
  7054. align-self:center;
  7055. padding:2px 2px 2px 2px;
  7056. box-sizing:border-box;
  7057. width:100%;
  7058. }
  7059. #u75713_text {
  7060. border-width:0px;
  7061. word-wrap:break-word;
  7062. text-transform:none;
  7063. }
  7064. #u75714_div {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:0px;
  7068. top:0px;
  7069. width:80px;
  7070. height:30px;
  7071. background:inherit;
  7072. background-color:rgba(255, 255, 255, 1);
  7073. box-sizing:border-box;
  7074. border-width:1px;
  7075. border-style:solid;
  7076. border-color:rgba(170, 170, 170, 1);
  7077. border-radius:4px;
  7078. -moz-box-shadow:none;
  7079. -webkit-box-shadow:none;
  7080. box-shadow:none;
  7081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7082. font-weight:400;
  7083. font-style:normal;
  7084. font-size:14px;
  7085. }
  7086. #u75714 {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:2215px;
  7090. top:1205px;
  7091. width:80px;
  7092. height:30px;
  7093. display:flex;
  7094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7095. font-weight:400;
  7096. font-style:normal;
  7097. font-size:14px;
  7098. }
  7099. #u75714 .text {
  7100. position:absolute;
  7101. align-self:center;
  7102. padding:2px 2px 2px 2px;
  7103. box-sizing:border-box;
  7104. width:100%;
  7105. }
  7106. #u75714_text {
  7107. border-width:0px;
  7108. word-wrap:break-word;
  7109. text-transform:none;
  7110. }
  7111. #u75715_div {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:88px;
  7117. height:40px;
  7118. background:inherit;
  7119. background-color:rgba(255, 255, 255, 0);
  7120. border:none;
  7121. border-top:0px;
  7122. border-right:0px;
  7123. border-bottom:0px;
  7124. border-radius:0px;
  7125. border-top-left-radius:0px;
  7126. border-bottom-left-radius:0px;
  7127. -moz-box-shadow:none;
  7128. -webkit-box-shadow:none;
  7129. box-shadow:none;
  7130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:14px;
  7134. color:#7F7F7F;
  7135. text-align:right;
  7136. }
  7137. #u75715 {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:1723px;
  7141. top:126px;
  7142. width:88px;
  7143. height:40px;
  7144. display:flex;
  7145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. font-size:14px;
  7149. color:#7F7F7F;
  7150. text-align:right;
  7151. }
  7152. #u75715 .text {
  7153. position:absolute;
  7154. align-self:center;
  7155. padding:5px 10px 5px 0px;
  7156. box-sizing:border-box;
  7157. width:100%;
  7158. }
  7159. #u75715_text {
  7160. border-width:0px;
  7161. white-space:nowrap;
  7162. text-transform:none;
  7163. }
  7164. #u75716 {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:0px;
  7170. height:0px;
  7171. }
  7172. #u75717_div {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:400px;
  7178. height:40px;
  7179. background:inherit;
  7180. background-color:rgba(255, 255, 255, 1);
  7181. box-sizing:border-box;
  7182. border-width:1px;
  7183. border-style:solid;
  7184. border-color:rgba(201, 201, 201, 1);
  7185. border-radius:4px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'Microsoft YaHei', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:14px;
  7193. color:#CCCCCC;
  7194. text-align:left;
  7195. }
  7196. #u75717 {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:1821px;
  7200. top:127px;
  7201. width:400px;
  7202. height:40px;
  7203. display:flex;
  7204. font-family:'Microsoft YaHei', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. font-size:14px;
  7208. color:#CCCCCC;
  7209. text-align:left;
  7210. }
  7211. #u75717 .text {
  7212. position:absolute;
  7213. align-self:center;
  7214. padding:2px 8px 2px 8px;
  7215. box-sizing:border-box;
  7216. width:100%;
  7217. }
  7218. #u75717_text {
  7219. border-width:0px;
  7220. word-wrap:break-word;
  7221. text-transform:none;
  7222. visibility:hidden;
  7223. }
  7224. #u75718_input {
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:380px;
  7229. height:38px;
  7230. padding:2px 2px 2px 2px;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:14px;
  7235. letter-spacing:normal;
  7236. color:#000000;
  7237. vertical-align:none;
  7238. text-align:left;
  7239. text-transform:none;
  7240. background-color:transparent;
  7241. border-color:transparent;
  7242. }
  7243. #u75718_input.disabled {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:380px;
  7248. height:38px;
  7249. padding:2px 2px 2px 2px;
  7250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:14px;
  7254. letter-spacing:normal;
  7255. color:#000000;
  7256. vertical-align:none;
  7257. text-align:left;
  7258. text-transform:none;
  7259. background-color:transparent;
  7260. border-color:transparent;
  7261. }
  7262. #u75718_div {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:380px;
  7268. height:38px;
  7269. background:inherit;
  7270. background-color:rgba(255, 255, 255, 1);
  7271. border:none;
  7272. border-radius:0px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:14px;
  7280. }
  7281. #u75718 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:1832px;
  7285. top:128px;
  7286. width:380px;
  7287. height:38px;
  7288. display:flex;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:14px;
  7293. }
  7294. #u75718 .text {
  7295. position:absolute;
  7296. align-self:center;
  7297. padding:2px 2px 2px 2px;
  7298. box-sizing:border-box;
  7299. width:100%;
  7300. }
  7301. #u75718_div.disabled {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:380px;
  7307. height:38px;
  7308. background:inherit;
  7309. background-color:rgba(240, 240, 240, 1);
  7310. border:none;
  7311. border-radius:0px;
  7312. -moz-box-shadow:none;
  7313. -webkit-box-shadow:none;
  7314. box-shadow:none;
  7315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. }
  7320. #u75718.disabled {
  7321. }
  7322. #u75719_div {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:88px;
  7328. height:40px;
  7329. background:inherit;
  7330. background-color:rgba(255, 255, 255, 0);
  7331. border:none;
  7332. border-top:0px;
  7333. border-right:0px;
  7334. border-bottom:0px;
  7335. border-radius:0px;
  7336. border-top-left-radius:0px;
  7337. border-bottom-left-radius:0px;
  7338. -moz-box-shadow:none;
  7339. -webkit-box-shadow:none;
  7340. box-shadow:none;
  7341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:14px;
  7345. color:#7F7F7F;
  7346. text-align:right;
  7347. }
  7348. #u75719 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:1723px;
  7352. top:177px;
  7353. width:88px;
  7354. height:40px;
  7355. display:flex;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:14px;
  7360. color:#7F7F7F;
  7361. text-align:right;
  7362. }
  7363. #u75719 .text {
  7364. position:absolute;
  7365. align-self:center;
  7366. padding:5px 10px 5px 0px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u75719_text {
  7371. border-width:0px;
  7372. white-space:nowrap;
  7373. text-transform:none;
  7374. }
  7375. #u75720 {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:0px;
  7381. height:0px;
  7382. }
  7383. #u75721_div {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:400px;
  7389. height:40px;
  7390. background:inherit;
  7391. background-color:rgba(255, 255, 255, 1);
  7392. box-sizing:border-box;
  7393. border-width:1px;
  7394. border-style:solid;
  7395. border-color:rgba(201, 201, 201, 1);
  7396. border-radius:4px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. font-family:'Microsoft YaHei', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:14px;
  7404. color:#CCCCCC;
  7405. text-align:left;
  7406. }
  7407. #u75721 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:1821px;
  7411. top:178px;
  7412. width:400px;
  7413. height:40px;
  7414. display:flex;
  7415. font-family:'Microsoft YaHei', sans-serif;
  7416. font-weight:400;
  7417. font-style:normal;
  7418. font-size:14px;
  7419. color:#CCCCCC;
  7420. text-align:left;
  7421. }
  7422. #u75721 .text {
  7423. position:absolute;
  7424. align-self:center;
  7425. padding:2px 8px 2px 8px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u75721_text {
  7430. border-width:0px;
  7431. word-wrap:break-word;
  7432. text-transform:none;
  7433. visibility:hidden;
  7434. }
  7435. #u75722_input {
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:380px;
  7440. height:38px;
  7441. padding:2px 2px 2px 2px;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:14px;
  7446. letter-spacing:normal;
  7447. color:#000000;
  7448. vertical-align:none;
  7449. text-align:left;
  7450. text-transform:none;
  7451. background-color:transparent;
  7452. border-color:transparent;
  7453. }
  7454. #u75722_input.disabled {
  7455. position:absolute;
  7456. left:0px;
  7457. top:0px;
  7458. width:380px;
  7459. height:38px;
  7460. padding:2px 2px 2px 2px;
  7461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:14px;
  7465. letter-spacing:normal;
  7466. color:#000000;
  7467. vertical-align:none;
  7468. text-align:left;
  7469. text-transform:none;
  7470. background-color:transparent;
  7471. border-color:transparent;
  7472. }
  7473. #u75722_div {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:380px;
  7479. height:38px;
  7480. background:inherit;
  7481. background-color:rgba(255, 255, 255, 1);
  7482. border:none;
  7483. border-radius:0px;
  7484. -moz-box-shadow:none;
  7485. -webkit-box-shadow:none;
  7486. box-shadow:none;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:14px;
  7491. }
  7492. #u75722 {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:1832px;
  7496. top:179px;
  7497. width:380px;
  7498. height:38px;
  7499. display:flex;
  7500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7501. font-weight:400;
  7502. font-style:normal;
  7503. font-size:14px;
  7504. }
  7505. #u75722 .text {
  7506. position:absolute;
  7507. align-self:center;
  7508. padding:2px 2px 2px 2px;
  7509. box-sizing:border-box;
  7510. width:100%;
  7511. }
  7512. #u75722_div.disabled {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:380px;
  7518. height:38px;
  7519. background:inherit;
  7520. background-color:rgba(240, 240, 240, 1);
  7521. border:none;
  7522. border-radius:0px;
  7523. -moz-box-shadow:none;
  7524. -webkit-box-shadow:none;
  7525. box-shadow:none;
  7526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:14px;
  7530. }
  7531. #u75722.disabled {
  7532. }
  7533. #u75723_div {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:88px;
  7539. height:40px;
  7540. background:inherit;
  7541. background-color:rgba(255, 255, 255, 0);
  7542. border:none;
  7543. border-top:0px;
  7544. border-right:0px;
  7545. border-bottom:0px;
  7546. border-radius:0px;
  7547. border-top-left-radius:0px;
  7548. border-bottom-left-radius:0px;
  7549. -moz-box-shadow:none;
  7550. -webkit-box-shadow:none;
  7551. box-shadow:none;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:14px;
  7556. color:#7F7F7F;
  7557. text-align:right;
  7558. }
  7559. #u75723 {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:1723px;
  7563. top:233px;
  7564. width:88px;
  7565. height:40px;
  7566. display:flex;
  7567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7568. font-weight:400;
  7569. font-style:normal;
  7570. font-size:14px;
  7571. color:#7F7F7F;
  7572. text-align:right;
  7573. }
  7574. #u75723 .text {
  7575. position:absolute;
  7576. align-self:center;
  7577. padding:5px 10px 5px 0px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u75723_text {
  7582. border-width:0px;
  7583. white-space:nowrap;
  7584. text-transform:none;
  7585. }
  7586. #u75724 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:0px;
  7592. height:0px;
  7593. }
  7594. #u75725_div {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:400px;
  7600. height:40px;
  7601. background:inherit;
  7602. background-color:rgba(255, 255, 255, 1);
  7603. box-sizing:border-box;
  7604. border-width:1px;
  7605. border-style:solid;
  7606. border-color:rgba(215, 215, 215, 1);
  7607. border-radius:4px;
  7608. -moz-box-shadow:none;
  7609. -webkit-box-shadow:none;
  7610. box-shadow:none;
  7611. font-size:11px;
  7612. }
  7613. #u75725 {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:1821px;
  7617. top:233px;
  7618. width:400px;
  7619. height:40px;
  7620. display:flex;
  7621. font-size:11px;
  7622. }
  7623. #u75725 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 2px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u75725_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u75726_input {
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:380px;
  7641. height:31px;
  7642. padding:2px 2px 2px 2px;
  7643. font-family:'ArialMT', 'Arial', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:11px;
  7647. letter-spacing:normal;
  7648. color:#AAAAAA;
  7649. vertical-align:none;
  7650. text-align:left;
  7651. text-transform:none;
  7652. background-color:transparent;
  7653. border-color:transparent;
  7654. }
  7655. #u75726_input.disabled {
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:380px;
  7660. height:31px;
  7661. padding:2px 2px 2px 2px;
  7662. font-family:'ArialMT', 'Arial', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:11px;
  7666. letter-spacing:normal;
  7667. color:#AAAAAA;
  7668. vertical-align:none;
  7669. text-align:left;
  7670. text-transform:none;
  7671. background-color:transparent;
  7672. border-color:transparent;
  7673. }
  7674. #u75726_div {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:0px;
  7678. top:0px;
  7679. width:380px;
  7680. height:31px;
  7681. background:inherit;
  7682. background-color:rgba(255, 255, 255, 1);
  7683. border:none;
  7684. border-radius:0px;
  7685. -moz-box-shadow:none;
  7686. -webkit-box-shadow:none;
  7687. box-shadow:none;
  7688. font-size:11px;
  7689. color:#AAAAAA;
  7690. }
  7691. #u75726 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:1832px;
  7695. top:236px;
  7696. width:380px;
  7697. height:31px;
  7698. display:flex;
  7699. font-size:11px;
  7700. color:#AAAAAA;
  7701. }
  7702. #u75726 .text {
  7703. position:absolute;
  7704. align-self:flex-start;
  7705. padding:2px 2px 2px 2px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u75726_div.disabled {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:380px;
  7715. height:31px;
  7716. background:inherit;
  7717. background-color:rgba(240, 240, 240, 1);
  7718. border:none;
  7719. border-radius:0px;
  7720. -moz-box-shadow:none;
  7721. -webkit-box-shadow:none;
  7722. box-shadow:none;
  7723. font-size:11px;
  7724. color:#AAAAAA;
  7725. }
  7726. #u75726.disabled {
  7727. }
  7728. .u75726_input_option {
  7729. font-size:11px;
  7730. }
  7731. #u75727_div {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:81px;
  7737. height:40px;
  7738. background:inherit;
  7739. background-color:rgba(255, 255, 255, 0);
  7740. border:none;
  7741. border-top:0px;
  7742. border-right:0px;
  7743. border-bottom:0px;
  7744. border-radius:0px;
  7745. border-top-left-radius:0px;
  7746. border-bottom-left-radius:0px;
  7747. -moz-box-shadow:none;
  7748. -webkit-box-shadow:none;
  7749. box-shadow:none;
  7750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:14px;
  7754. color:#7F7F7F;
  7755. text-align:right;
  7756. }
  7757. #u75727 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:1730px;
  7761. top:283px;
  7762. width:81px;
  7763. height:40px;
  7764. display:flex;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:14px;
  7769. color:#7F7F7F;
  7770. text-align:right;
  7771. }
  7772. #u75727 .text {
  7773. position:absolute;
  7774. align-self:center;
  7775. padding:5px 10px 5px 0px;
  7776. box-sizing:border-box;
  7777. width:100%;
  7778. }
  7779. #u75727_text {
  7780. border-width:0px;
  7781. white-space:nowrap;
  7782. text-transform:none;
  7783. }
  7784. #u75728 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:0px;
  7789. width:0px;
  7790. height:0px;
  7791. }
  7792. #u75729_div {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:0px;
  7796. top:0px;
  7797. width:400px;
  7798. height:80px;
  7799. background:inherit;
  7800. background-color:rgba(255, 255, 255, 1);
  7801. box-sizing:border-box;
  7802. border-width:1px;
  7803. border-style:solid;
  7804. border-color:rgba(201, 201, 201, 1);
  7805. border-radius:4px;
  7806. -moz-box-shadow:none;
  7807. -webkit-box-shadow:none;
  7808. box-shadow:none;
  7809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:12px;
  7813. text-align:right;
  7814. }
  7815. #u75729 {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:1821px;
  7819. top:283px;
  7820. width:400px;
  7821. height:80px;
  7822. display:flex;
  7823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7824. font-weight:400;
  7825. font-style:normal;
  7826. font-size:12px;
  7827. text-align:right;
  7828. }
  7829. #u75729 .text {
  7830. position:absolute;
  7831. align-self:center;
  7832. padding:2px 8px 2px 8px;
  7833. box-sizing:border-box;
  7834. width:100%;
  7835. }
  7836. #u75729_text {
  7837. border-width:0px;
  7838. word-wrap:break-word;
  7839. text-transform:none;
  7840. visibility:hidden;
  7841. }
  7842. #u75730_input {
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:323px;
  7847. height:38px;
  7848. padding:2px 2px 2px 2px;
  7849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. font-size:14px;
  7853. letter-spacing:normal;
  7854. color:#000000;
  7855. vertical-align:none;
  7856. text-align:left;
  7857. text-transform:none;
  7858. background-color:transparent;
  7859. border-color:transparent;
  7860. }
  7861. #u75730_input.disabled {
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:323px;
  7866. height:38px;
  7867. padding:2px 2px 2px 2px;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:14px;
  7872. letter-spacing:normal;
  7873. color:#000000;
  7874. vertical-align:none;
  7875. text-align:left;
  7876. text-transform:none;
  7877. background-color:transparent;
  7878. border-color:transparent;
  7879. }
  7880. #u75730_div {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:323px;
  7886. height:38px;
  7887. background:inherit;
  7888. background-color:rgba(255, 255, 255, 1);
  7889. border:none;
  7890. border-radius:0px;
  7891. -moz-box-shadow:none;
  7892. -webkit-box-shadow:none;
  7893. box-shadow:none;
  7894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:14px;
  7898. }
  7899. #u75730 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:1832px;
  7903. top:284px;
  7904. width:323px;
  7905. height:38px;
  7906. display:flex;
  7907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7908. font-weight:400;
  7909. font-style:normal;
  7910. font-size:14px;
  7911. }
  7912. #u75730 .text {
  7913. position:absolute;
  7914. align-self:center;
  7915. padding:2px 2px 2px 2px;
  7916. box-sizing:border-box;
  7917. width:100%;
  7918. }
  7919. #u75730_div.disabled {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:0px;
  7923. top:0px;
  7924. width:323px;
  7925. height:38px;
  7926. background:inherit;
  7927. background-color:rgba(240, 240, 240, 1);
  7928. border:none;
  7929. border-radius:0px;
  7930. -moz-box-shadow:none;
  7931. -webkit-box-shadow:none;
  7932. box-shadow:none;
  7933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7934. font-weight:400;
  7935. font-style:normal;
  7936. font-size:14px;
  7937. }
  7938. #u75730.disabled {
  7939. }
  7940. #u75731 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:0px;
  7944. top:0px;
  7945. width:0px;
  7946. height:0px;
  7947. }
  7948. #u75732_div {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:0px;
  7952. top:0px;
  7953. width:200px;
  7954. height:1180px;
  7955. background:inherit;
  7956. background-color:rgba(255, 255, 255, 1);
  7957. border:none;
  7958. border-radius:0px;
  7959. -moz-box-shadow:none;
  7960. -webkit-box-shadow:none;
  7961. box-shadow:none;
  7962. }
  7963. #u75732 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:121px;
  7967. top:50px;
  7968. width:200px;
  7969. height:1180px;
  7970. display:flex;
  7971. }
  7972. #u75732 .text {
  7973. position:absolute;
  7974. align-self:center;
  7975. padding:2px 2px 2px 2px;
  7976. box-sizing:border-box;
  7977. width:100%;
  7978. }
  7979. #u75732_text {
  7980. border-width:0px;
  7981. word-wrap:break-word;
  7982. text-transform:none;
  7983. visibility:hidden;
  7984. }
  7985. #u75733_div {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:200px;
  7991. height:60px;
  7992. background:inherit;
  7993. background-color:rgba(224, 231, 247, 1);
  7994. border:none;
  7995. border-radius:0px;
  7996. -moz-box-shadow:none;
  7997. -webkit-box-shadow:none;
  7998. box-shadow:none;
  7999. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8000. font-weight:500;
  8001. font-style:normal;
  8002. font-size:18px;
  8003. }
  8004. #u75733 {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:121px;
  8008. top:50px;
  8009. width:200px;
  8010. height:60px;
  8011. display:flex;
  8012. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8013. font-weight:500;
  8014. font-style:normal;
  8015. font-size:18px;
  8016. }
  8017. #u75733 .text {
  8018. position:absolute;
  8019. align-self:center;
  8020. padding:0px 0px 0px 20px;
  8021. box-sizing:border-box;
  8022. width:100%;
  8023. }
  8024. #u75733_text {
  8025. border-width:0px;
  8026. word-wrap:break-word;
  8027. text-transform:none;
  8028. }
  8029. #u75734_div {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:97px;
  8035. height:22px;
  8036. background:inherit;
  8037. background-color:rgba(255, 255, 255, 0);
  8038. border:none;
  8039. border-radius:0px;
  8040. -moz-box-shadow:none;
  8041. -webkit-box-shadow:none;
  8042. box-shadow:none;
  8043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:16px;
  8047. }
  8048. #u75734 {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:148px;
  8052. top:369px;
  8053. width:97px;
  8054. height:22px;
  8055. display:flex;
  8056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8057. font-weight:400;
  8058. font-style:normal;
  8059. font-size:16px;
  8060. }
  8061. #u75734 .text {
  8062. position:absolute;
  8063. align-self:flex-start;
  8064. padding:0px 0px 0px 0px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u75734_text {
  8069. border-width:0px;
  8070. word-wrap:break-word;
  8071. text-transform:none;
  8072. }
  8073. #u75735_div {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:97px;
  8079. height:22px;
  8080. background:inherit;
  8081. background-color:rgba(255, 255, 255, 0);
  8082. border:none;
  8083. border-radius:0px;
  8084. -moz-box-shadow:none;
  8085. -webkit-box-shadow:none;
  8086. box-shadow:none;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:16px;
  8091. }
  8092. #u75735 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:148px;
  8096. top:597px;
  8097. width:97px;
  8098. height:22px;
  8099. display:flex;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:16px;
  8104. }
  8105. #u75735 .text {
  8106. position:absolute;
  8107. align-self:flex-start;
  8108. padding:0px 0px 0px 0px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u75735_text {
  8113. border-width:0px;
  8114. word-wrap:break-word;
  8115. text-transform:none;
  8116. }
  8117. #u75736_div {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:49px;
  8123. height:17px;
  8124. background:inherit;
  8125. background-color:rgba(255, 255, 255, 0);
  8126. border:none;
  8127. border-radius:0px;
  8128. -moz-box-shadow:none;
  8129. -webkit-box-shadow:none;
  8130. box-shadow:none;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:12px;
  8135. color:#AAAAAA;
  8136. }
  8137. #u75736 {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:148px;
  8141. top:518px;
  8142. width:49px;
  8143. height:17px;
  8144. display:flex;
  8145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:12px;
  8149. color:#AAAAAA;
  8150. }
  8151. #u75736 .text {
  8152. position:absolute;
  8153. align-self:flex-start;
  8154. padding:0px 0px 0px 0px;
  8155. box-sizing:border-box;
  8156. width:100%;
  8157. }
  8158. #u75736_text {
  8159. border-width:0px;
  8160. white-space:nowrap;
  8161. text-transform:none;
  8162. }
  8163. #u75737_div {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:0px;
  8167. top:0px;
  8168. width:65px;
  8169. height:22px;
  8170. background:inherit;
  8171. background-color:rgba(255, 255, 255, 0);
  8172. border:none;
  8173. border-radius:0px;
  8174. -moz-box-shadow:none;
  8175. -webkit-box-shadow:none;
  8176. box-shadow:none;
  8177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8178. font-weight:400;
  8179. font-style:normal;
  8180. font-size:16px;
  8181. }
  8182. #u75737 {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:148px;
  8186. top:455px;
  8187. width:65px;
  8188. height:22px;
  8189. display:flex;
  8190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:16px;
  8194. }
  8195. #u75737 .text {
  8196. position:absolute;
  8197. align-self:flex-start;
  8198. padding:0px 0px 0px 0px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u75737_text {
  8203. border-width:0px;
  8204. white-space:nowrap;
  8205. text-transform:none;
  8206. }
  8207. #u75738_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:201px;
  8213. height:2px;
  8214. }
  8215. #u75738 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:121px;
  8219. top:497px;
  8220. width:200px;
  8221. height:1px;
  8222. display:flex;
  8223. }
  8224. #u75738 .text {
  8225. position:absolute;
  8226. align-self:center;
  8227. padding:2px 2px 2px 2px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u75738_text {
  8232. border-width:0px;
  8233. word-wrap:break-word;
  8234. text-transform:none;
  8235. visibility:hidden;
  8236. }
  8237. #u75739_div {
  8238. border-width:0px;
  8239. position:absolute;
  8240. left:0px;
  8241. top:0px;
  8242. width:49px;
  8243. height:17px;
  8244. background:inherit;
  8245. background-color:rgba(255, 255, 255, 0);
  8246. border:none;
  8247. border-radius:0px;
  8248. -moz-box-shadow:none;
  8249. -webkit-box-shadow:none;
  8250. box-shadow:none;
  8251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:12px;
  8255. color:#AAAAAA;
  8256. }
  8257. #u75739 {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:148px;
  8261. top:332px;
  8262. width:49px;
  8263. height:17px;
  8264. display:flex;
  8265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8266. font-weight:400;
  8267. font-style:normal;
  8268. font-size:12px;
  8269. color:#AAAAAA;
  8270. }
  8271. #u75739 .text {
  8272. position:absolute;
  8273. align-self:flex-start;
  8274. padding:0px 0px 0px 0px;
  8275. box-sizing:border-box;
  8276. width:100%;
  8277. }
  8278. #u75739_text {
  8279. border-width:0px;
  8280. white-space:nowrap;
  8281. text-transform:none;
  8282. }
  8283. #u75740_div {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:97px;
  8289. height:22px;
  8290. background:inherit;
  8291. background-color:rgba(255, 255, 255, 0);
  8292. border:none;
  8293. border-radius:0px;
  8294. -moz-box-shadow:none;
  8295. -webkit-box-shadow:none;
  8296. box-shadow:none;
  8297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:16px;
  8301. }
  8302. #u75740 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:148px;
  8306. top:639px;
  8307. width:97px;
  8308. height:22px;
  8309. display:flex;
  8310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8311. font-weight:400;
  8312. font-style:normal;
  8313. font-size:16px;
  8314. }
  8315. #u75740 .text {
  8316. position:absolute;
  8317. align-self:flex-start;
  8318. padding:0px 0px 0px 0px;
  8319. box-sizing:border-box;
  8320. width:100%;
  8321. }
  8322. #u75740_text {
  8323. border-width:0px;
  8324. word-wrap:break-word;
  8325. text-transform:none;
  8326. }
  8327. #u75741_div {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:0px;
  8331. top:0px;
  8332. width:97px;
  8333. height:22px;
  8334. background:inherit;
  8335. background-color:rgba(255, 255, 255, 0);
  8336. border:none;
  8337. border-radius:0px;
  8338. -moz-box-shadow:none;
  8339. -webkit-box-shadow:none;
  8340. box-shadow:none;
  8341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8342. font-weight:400;
  8343. font-style:normal;
  8344. font-size:16px;
  8345. }
  8346. #u75741 {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:148px;
  8350. top:253px;
  8351. width:97px;
  8352. height:22px;
  8353. display:flex;
  8354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8355. font-weight:400;
  8356. font-style:normal;
  8357. font-size:16px;
  8358. }
  8359. #u75741 .text {
  8360. position:absolute;
  8361. align-self:flex-start;
  8362. padding:0px 0px 0px 0px;
  8363. box-sizing:border-box;
  8364. width:100%;
  8365. }
  8366. #u75741_text {
  8367. border-width:0px;
  8368. word-wrap:break-word;
  8369. text-transform:none;
  8370. }
  8371. #u75742_div {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:97px;
  8377. height:22px;
  8378. background:inherit;
  8379. background-color:rgba(255, 255, 255, 0);
  8380. border:none;
  8381. border-radius:0px;
  8382. -moz-box-shadow:none;
  8383. -webkit-box-shadow:none;
  8384. box-shadow:none;
  8385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:16px;
  8389. }
  8390. #u75742 {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:148px;
  8394. top:413px;
  8395. width:97px;
  8396. height:22px;
  8397. display:flex;
  8398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8399. font-weight:400;
  8400. font-style:normal;
  8401. font-size:16px;
  8402. }
  8403. #u75742 .text {
  8404. position:absolute;
  8405. align-self:flex-start;
  8406. padding:0px 0px 0px 0px;
  8407. box-sizing:border-box;
  8408. width:100%;
  8409. }
  8410. #u75742_text {
  8411. border-width:0px;
  8412. word-wrap:break-word;
  8413. text-transform:none;
  8414. }
  8415. #u75743_div {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:0px;
  8419. top:0px;
  8420. width:97px;
  8421. height:22px;
  8422. background:inherit;
  8423. background-color:rgba(255, 255, 255, 0);
  8424. border:none;
  8425. border-radius:0px;
  8426. -moz-box-shadow:none;
  8427. -webkit-box-shadow:none;
  8428. box-shadow:none;
  8429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:16px;
  8433. }
  8434. #u75743 {
  8435. border-width:0px;
  8436. position:absolute;
  8437. left:148px;
  8438. top:555px;
  8439. width:97px;
  8440. height:22px;
  8441. display:flex;
  8442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8443. font-weight:400;
  8444. font-style:normal;
  8445. font-size:16px;
  8446. }
  8447. #u75743 .text {
  8448. position:absolute;
  8449. align-self:flex-start;
  8450. padding:0px 0px 0px 0px;
  8451. box-sizing:border-box;
  8452. width:100%;
  8453. }
  8454. #u75743_text {
  8455. border-width:0px;
  8456. word-wrap:break-word;
  8457. text-transform:none;
  8458. }
  8459. #u75744_div {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:0px;
  8463. top:0px;
  8464. width:97px;
  8465. height:22px;
  8466. background:inherit;
  8467. background-color:rgba(255, 255, 255, 0);
  8468. border:none;
  8469. border-radius:0px;
  8470. -moz-box-shadow:none;
  8471. -webkit-box-shadow:none;
  8472. box-shadow:none;
  8473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8474. font-weight:400;
  8475. font-style:normal;
  8476. font-size:16px;
  8477. }
  8478. #u75744 {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:148px;
  8482. top:167px;
  8483. width:97px;
  8484. height:22px;
  8485. display:flex;
  8486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8487. font-weight:400;
  8488. font-style:normal;
  8489. font-size:16px;
  8490. }
  8491. #u75744 .text {
  8492. position:absolute;
  8493. align-self:flex-start;
  8494. padding:0px 0px 0px 0px;
  8495. box-sizing:border-box;
  8496. width:100%;
  8497. }
  8498. #u75744_text {
  8499. border-width:0px;
  8500. word-wrap:break-word;
  8501. text-transform:none;
  8502. }
  8503. #u75745_img {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:201px;
  8509. height:2px;
  8510. }
  8511. #u75745 {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:121px;
  8515. top:302px;
  8516. width:200px;
  8517. height:1px;
  8518. display:flex;
  8519. }
  8520. #u75745 .text {
  8521. position:absolute;
  8522. align-self:center;
  8523. padding:2px 2px 2px 2px;
  8524. box-sizing:border-box;
  8525. width:100%;
  8526. }
  8527. #u75745_text {
  8528. border-width:0px;
  8529. word-wrap:break-word;
  8530. text-transform:none;
  8531. visibility:hidden;
  8532. }
  8533. #u75746_div {
  8534. border-width:0px;
  8535. position:absolute;
  8536. left:0px;
  8537. top:0px;
  8538. width:49px;
  8539. height:17px;
  8540. background:inherit;
  8541. background-color:rgba(255, 255, 255, 0);
  8542. border:none;
  8543. border-radius:0px;
  8544. -moz-box-shadow:none;
  8545. -webkit-box-shadow:none;
  8546. box-shadow:none;
  8547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8548. font-weight:400;
  8549. font-style:normal;
  8550. font-size:12px;
  8551. color:#AAAAAA;
  8552. }
  8553. #u75746 {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:148px;
  8557. top:130px;
  8558. width:49px;
  8559. height:17px;
  8560. display:flex;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:12px;
  8565. color:#AAAAAA;
  8566. }
  8567. #u75746 .text {
  8568. position:absolute;
  8569. align-self:flex-start;
  8570. padding:0px 0px 0px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u75746_text {
  8575. border-width:0px;
  8576. white-space:nowrap;
  8577. text-transform:none;
  8578. }
  8579. #u75747_div {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:97px;
  8585. height:22px;
  8586. background:inherit;
  8587. background-color:rgba(255, 255, 255, 0);
  8588. border:none;
  8589. border-radius:0px;
  8590. -moz-box-shadow:none;
  8591. -webkit-box-shadow:none;
  8592. box-shadow:none;
  8593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8594. font-weight:400;
  8595. font-style:normal;
  8596. font-size:16px;
  8597. }
  8598. #u75747 {
  8599. border-width:0px;
  8600. position:absolute;
  8601. left:148px;
  8602. top:209px;
  8603. width:97px;
  8604. height:22px;
  8605. display:flex;
  8606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8607. font-weight:400;
  8608. font-style:normal;
  8609. font-size:16px;
  8610. }
  8611. #u75747 .text {
  8612. position:absolute;
  8613. align-self:flex-start;
  8614. padding:0px 0px 0px 0px;
  8615. box-sizing:border-box;
  8616. width:100%;
  8617. }
  8618. #u75747_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. }