styles.css 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2301px;
  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. #u7350 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u7351_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u7351 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u7351 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u7351_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u7352_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u7352 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u7352 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u7352_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u7353_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u7353 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u7353 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u7353_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u7354 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u7355 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u7355 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u7355_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u7355_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u7356_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u7356 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u7356 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u7356_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u7357_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u7357 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u7357 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u7357_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u7358 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u7359_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u7359 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u7359 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u7359_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u7360 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u7360 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u7360_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u7360_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u7361 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u7362_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u7362 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u7362 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u7362_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u7363 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u7363 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u7363_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u7363_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u7364 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u7365_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u7365 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u7365 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u7365_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u7366 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u7366 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u7366_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u7366_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u7367 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u7368_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u7368 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u7368 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u7368_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u7369 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u7369 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u7369_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u7369_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u7370 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u7371_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u7371 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u7371 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u7371_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u7372 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u7372 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u7372_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u7372_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u7373 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u7374_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u7374 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u7374 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u7374_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u7375 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u7375 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u7375_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u7375_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u7376 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u7377_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u7377 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u7377 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u7377_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u7378 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u7378 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u7378_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u7378_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u7379 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u7380_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u7380 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u7380 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u7380_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u7381 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u7381 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u7381_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u7381_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u7382 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u7383_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u7383 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u7383 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u7383_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u7384 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u7384 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u7384_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u7384_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u7385 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u7386_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u7386 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u7386 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u7386_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u7387 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u7387 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u7387_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u7387_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u7388 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u7389_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u7389 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u7389 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u7389_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u7390 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u7390 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u7390_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u7390_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u7391 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u7392_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u7392_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:'ArialMT', 'Arial', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u7392_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u7392 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u7392 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u7392_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u7392.disabled {
  1294. }
  1295. .u7392_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u7393 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u7393 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u7393_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u7393_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u7394_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u7394 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u7394 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u7394_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u7395 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u7395 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u7395_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u7395_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u7396 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u7397_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u7397 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u7397 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u7397_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u7398 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u7398 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u7398_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u7398_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u7399 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u7399 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u7399_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u7399_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u7400 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u7400 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u7400_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u7400_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u7401 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u7401 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u7401_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u7401_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u7402 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u7403_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u7403 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u7403 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u7403_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u7404 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u7404 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u7404_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u7404_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u7405_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1252px;
  1673. height:1190px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:12px;
  1683. color:#FFFFFF;
  1684. text-align:left;
  1685. }
  1686. #u7405 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:334px;
  1690. top:50px;
  1691. width:1252px;
  1692. height:1190px;
  1693. display:flex;
  1694. transition:none;
  1695. transform-origin:50% 50%;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:12px;
  1700. color:#FFFFFF;
  1701. text-align:left;
  1702. }
  1703. #u7405 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 50px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u7405_text {
  1711. border-width:0px;
  1712. word-wrap:break-word;
  1713. text-transform:none;
  1714. visibility:hidden;
  1715. }
  1716. #u7406 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:0px;
  1722. height:0px;
  1723. }
  1724. #u7407_div {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:1162px;
  1730. height:96px;
  1731. background:inherit;
  1732. background-color:rgba(242, 242, 242, 1);
  1733. border-radius:10px;
  1734. filter:drop-shadow(none);
  1735. transition:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#FFFFFF;
  1741. text-align:left;
  1742. }
  1743. #u7407 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:361px;
  1747. top:162px;
  1748. width:1162px;
  1749. height:96px;
  1750. display:flex;
  1751. transition:none;
  1752. transform-origin:50% 50%;
  1753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1754. font-weight:400;
  1755. font-style:normal;
  1756. font-size:12px;
  1757. color:#FFFFFF;
  1758. text-align:left;
  1759. }
  1760. #u7407 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 50px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u7407_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u7408 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:0px;
  1779. height:0px;
  1780. }
  1781. #u7409 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:397px;
  1785. top:178px;
  1786. width:69px;
  1787. height:64px;
  1788. display:flex;
  1789. transition:none;
  1790. }
  1791. #u7409 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u7409_img {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:69px;
  1804. height:64px;
  1805. }
  1806. #u7409_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. visibility:hidden;
  1811. }
  1812. #u7410_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:131px;
  1818. height:50px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 0);
  1821. border-left:0px;
  1822. border-top:0px;
  1823. border-right:0px;
  1824. border-radius:0px;
  1825. border-bottom-right-radius:0px;
  1826. border-bottom-left-radius:0px;
  1827. filter:drop-shadow(none);
  1828. transition:none;
  1829. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1830. font-weight:500;
  1831. font-style:normal;
  1832. font-size:24px;
  1833. }
  1834. #u7410 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:486px;
  1838. top:185px;
  1839. width:131px;
  1840. height:50px;
  1841. display:flex;
  1842. transition:none;
  1843. transform-origin:50% 50%;
  1844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1845. font-weight:500;
  1846. font-style:normal;
  1847. font-size:24px;
  1848. }
  1849. #u7410 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:0px 0px 0px 0px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u7410_text {
  1857. border-width:0px;
  1858. white-space:nowrap;
  1859. text-transform:none;
  1860. }
  1861. #u7411 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:0px;
  1867. height:0px;
  1868. }
  1869. #u7412 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:709px;
  1873. top:178px;
  1874. width:69px;
  1875. height:64px;
  1876. display:flex;
  1877. transition:none;
  1878. }
  1879. #u7412 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 2px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u7412_img {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:69px;
  1892. height:64px;
  1893. }
  1894. #u7412_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. visibility:hidden;
  1899. }
  1900. #u7413_div {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:131px;
  1906. height:50px;
  1907. background:inherit;
  1908. background-color:rgba(255, 255, 255, 0);
  1909. border-left:0px;
  1910. border-top:0px;
  1911. border-right:0px;
  1912. border-radius:0px;
  1913. border-bottom-right-radius:0px;
  1914. border-bottom-left-radius:0px;
  1915. filter:drop-shadow(none);
  1916. transition:none;
  1917. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1918. font-weight:500;
  1919. font-style:normal;
  1920. font-size:24px;
  1921. }
  1922. #u7413 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:798px;
  1926. top:185px;
  1927. width:131px;
  1928. height:50px;
  1929. display:flex;
  1930. transition:none;
  1931. transform-origin:50% 50%;
  1932. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1933. font-weight:500;
  1934. font-style:normal;
  1935. font-size:24px;
  1936. }
  1937. #u7413 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:0px 0px 0px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u7413_text {
  1945. border-width:0px;
  1946. white-space:nowrap;
  1947. text-transform:none;
  1948. }
  1949. #u7414 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:0px;
  1955. height:0px;
  1956. }
  1957. #u7415 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:1020px;
  1961. top:178px;
  1962. width:69px;
  1963. height:64px;
  1964. display:flex;
  1965. transition:none;
  1966. }
  1967. #u7415 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 2px 2px 2px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u7415_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:69px;
  1980. height:64px;
  1981. }
  1982. #u7415_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. visibility:hidden;
  1987. }
  1988. #u7416_div {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:97px;
  1994. height:50px;
  1995. background:inherit;
  1996. background-color:rgba(255, 255, 255, 0);
  1997. border-left:0px;
  1998. border-top:0px;
  1999. border-right:0px;
  2000. border-radius:0px;
  2001. border-bottom-right-radius:0px;
  2002. border-bottom-left-radius:0px;
  2003. filter:drop-shadow(none);
  2004. transition:none;
  2005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2006. font-weight:500;
  2007. font-style:normal;
  2008. font-size:24px;
  2009. }
  2010. #u7416 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:1109px;
  2014. top:185px;
  2015. width:97px;
  2016. height:50px;
  2017. display:flex;
  2018. transition:none;
  2019. transform-origin:50% 50%;
  2020. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2021. font-weight:500;
  2022. font-style:normal;
  2023. font-size:24px;
  2024. }
  2025. #u7416 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:0px 0px 0px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u7416_text {
  2033. border-width:0px;
  2034. white-space:nowrap;
  2035. text-transform:none;
  2036. }
  2037. #u7417 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:0px;
  2043. height:0px;
  2044. }
  2045. #u7418 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:1298px;
  2049. top:178px;
  2050. width:69px;
  2051. height:64px;
  2052. display:flex;
  2053. transition:none;
  2054. }
  2055. #u7418 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u7418_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:69px;
  2068. height:64px;
  2069. }
  2070. #u7418_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u7419_div {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:87px;
  2082. height:50px;
  2083. background:inherit;
  2084. background-color:rgba(255, 255, 255, 0);
  2085. border-left:0px;
  2086. border-top:0px;
  2087. border-right:0px;
  2088. border-radius:0px;
  2089. border-bottom-right-radius:0px;
  2090. border-bottom-left-radius:0px;
  2091. filter:drop-shadow(none);
  2092. transition:none;
  2093. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2094. font-weight:500;
  2095. font-style:normal;
  2096. font-size:24px;
  2097. }
  2098. #u7419 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:1387px;
  2102. top:185px;
  2103. width:87px;
  2104. height:50px;
  2105. display:flex;
  2106. transition:none;
  2107. transform-origin:50% 50%;
  2108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2109. font-weight:500;
  2110. font-style:normal;
  2111. font-size:24px;
  2112. }
  2113. #u7419 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:0px 0px 0px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u7419_text {
  2121. border-width:0px;
  2122. white-space:nowrap;
  2123. text-transform:none;
  2124. }
  2125. #u7420 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:646px;
  2129. top:472px;
  2130. width:914px;
  2131. height:622px;
  2132. display:flex;
  2133. transition:none;
  2134. }
  2135. #u7420 .text {
  2136. position:absolute;
  2137. align-self:center;
  2138. padding:2px 2px 2px 2px;
  2139. box-sizing:border-box;
  2140. width:100%;
  2141. }
  2142. #u7420_img {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:914px;
  2148. height:622px;
  2149. }
  2150. #u7420_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u7421_div {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:73px;
  2162. height:50px;
  2163. background:inherit;
  2164. background-color:rgba(255, 255, 255, 0);
  2165. border-left:0px;
  2166. border-top:0px;
  2167. border-right:0px;
  2168. border-radius:0px;
  2169. border-bottom-right-radius:0px;
  2170. border-bottom-left-radius:0px;
  2171. filter:drop-shadow(none);
  2172. transition:none;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:18px;
  2177. }
  2178. #u7421 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:353px;
  2182. top:50px;
  2183. width:73px;
  2184. height:50px;
  2185. display:flex;
  2186. transition:none;
  2187. transform-origin:50% 50%;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:18px;
  2192. }
  2193. #u7421 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:0px 0px 0px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u7421_text {
  2201. border-width:0px;
  2202. white-space:nowrap;
  2203. text-transform:none;
  2204. }
  2205. #u7422 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:353px;
  2209. top:374px;
  2210. width:146px;
  2211. height:480px;
  2212. transition:none;
  2213. }
  2214. #u7422_children {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:0px;
  2220. height:0px;
  2221. }
  2222. #u7423 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:80px;
  2228. height:20px;
  2229. transition:none;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. }
  2234. #u7424 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:6px;
  2238. top:6px;
  2239. width:9px;
  2240. height:9px;
  2241. display:flex;
  2242. transition:none;
  2243. }
  2244. #u7424 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 2px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u7424_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:9px;
  2257. height:9px;
  2258. }
  2259. #u7424_img.selected {
  2260. }
  2261. #u7424.selected {
  2262. }
  2263. #u7424_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. visibility:hidden;
  2268. }
  2269. #u7425_div {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:58px;
  2275. height:20px;
  2276. background:inherit;
  2277. background-color:rgba(255, 255, 255, 0);
  2278. border-radius:0px;
  2279. filter:drop-shadow(none);
  2280. transition:none;
  2281. }
  2282. #u7425 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:22px;
  2286. top:0px;
  2287. width:58px;
  2288. height:20px;
  2289. display:flex;
  2290. transition:none;
  2291. transform-origin:50% 50%;
  2292. }
  2293. #u7425 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 3px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u7425_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u7423_children {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:0px;
  2311. height:0px;
  2312. }
  2313. #u7426 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:20px;
  2317. top:20px;
  2318. width:80px;
  2319. height:20px;
  2320. transition:none;
  2321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2322. font-weight:400;
  2323. font-style:normal;
  2324. }
  2325. #u7427 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:6px;
  2329. top:6px;
  2330. width:9px;
  2331. height:9px;
  2332. display:flex;
  2333. transition:none;
  2334. }
  2335. #u7427 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 2px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u7427_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:9px;
  2348. height:9px;
  2349. }
  2350. #u7427_img.selected {
  2351. }
  2352. #u7427.selected {
  2353. }
  2354. #u7427_text {
  2355. border-width:0px;
  2356. word-wrap:break-word;
  2357. text-transform:none;
  2358. visibility:hidden;
  2359. }
  2360. #u7428_div {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:58px;
  2366. height:20px;
  2367. background:inherit;
  2368. background-color:rgba(255, 255, 255, 0);
  2369. border-radius:0px;
  2370. filter:drop-shadow(none);
  2371. transition:none;
  2372. }
  2373. #u7428 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:22px;
  2377. top:0px;
  2378. width:58px;
  2379. height:20px;
  2380. display:flex;
  2381. transition:none;
  2382. transform-origin:50% 50%;
  2383. }
  2384. #u7428 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:2px 2px 2px 3px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u7428_text {
  2392. border-width:0px;
  2393. white-space:nowrap;
  2394. text-transform:none;
  2395. }
  2396. #u7426_children {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:0px;
  2402. height:0px;
  2403. }
  2404. #u7429 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:20px;
  2408. top:20px;
  2409. width:106px;
  2410. height:20px;
  2411. transition:none;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. color:#1890FF;
  2416. }
  2417. #u7430_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:84px;
  2423. height:20px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 0);
  2426. border-radius:0px;
  2427. filter:drop-shadow(none);
  2428. transition:none;
  2429. }
  2430. #u7430 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:22px;
  2434. top:0px;
  2435. width:84px;
  2436. height:20px;
  2437. display:flex;
  2438. transition:none;
  2439. transform-origin:50% 50%;
  2440. }
  2441. #u7430 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:2px 2px 2px 3px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u7430_text {
  2449. border-width:0px;
  2450. white-space:nowrap;
  2451. text-transform:none;
  2452. }
  2453. #u7431 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:20px;
  2457. top:40px;
  2458. width:97px;
  2459. height:20px;
  2460. transition:none;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. }
  2465. #u7432_div {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:75px;
  2471. height:20px;
  2472. background:inherit;
  2473. background-color:rgba(255, 255, 255, 0);
  2474. border-radius:0px;
  2475. filter:drop-shadow(none);
  2476. transition:none;
  2477. }
  2478. #u7432 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:22px;
  2482. top:0px;
  2483. width:75px;
  2484. height:20px;
  2485. display:flex;
  2486. transition:none;
  2487. transform-origin:50% 50%;
  2488. }
  2489. #u7432 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 3px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u7432_text {
  2497. border-width:0px;
  2498. white-space:nowrap;
  2499. text-transform:none;
  2500. }
  2501. #u7433 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:20px;
  2505. top:80px;
  2506. width:80px;
  2507. height:20px;
  2508. transition:none;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. }
  2513. #u7434 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:6px;
  2517. top:6px;
  2518. width:9px;
  2519. height:9px;
  2520. display:flex;
  2521. transition:none;
  2522. }
  2523. #u7434 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 2px 2px 2px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u7434_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:9px;
  2536. height:9px;
  2537. }
  2538. #u7434_img.selected {
  2539. }
  2540. #u7434.selected {
  2541. }
  2542. #u7434_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u7435_div {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:58px;
  2554. height:20px;
  2555. background:inherit;
  2556. background-color:rgba(255, 255, 255, 0);
  2557. border-radius:0px;
  2558. filter:drop-shadow(none);
  2559. transition:none;
  2560. }
  2561. #u7435 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:22px;
  2565. top:0px;
  2566. width:58px;
  2567. height:20px;
  2568. display:flex;
  2569. transition:none;
  2570. transform-origin:50% 50%;
  2571. }
  2572. #u7435 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 3px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u7435_text {
  2580. border-width:0px;
  2581. white-space:nowrap;
  2582. text-transform:none;
  2583. }
  2584. #u7433_children {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:0px;
  2590. height:0px;
  2591. }
  2592. #u7436 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:20px;
  2596. top:20px;
  2597. width:106px;
  2598. height:20px;
  2599. transition:none;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. }
  2604. #u7437_div {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:84px;
  2610. height:20px;
  2611. background:inherit;
  2612. background-color:rgba(255, 255, 255, 0);
  2613. border-radius:0px;
  2614. filter:drop-shadow(none);
  2615. transition:none;
  2616. }
  2617. #u7437 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:22px;
  2621. top:0px;
  2622. width:84px;
  2623. height:20px;
  2624. display:flex;
  2625. transition:none;
  2626. transform-origin:50% 50%;
  2627. }
  2628. #u7437 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 3px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u7437_text {
  2636. border-width:0px;
  2637. white-space:nowrap;
  2638. text-transform:none;
  2639. }
  2640. #u7438 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:20px;
  2644. top:40px;
  2645. width:97px;
  2646. height:20px;
  2647. transition:none;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. }
  2652. #u7439_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:75px;
  2658. height:20px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border-radius:0px;
  2662. filter:drop-shadow(none);
  2663. transition:none;
  2664. }
  2665. #u7439 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:22px;
  2669. top:0px;
  2670. width:75px;
  2671. height:20px;
  2672. display:flex;
  2673. transition:none;
  2674. transform-origin:50% 50%;
  2675. }
  2676. #u7439 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 2px 2px 3px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u7439_text {
  2684. border-width:0px;
  2685. white-space:nowrap;
  2686. text-transform:none;
  2687. }
  2688. #u7440 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:20px;
  2692. top:140px;
  2693. width:80px;
  2694. height:20px;
  2695. transition:none;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. }
  2700. #u7441 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:6px;
  2704. top:6px;
  2705. width:9px;
  2706. height:9px;
  2707. display:flex;
  2708. transition:none;
  2709. }
  2710. #u7441 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u7441_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:9px;
  2723. height:9px;
  2724. }
  2725. #u7441_img.selected {
  2726. }
  2727. #u7441.selected {
  2728. }
  2729. #u7441_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. visibility:hidden;
  2734. }
  2735. #u7442_div {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:58px;
  2741. height:20px;
  2742. background:inherit;
  2743. background-color:rgba(255, 255, 255, 0);
  2744. border-radius:0px;
  2745. filter:drop-shadow(none);
  2746. transition:none;
  2747. }
  2748. #u7442 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:22px;
  2752. top:0px;
  2753. width:58px;
  2754. height:20px;
  2755. display:flex;
  2756. transition:none;
  2757. transform-origin:50% 50%;
  2758. }
  2759. #u7442 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:2px 2px 2px 3px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u7442_text {
  2767. border-width:0px;
  2768. white-space:nowrap;
  2769. text-transform:none;
  2770. }
  2771. #u7440_children {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:0px;
  2777. height:0px;
  2778. }
  2779. #u7443 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:20px;
  2783. top:20px;
  2784. width:106px;
  2785. height:20px;
  2786. transition:none;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. }
  2791. #u7444_div {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:84px;
  2797. height:20px;
  2798. background:inherit;
  2799. background-color:rgba(255, 255, 255, 0);
  2800. border-radius:0px;
  2801. filter:drop-shadow(none);
  2802. transition:none;
  2803. }
  2804. #u7444 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:22px;
  2808. top:0px;
  2809. width:84px;
  2810. height:20px;
  2811. display:flex;
  2812. transition:none;
  2813. transform-origin:50% 50%;
  2814. }
  2815. #u7444 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 3px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u7444_text {
  2823. border-width:0px;
  2824. white-space:nowrap;
  2825. text-transform:none;
  2826. }
  2827. #u7445 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:20px;
  2831. top:40px;
  2832. width:97px;
  2833. height:20px;
  2834. transition:none;
  2835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. }
  2839. #u7446_div {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:75px;
  2845. height:20px;
  2846. background:inherit;
  2847. background-color:rgba(255, 255, 255, 0);
  2848. border-radius:0px;
  2849. filter:drop-shadow(none);
  2850. transition:none;
  2851. }
  2852. #u7446 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:22px;
  2856. top:0px;
  2857. width:75px;
  2858. height:20px;
  2859. display:flex;
  2860. transition:none;
  2861. transform-origin:50% 50%;
  2862. }
  2863. #u7446 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 3px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u7446_text {
  2871. border-width:0px;
  2872. white-space:nowrap;
  2873. text-transform:none;
  2874. }
  2875. #u7447 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:20px;
  2879. top:200px;
  2880. width:41px;
  2881. height:20px;
  2882. transition:none;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. }
  2887. #u7448_div {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:19px;
  2893. height:20px;
  2894. background:inherit;
  2895. background-color:rgba(255, 255, 255, 0);
  2896. border-radius:0px;
  2897. filter:drop-shadow(none);
  2898. transition:none;
  2899. }
  2900. #u7448 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:22px;
  2904. top:0px;
  2905. width:19px;
  2906. height:20px;
  2907. display:flex;
  2908. transition:none;
  2909. transform-origin:50% 50%;
  2910. }
  2911. #u7448 .text {
  2912. position:absolute;
  2913. align-self:center;
  2914. padding:2px 2px 2px 3px;
  2915. box-sizing:border-box;
  2916. width:100%;
  2917. }
  2918. #u7448_text {
  2919. border-width:0px;
  2920. white-space:nowrap;
  2921. text-transform:none;
  2922. }
  2923. #u7449 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:220px;
  2928. width:80px;
  2929. height:20px;
  2930. transition:none;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. }
  2935. #u7450 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:6px;
  2939. top:6px;
  2940. width:9px;
  2941. height:9px;
  2942. display:flex;
  2943. transition:none;
  2944. }
  2945. #u7450 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:2px 2px 2px 2px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u7450_img {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:9px;
  2958. height:9px;
  2959. }
  2960. #u7450_img.selected {
  2961. }
  2962. #u7450.selected {
  2963. }
  2964. #u7450_text {
  2965. border-width:0px;
  2966. word-wrap:break-word;
  2967. text-transform:none;
  2968. visibility:hidden;
  2969. }
  2970. #u7451_div {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:0px;
  2975. width:58px;
  2976. height:20px;
  2977. background:inherit;
  2978. background-color:rgba(255, 255, 255, 0);
  2979. border-radius:0px;
  2980. filter:drop-shadow(none);
  2981. transition:none;
  2982. }
  2983. #u7451 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:22px;
  2987. top:0px;
  2988. width:58px;
  2989. height:20px;
  2990. display:flex;
  2991. transition:none;
  2992. transform-origin:50% 50%;
  2993. }
  2994. #u7451 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 2px 2px 3px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u7451_text {
  3002. border-width:0px;
  3003. white-space:nowrap;
  3004. text-transform:none;
  3005. }
  3006. #u7449_children {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:0px;
  3012. height:0px;
  3013. }
  3014. #u7452 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:20px;
  3018. top:20px;
  3019. width:66px;
  3020. height:20px;
  3021. transition:none;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. }
  3026. #u7453_div {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:44px;
  3032. height:20px;
  3033. background:inherit;
  3034. background-color:rgba(255, 255, 255, 0);
  3035. border-radius:0px;
  3036. filter:drop-shadow(none);
  3037. transition:none;
  3038. }
  3039. #u7453 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:22px;
  3043. top:0px;
  3044. width:44px;
  3045. height:20px;
  3046. display:flex;
  3047. transition:none;
  3048. transform-origin:50% 50%;
  3049. }
  3050. #u7453 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 3px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u7453_text {
  3058. border-width:0px;
  3059. white-space:nowrap;
  3060. text-transform:none;
  3061. }
  3062. #u7454 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:20px;
  3066. top:40px;
  3067. width:80px;
  3068. height:20px;
  3069. transition:none;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. }
  3074. #u7455_div {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:58px;
  3080. height:20px;
  3081. background:inherit;
  3082. background-color:rgba(255, 255, 255, 0);
  3083. border-radius:0px;
  3084. filter:drop-shadow(none);
  3085. transition:none;
  3086. }
  3087. #u7455 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:22px;
  3091. top:0px;
  3092. width:58px;
  3093. height:20px;
  3094. display:flex;
  3095. transition:none;
  3096. transform-origin:50% 50%;
  3097. }
  3098. #u7455 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 3px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u7455_text {
  3106. border-width:0px;
  3107. white-space:nowrap;
  3108. text-transform:none;
  3109. }
  3110. #u7456 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:20px;
  3114. top:60px;
  3115. width:41px;
  3116. height:20px;
  3117. transition:none;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. }
  3122. #u7457_div {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:19px;
  3128. height:20px;
  3129. background:inherit;
  3130. background-color:rgba(255, 255, 255, 0);
  3131. border-radius:0px;
  3132. filter:drop-shadow(none);
  3133. transition:none;
  3134. }
  3135. #u7457 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:22px;
  3139. top:0px;
  3140. width:19px;
  3141. height:20px;
  3142. display:flex;
  3143. transition:none;
  3144. transform-origin:50% 50%;
  3145. }
  3146. #u7457 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 3px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u7457_text {
  3154. border-width:0px;
  3155. white-space:nowrap;
  3156. text-transform:none;
  3157. }
  3158. #u7458 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:300px;
  3163. width:80px;
  3164. height:20px;
  3165. transition:none;
  3166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. }
  3170. #u7459 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:6px;
  3174. top:6px;
  3175. width:9px;
  3176. height:9px;
  3177. display:flex;
  3178. transition:none;
  3179. }
  3180. #u7459 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 2px 2px 2px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u7459_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:9px;
  3193. height:9px;
  3194. }
  3195. #u7459_img.selected {
  3196. }
  3197. #u7459.selected {
  3198. }
  3199. #u7459_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u7460_div {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:58px;
  3211. height:20px;
  3212. background:inherit;
  3213. background-color:rgba(255, 255, 255, 0);
  3214. border-radius:0px;
  3215. filter:drop-shadow(none);
  3216. transition:none;
  3217. }
  3218. #u7460 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:22px;
  3222. top:0px;
  3223. width:58px;
  3224. height:20px;
  3225. display:flex;
  3226. transition:none;
  3227. transform-origin:50% 50%;
  3228. }
  3229. #u7460 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 3px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u7460_text {
  3237. border-width:0px;
  3238. white-space:nowrap;
  3239. text-transform:none;
  3240. }
  3241. #u7458_children {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:0px;
  3247. height:0px;
  3248. }
  3249. #u7461 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:20px;
  3253. top:20px;
  3254. width:80px;
  3255. height:20px;
  3256. transition:none;
  3257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. }
  3261. #u7462_div {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:58px;
  3267. height:20px;
  3268. background:inherit;
  3269. background-color:rgba(255, 255, 255, 0);
  3270. border-radius:0px;
  3271. filter:drop-shadow(none);
  3272. transition:none;
  3273. }
  3274. #u7462 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:22px;
  3278. top:0px;
  3279. width:58px;
  3280. height:20px;
  3281. display:flex;
  3282. transition:none;
  3283. transform-origin:50% 50%;
  3284. }
  3285. #u7462 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 3px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u7462_text {
  3293. border-width:0px;
  3294. white-space:nowrap;
  3295. text-transform:none;
  3296. }
  3297. #u7463 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:20px;
  3301. top:40px;
  3302. width:80px;
  3303. height:20px;
  3304. transition:none;
  3305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. }
  3309. #u7464_div {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:58px;
  3315. height:20px;
  3316. background:inherit;
  3317. background-color:rgba(255, 255, 255, 0);
  3318. border-radius:0px;
  3319. filter:drop-shadow(none);
  3320. transition:none;
  3321. }
  3322. #u7464 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:22px;
  3326. top:0px;
  3327. width:58px;
  3328. height:20px;
  3329. display:flex;
  3330. transition:none;
  3331. transform-origin:50% 50%;
  3332. }
  3333. #u7464 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 3px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u7464_text {
  3341. border-width:0px;
  3342. white-space:nowrap;
  3343. text-transform:none;
  3344. }
  3345. #u7465 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:20px;
  3349. top:60px;
  3350. width:80px;
  3351. height:20px;
  3352. transition:none;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. }
  3357. #u7466_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:58px;
  3363. height:20px;
  3364. background:inherit;
  3365. background-color:rgba(255, 255, 255, 0);
  3366. border-radius:0px;
  3367. filter:drop-shadow(none);
  3368. transition:none;
  3369. }
  3370. #u7466 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:22px;
  3374. top:0px;
  3375. width:58px;
  3376. height:20px;
  3377. display:flex;
  3378. transition:none;
  3379. transform-origin:50% 50%;
  3380. }
  3381. #u7466 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 3px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u7466_text {
  3389. border-width:0px;
  3390. white-space:nowrap;
  3391. text-transform:none;
  3392. }
  3393. #u7467 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:20px;
  3397. top:80px;
  3398. width:41px;
  3399. height:20px;
  3400. transition:none;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. }
  3405. #u7468_div {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:19px;
  3411. height:20px;
  3412. background:inherit;
  3413. background-color:rgba(255, 255, 255, 0);
  3414. border-radius:0px;
  3415. filter:drop-shadow(none);
  3416. transition:none;
  3417. }
  3418. #u7468 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:22px;
  3422. top:0px;
  3423. width:19px;
  3424. height:20px;
  3425. display:flex;
  3426. transition:none;
  3427. transform-origin:50% 50%;
  3428. }
  3429. #u7468 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 3px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u7468_text {
  3437. border-width:0px;
  3438. white-space:nowrap;
  3439. text-transform:none;
  3440. }
  3441. #u7469 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:400px;
  3446. width:80px;
  3447. height:20px;
  3448. transition:none;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. }
  3453. #u7470 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:6px;
  3457. top:6px;
  3458. width:9px;
  3459. height:9px;
  3460. display:flex;
  3461. transition:none;
  3462. }
  3463. #u7470 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u7470_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:9px;
  3476. height:9px;
  3477. }
  3478. #u7470_img.selected {
  3479. }
  3480. #u7470.selected {
  3481. }
  3482. #u7470_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u7471_div {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:58px;
  3494. height:20px;
  3495. background:inherit;
  3496. background-color:rgba(255, 255, 255, 0);
  3497. border-radius:0px;
  3498. filter:drop-shadow(none);
  3499. transition:none;
  3500. }
  3501. #u7471 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:22px;
  3505. top:0px;
  3506. width:58px;
  3507. height:20px;
  3508. display:flex;
  3509. transition:none;
  3510. transform-origin:50% 50%;
  3511. }
  3512. #u7471 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 3px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u7471_text {
  3520. border-width:0px;
  3521. white-space:nowrap;
  3522. text-transform:none;
  3523. }
  3524. #u7469_children {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:0px;
  3530. height:0px;
  3531. }
  3532. #u7472 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:20px;
  3536. top:20px;
  3537. width:93px;
  3538. height:20px;
  3539. transition:none;
  3540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. }
  3544. #u7473_div {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:71px;
  3550. height:20px;
  3551. background:inherit;
  3552. background-color:rgba(255, 255, 255, 0);
  3553. border-radius:0px;
  3554. filter:drop-shadow(none);
  3555. transition:none;
  3556. }
  3557. #u7473 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:22px;
  3561. top:0px;
  3562. width:71px;
  3563. height:20px;
  3564. display:flex;
  3565. transition:none;
  3566. transform-origin:50% 50%;
  3567. }
  3568. #u7473 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 3px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u7473_text {
  3576. border-width:0px;
  3577. white-space:nowrap;
  3578. text-transform:none;
  3579. }
  3580. #u7474 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:20px;
  3584. top:40px;
  3585. width:93px;
  3586. height:20px;
  3587. transition:none;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. }
  3592. #u7475_div {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:71px;
  3598. height:20px;
  3599. background:inherit;
  3600. background-color:rgba(255, 255, 255, 0);
  3601. border-radius:0px;
  3602. filter:drop-shadow(none);
  3603. transition:none;
  3604. }
  3605. #u7475 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:22px;
  3609. top:0px;
  3610. width:71px;
  3611. height:20px;
  3612. display:flex;
  3613. transition:none;
  3614. transform-origin:50% 50%;
  3615. }
  3616. #u7475 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:2px 2px 2px 3px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u7475_text {
  3624. border-width:0px;
  3625. white-space:nowrap;
  3626. text-transform:none;
  3627. }
  3628. #u7476 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:20px;
  3632. top:60px;
  3633. width:41px;
  3634. height:20px;
  3635. transition:none;
  3636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. }
  3640. #u7477_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:19px;
  3646. height:20px;
  3647. background:inherit;
  3648. background-color:rgba(255, 255, 255, 0);
  3649. border-radius:0px;
  3650. filter:drop-shadow(none);
  3651. transition:none;
  3652. }
  3653. #u7477 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:22px;
  3657. top:0px;
  3658. width:19px;
  3659. height:20px;
  3660. display:flex;
  3661. transition:none;
  3662. transform-origin:50% 50%;
  3663. }
  3664. #u7477 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 3px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u7477_text {
  3672. border-width:0px;
  3673. white-space:nowrap;
  3674. text-transform:none;
  3675. }
  3676. #u7478_div {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:29px;
  3682. height:50px;
  3683. background:inherit;
  3684. background-color:rgba(255, 255, 255, 0);
  3685. border-left:0px;
  3686. border-top:0px;
  3687. border-right:0px;
  3688. border-radius:0px;
  3689. border-bottom-right-radius:0px;
  3690. border-bottom-left-radius:0px;
  3691. filter:drop-shadow(none);
  3692. transition:none;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:14px;
  3697. color:#1890FF;
  3698. }
  3699. #u7478 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:561px;
  3703. top:280px;
  3704. width:29px;
  3705. height:50px;
  3706. display:flex;
  3707. transition:none;
  3708. transform-origin:50% 50%;
  3709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:14px;
  3713. color:#1890FF;
  3714. }
  3715. #u7478 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:0px 0px 0px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u7478_text {
  3723. border-width:0px;
  3724. white-space:nowrap;
  3725. text-transform:none;
  3726. }
  3727. #u7479 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:605px;
  3731. top:291px;
  3732. width:1px;
  3733. height:897px;
  3734. display:flex;
  3735. transition:none;
  3736. }
  3737. #u7479 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 2px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u7479_img {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:0px;
  3749. width:2px;
  3750. height:898px;
  3751. }
  3752. #u7479_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u7480_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:229px;
  3764. height:50px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 0);
  3767. border-left:0px;
  3768. border-top:0px;
  3769. border-right:0px;
  3770. border-radius:0px;
  3771. border-bottom-right-radius:0px;
  3772. border-bottom-left-radius:0px;
  3773. filter:drop-shadow(none);
  3774. transition:none;
  3775. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3776. font-weight:500;
  3777. font-style:normal;
  3778. font-size:18px;
  3779. }
  3780. #u7480 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:646px;
  3784. top:292px;
  3785. width:229px;
  3786. height:50px;
  3787. display:flex;
  3788. transition:none;
  3789. transform-origin:50% 50%;
  3790. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3791. font-weight:500;
  3792. font-style:normal;
  3793. font-size:18px;
  3794. }
  3795. #u7480 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:0px 0px 0px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u7480_text {
  3803. border-width:0px;
  3804. white-space:nowrap;
  3805. text-transform:none;
  3806. }
  3807. #u7481_div {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:71px;
  3813. height:50px;
  3814. background:inherit;
  3815. background-color:rgba(255, 255, 255, 0);
  3816. border-left:0px;
  3817. border-top:0px;
  3818. border-right:0px;
  3819. border-radius:0px;
  3820. border-bottom-right-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. filter:drop-shadow(none);
  3823. transition:none;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:14px;
  3828. }
  3829. #u7481 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:656px;
  3833. top:352px;
  3834. width:71px;
  3835. height:50px;
  3836. display:flex;
  3837. transition:none;
  3838. transform-origin:50% 50%;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:14px;
  3843. }
  3844. #u7481 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:0px 0px 0px 0px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u7481_text {
  3852. border-width:0px;
  3853. white-space:nowrap;
  3854. text-transform:none;
  3855. }
  3856. #u7482_div {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:71px;
  3862. height:50px;
  3863. background:inherit;
  3864. background-color:rgba(255, 255, 255, 0);
  3865. border-left:0px;
  3866. border-top:0px;
  3867. border-right:0px;
  3868. border-radius:0px;
  3869. border-bottom-right-radius:0px;
  3870. border-bottom-left-radius:0px;
  3871. filter:drop-shadow(none);
  3872. transition:none;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:14px;
  3877. }
  3878. #u7482 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:989px;
  3882. top:352px;
  3883. width:71px;
  3884. height:50px;
  3885. display:flex;
  3886. transition:none;
  3887. transform-origin:50% 50%;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:14px;
  3892. }
  3893. #u7482 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:0px 0px 0px 0px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u7482_text {
  3901. border-width:0px;
  3902. white-space:nowrap;
  3903. text-transform:none;
  3904. }
  3905. #u7483_div {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:71px;
  3911. height:50px;
  3912. background:inherit;
  3913. background-color:rgba(255, 255, 255, 0);
  3914. border-left:0px;
  3915. border-top:0px;
  3916. border-right:0px;
  3917. border-radius:0px;
  3918. border-bottom-right-radius:0px;
  3919. border-bottom-left-radius:0px;
  3920. filter:drop-shadow(none);
  3921. transition:none;
  3922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:14px;
  3926. }
  3927. #u7483 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:1359px;
  3931. top:352px;
  3932. width:71px;
  3933. height:50px;
  3934. display:flex;
  3935. transition:none;
  3936. transform-origin:50% 50%;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:14px;
  3941. }
  3942. #u7483 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:0px 0px 0px 0px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u7483_text {
  3950. border-width:0px;
  3951. white-space:nowrap;
  3952. text-transform:none;
  3953. }
  3954. #u7484_div {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:29px;
  3960. height:20px;
  3961. background:inherit;
  3962. background-color:rgba(0, 191, 191, 1);
  3963. border-left:0px;
  3964. border-top:0px;
  3965. border-right:0px;
  3966. border-radius:0px;
  3967. border-bottom-right-radius:0px;
  3968. border-bottom-left-radius:0px;
  3969. filter:drop-shadow(none);
  3970. transition:none;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:14px;
  3975. color:#FFFFFF;
  3976. }
  3977. #u7484 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:897px;
  3981. top:306px;
  3982. width:29px;
  3983. height:20px;
  3984. display:flex;
  3985. transition:none;
  3986. transform-origin:50% 50%;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:14px;
  3991. color:#FFFFFF;
  3992. }
  3993. #u7484 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:0px 0px 0px 0px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u7484_text {
  4001. border-width:0px;
  4002. white-space:nowrap;
  4003. text-transform:none;
  4004. }
  4005. #u7485_div {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:0px;
  4009. top:0px;
  4010. width:43px;
  4011. height:50px;
  4012. background:inherit;
  4013. background-color:rgba(255, 255, 255, 0);
  4014. border-left:0px;
  4015. border-top:0px;
  4016. border-right:0px;
  4017. border-radius:0px;
  4018. border-bottom-right-radius:0px;
  4019. border-bottom-left-radius:0px;
  4020. filter:drop-shadow(none);
  4021. transition:none;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:14px;
  4026. }
  4027. #u7485 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:656px;
  4031. top:402px;
  4032. width:43px;
  4033. height:50px;
  4034. display:flex;
  4035. transition:none;
  4036. transform-origin:50% 50%;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:14px;
  4041. }
  4042. #u7485 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:0px 0px 0px 0px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u7485_text {
  4050. border-width:0px;
  4051. white-space:nowrap;
  4052. text-transform:none;
  4053. }
  4054. #u7486_div {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:99px;
  4060. height:50px;
  4061. background:inherit;
  4062. background-color:rgba(255, 255, 255, 0);
  4063. border-left:0px;
  4064. border-top:0px;
  4065. border-right:0px;
  4066. border-radius:0px;
  4067. border-bottom-right-radius:0px;
  4068. border-bottom-left-radius:0px;
  4069. filter:drop-shadow(none);
  4070. transition:none;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:14px;
  4075. }
  4076. #u7486 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:989px;
  4080. top:402px;
  4081. width:99px;
  4082. height:50px;
  4083. display:flex;
  4084. transition:none;
  4085. transform-origin:50% 50%;
  4086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. font-size:14px;
  4090. }
  4091. #u7486 .text {
  4092. position:absolute;
  4093. align-self:center;
  4094. padding:0px 0px 0px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u7486_text {
  4099. border-width:0px;
  4100. white-space:nowrap;
  4101. text-transform:none;
  4102. }
  4103. #u7487_div {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:79px;
  4109. height:30px;
  4110. background:inherit;
  4111. background-color:rgba(255, 255, 255, 1);
  4112. box-sizing:border-box;
  4113. border-width:1px;
  4114. border-style:solid;
  4115. border-color:rgba(170, 170, 170, 1);
  4116. border-radius:4px;
  4117. filter:drop-shadow(none);
  4118. transition:none;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:12px;
  4123. color:#555555;
  4124. }
  4125. #u7487 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:1479px;
  4129. top:306px;
  4130. width:79px;
  4131. height:30px;
  4132. display:flex;
  4133. transition:none;
  4134. transform-origin:50% 50%;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:12px;
  4139. color:#555555;
  4140. }
  4141. #u7487 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:5px 15px 5px 15px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u7487_text {
  4149. border-width:0px;
  4150. white-space:nowrap;
  4151. text-transform:none;
  4152. }
  4153. #u7488 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:0px;
  4159. height:0px;
  4160. }
  4161. #u7489_div {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:200px;
  4167. height:38px;
  4168. background:inherit;
  4169. background-color:rgba(255, 255, 255, 1);
  4170. box-sizing:border-box;
  4171. border-width:1px;
  4172. border-style:solid;
  4173. border-color:rgba(242, 242, 242, 1);
  4174. border-radius:4px;
  4175. filter:drop-shadow(none);
  4176. transition:none;
  4177. font-family:"Microsoft YaHei", sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:14px;
  4181. color:#CCCCCC;
  4182. text-align:left;
  4183. }
  4184. #u7489 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:353px;
  4188. top:286px;
  4189. width:200px;
  4190. height:38px;
  4191. display:flex;
  4192. transition:none;
  4193. transform-origin:50% 50%;
  4194. font-family:"Microsoft YaHei", sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:14px;
  4198. color:#CCCCCC;
  4199. text-align:left;
  4200. }
  4201. #u7489 .text {
  4202. position:absolute;
  4203. align-self:center;
  4204. padding:2px 8px 2px 8px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u7489_text {
  4209. border-width:0px;
  4210. word-wrap:break-word;
  4211. text-transform:none;
  4212. visibility:hidden;
  4213. }
  4214. #u7490_input {
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:140px;
  4219. height:31px;
  4220. padding:2px 2px 2px 2px;
  4221. font-family:"Microsoft YaHei", sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:14px;
  4225. letter-spacing:normal;
  4226. color:#000000;
  4227. vertical-align:none;
  4228. text-align:left;
  4229. text-transform:none;
  4230. background-color:transparent;
  4231. border-color:transparent;
  4232. }
  4233. #u7490_input.hint {
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:140px;
  4238. height:31px;
  4239. padding:2px 2px 2px 2px;
  4240. font-family:"Microsoft YaHei", sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:12px;
  4244. letter-spacing:normal;
  4245. color:#AAAAAA;
  4246. vertical-align:none;
  4247. text-align:left;
  4248. text-transform:none;
  4249. background-color:transparent;
  4250. border-color:transparent;
  4251. }
  4252. #u7490_input.disabled {
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:140px;
  4257. height:31px;
  4258. padding:2px 2px 2px 2px;
  4259. font-family:"Microsoft YaHei", sans-serif;
  4260. font-weight:400;
  4261. font-style:normal;
  4262. font-size:14px;
  4263. letter-spacing:normal;
  4264. color:#000000;
  4265. vertical-align:none;
  4266. text-align:left;
  4267. text-transform:none;
  4268. background-color:transparent;
  4269. border-color:transparent;
  4270. }
  4271. #u7490_input.hint.disabled {
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:140px;
  4276. height:31px;
  4277. padding:2px 2px 2px 2px;
  4278. font-family:"Microsoft YaHei", sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. letter-spacing:normal;
  4283. color:#AAAAAA;
  4284. vertical-align:none;
  4285. text-align:left;
  4286. text-transform:none;
  4287. background-color:transparent;
  4288. border-color:transparent;
  4289. }
  4290. #u7490_div {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:140px;
  4296. height:31px;
  4297. background:inherit;
  4298. background-color:rgba(255, 255, 255, 1);
  4299. border-radius:0px;
  4300. filter:drop-shadow(none);
  4301. transition:none;
  4302. font-family:"Microsoft YaHei", sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. font-size:14px;
  4306. }
  4307. #u7490 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:361px;
  4311. top:287px;
  4312. width:140px;
  4313. height:31px;
  4314. display:flex;
  4315. transition:none;
  4316. transform-origin:50% 50%;
  4317. font-family:"Microsoft YaHei", sans-serif;
  4318. font-weight:400;
  4319. font-style:normal;
  4320. font-size:14px;
  4321. }
  4322. #u7490 .text {
  4323. position:absolute;
  4324. align-self:center;
  4325. padding:2px 2px 2px 2px;
  4326. box-sizing:border-box;
  4327. width:100%;
  4328. }
  4329. #u7490_div.hint {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:140px;
  4335. height:31px;
  4336. background:inherit;
  4337. background-color:rgba(255, 255, 255, 1);
  4338. border-radius:0px;
  4339. filter:drop-shadow(none);
  4340. transition:none;
  4341. font-family:"Microsoft YaHei", sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. }
  4346. #u7490.hint {
  4347. }
  4348. #u7490_div.disabled {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:140px;
  4354. height:31px;
  4355. background:inherit;
  4356. background-color:rgba(240, 240, 240, 1);
  4357. border-radius:0px;
  4358. filter:drop-shadow(none);
  4359. transition:none;
  4360. font-family:"Microsoft YaHei", sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:14px;
  4364. }
  4365. #u7490.disabled {
  4366. }
  4367. #u7490_div.hint.disabled {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:140px;
  4373. height:31px;
  4374. background:inherit;
  4375. background-color:rgba(240, 240, 240, 1);
  4376. border-radius:0px;
  4377. filter:drop-shadow(none);
  4378. transition:none;
  4379. font-family:"Microsoft YaHei", sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. }
  4384. #u7490.hint.disabled {
  4385. }
  4386. #u7491 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:528px;
  4390. top:298px;
  4391. width:14px;
  4392. height:14px;
  4393. display:flex;
  4394. transition:none;
  4395. }
  4396. #u7491 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 2px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u7491_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:14px;
  4409. height:14px;
  4410. }
  4411. #u7491_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. visibility:hidden;
  4416. }
  4417. #u7492_input {
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:237px;
  4422. height:44px;
  4423. padding:2px 2px 2px 2px;
  4424. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4425. font-weight:700;
  4426. font-style:normal;
  4427. font-size:18px;
  4428. letter-spacing:normal;
  4429. color:#333333;
  4430. vertical-align:none;
  4431. text-align:left;
  4432. text-transform:none;
  4433. background-color:transparent;
  4434. border-color:transparent;
  4435. }
  4436. #u7492_input.disabled {
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:237px;
  4441. height:44px;
  4442. padding:2px 2px 2px 2px;
  4443. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4444. font-weight:700;
  4445. font-style:normal;
  4446. font-size:18px;
  4447. letter-spacing:normal;
  4448. color:#333333;
  4449. vertical-align:none;
  4450. text-align:left;
  4451. text-transform:none;
  4452. background-color:transparent;
  4453. border-color:transparent;
  4454. }
  4455. #u7492_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:237px;
  4461. height:44px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 1);
  4464. border-radius:0px;
  4465. filter:drop-shadow(none);
  4466. transition:none;
  4467. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4468. font-weight:700;
  4469. font-style:normal;
  4470. font-size:18px;
  4471. color:#333333;
  4472. }
  4473. #u7492 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:357px;
  4477. top:100px;
  4478. width:237px;
  4479. height:44px;
  4480. display:flex;
  4481. transition:none;
  4482. transform-origin:50% 50%;
  4483. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4484. font-weight:700;
  4485. font-style:normal;
  4486. font-size:18px;
  4487. color:#333333;
  4488. }
  4489. #u7492 .text {
  4490. position:absolute;
  4491. align-self:flex-start;
  4492. padding:2px 2px 2px 2px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u7492_div.disabled {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:237px;
  4502. height:44px;
  4503. background:inherit;
  4504. background-color:rgba(240, 240, 240, 1);
  4505. border-radius:0px;
  4506. filter:drop-shadow(none);
  4507. transition:none;
  4508. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4509. font-weight:700;
  4510. font-style:normal;
  4511. font-size:18px;
  4512. color:#333333;
  4513. }
  4514. #u7492.disabled {
  4515. }
  4516. .u7492_input_option {
  4517. font-weight:700;
  4518. font-style:normal;
  4519. font-size:18px;
  4520. }
  4521. #u7493_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:25px;
  4527. height:30px;
  4528. background:inherit;
  4529. background-color:rgba(255, 255, 255, 0);
  4530. border-radius:0px;
  4531. filter:drop-shadow(none);
  4532. transition:none;
  4533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:12px;
  4537. color:#3399FF;
  4538. line-height:30px;
  4539. }
  4540. #u7493 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:353px;
  4544. top:334px;
  4545. width:25px;
  4546. height:30px;
  4547. display:flex;
  4548. transition:none;
  4549. transform-origin:50% 50%;
  4550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:12px;
  4554. color:#3399FF;
  4555. line-height:30px;
  4556. }
  4557. #u7493 .text {
  4558. position:absolute;
  4559. align-self:flex-start;
  4560. padding:0px 0px 0px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u7493_text {
  4565. border-width:0px;
  4566. white-space:nowrap;
  4567. text-transform:none;
  4568. }
  4569. #u7494_div {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:25px;
  4575. height:30px;
  4576. background:inherit;
  4577. background-color:rgba(255, 255, 255, 0);
  4578. border-radius:0px;
  4579. filter:drop-shadow(none);
  4580. transition:none;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:12px;
  4585. color:#7F7F7F;
  4586. line-height:30px;
  4587. }
  4588. #u7494 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:390px;
  4592. top:334px;
  4593. width:25px;
  4594. height:30px;
  4595. display:flex;
  4596. transition:none;
  4597. transform-origin:50% 50%;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:12px;
  4602. color:#7F7F7F;
  4603. line-height:30px;
  4604. }
  4605. #u7494 .text {
  4606. position:absolute;
  4607. align-self:flex-start;
  4608. padding:0px 0px 0px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u7494_text {
  4613. border-width:0px;
  4614. white-space:nowrap;
  4615. text-transform:none;
  4616. }
  4617. #u7495_div {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:25px;
  4623. height:30px;
  4624. background:inherit;
  4625. background-color:rgba(255, 255, 255, 0);
  4626. border-radius:0px;
  4627. filter:drop-shadow(none);
  4628. transition:none;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:#7F7F7F;
  4634. line-height:30px;
  4635. }
  4636. #u7495 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:426px;
  4640. top:334px;
  4641. width:25px;
  4642. height:30px;
  4643. display:flex;
  4644. transition:none;
  4645. transform-origin:50% 50%;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:12px;
  4650. color:#7F7F7F;
  4651. line-height:30px;
  4652. }
  4653. #u7495 .text {
  4654. position:absolute;
  4655. align-self:flex-start;
  4656. padding:0px 0px 0px 0px;
  4657. box-sizing:border-box;
  4658. width:100%;
  4659. }
  4660. #u7495_text {
  4661. border-width:0px;
  4662. white-space:nowrap;
  4663. text-transform:none;
  4664. }
  4665. #u7496_div {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:25px;
  4671. height:30px;
  4672. background:inherit;
  4673. background-color:rgba(255, 255, 255, 0);
  4674. border-radius:0px;
  4675. filter:drop-shadow(none);
  4676. transition:none;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#7F7F7F;
  4682. line-height:30px;
  4683. }
  4684. #u7496 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:463px;
  4688. top:334px;
  4689. width:25px;
  4690. height:30px;
  4691. display:flex;
  4692. transition:none;
  4693. transform-origin:50% 50%;
  4694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:12px;
  4698. color:#7F7F7F;
  4699. line-height:30px;
  4700. }
  4701. #u7496 .text {
  4702. position:absolute;
  4703. align-self:flex-start;
  4704. padding:0px 0px 0px 0px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u7496_text {
  4709. border-width:0px;
  4710. white-space:nowrap;
  4711. text-transform:none;
  4712. }
  4713. #u7497 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:120px;
  4717. top:50px;
  4718. width:200px;
  4719. height:1190px;
  4720. }
  4721. #u7498 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:0px;
  4727. height:0px;
  4728. }
  4729. #u7499_div {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:200px;
  4735. height:1190px;
  4736. background:inherit;
  4737. background-color:rgba(255, 255, 255, 1);
  4738. border-radius:0px;
  4739. filter:drop-shadow(none);
  4740. transition:none;
  4741. }
  4742. #u7499 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:200px;
  4748. height:1190px;
  4749. display:flex;
  4750. transition:none;
  4751. transform-origin:50% 50%;
  4752. }
  4753. #u7499 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 2px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u7499_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u7500_div {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:200px;
  4772. height:60px;
  4773. background:inherit;
  4774. background-color:rgba(224, 231, 247, 1);
  4775. border-radius:0px;
  4776. filter:drop-shadow(none);
  4777. transition:none;
  4778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4779. font-weight:500;
  4780. font-style:normal;
  4781. font-size:18px;
  4782. }
  4783. #u7500 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:200px;
  4789. height:60px;
  4790. display:flex;
  4791. transition:none;
  4792. transform-origin:50% 50%;
  4793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4794. font-weight:500;
  4795. font-style:normal;
  4796. font-size:18px;
  4797. }
  4798. #u7500 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:0px 0px 0px 20px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u7500_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. }
  4810. #u7501_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:65px;
  4816. height:22px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 0);
  4819. border-radius:0px;
  4820. filter:drop-shadow(none);
  4821. transition:none;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:16px;
  4826. }
  4827. #u7501 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:27px;
  4831. top:117px;
  4832. width:65px;
  4833. height:22px;
  4834. display:flex;
  4835. transition:none;
  4836. transform-origin:50% 50%;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:16px;
  4841. }
  4842. #u7501 .text {
  4843. position:absolute;
  4844. align-self:flex-start;
  4845. padding:0px 0px 0px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u7501_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u7502_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:49px;
  4860. height:17px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border-radius:0px;
  4864. filter:drop-shadow(none);
  4865. transition:none;
  4866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:12px;
  4870. color:#AAAAAA;
  4871. }
  4872. #u7502 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:27px;
  4876. top:80px;
  4877. width:49px;
  4878. height:17px;
  4879. display:flex;
  4880. transition:none;
  4881. transform-origin:50% 50%;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#AAAAAA;
  4887. }
  4888. #u7502 .text {
  4889. position:absolute;
  4890. align-self:flex-start;
  4891. padding:0px 0px 0px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u7502_text {
  4896. border-width:0px;
  4897. white-space:nowrap;
  4898. text-transform:none;
  4899. }
  4900. #u7503_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:65px;
  4906. height:22px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 0);
  4909. border-radius:0px;
  4910. filter:drop-shadow(none);
  4911. transition:none;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:16px;
  4916. }
  4917. #u7503 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:27px;
  4921. top:224px;
  4922. width:65px;
  4923. height:22px;
  4924. display:flex;
  4925. transition:none;
  4926. transform-origin:50% 50%;
  4927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:16px;
  4931. }
  4932. #u7503 .text {
  4933. position:absolute;
  4934. align-self:flex-start;
  4935. padding:0px 0px 0px 0px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u7503_text {
  4940. border-width:0px;
  4941. white-space:nowrap;
  4942. text-transform:none;
  4943. }
  4944. #u7504_div {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:49px;
  4950. height:17px;
  4951. background:inherit;
  4952. background-color:rgba(255, 255, 255, 0);
  4953. border-radius:0px;
  4954. filter:drop-shadow(none);
  4955. transition:none;
  4956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. font-size:12px;
  4960. color:#AAAAAA;
  4961. }
  4962. #u7504 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:27px;
  4966. top:188px;
  4967. width:49px;
  4968. height:17px;
  4969. display:flex;
  4970. transition:none;
  4971. transform-origin:50% 50%;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:12px;
  4976. color:#AAAAAA;
  4977. }
  4978. #u7504 .text {
  4979. position:absolute;
  4980. align-self:flex-start;
  4981. padding:0px 0px 0px 0px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u7504_text {
  4986. border-width:0px;
  4987. white-space:nowrap;
  4988. text-transform:none;
  4989. }
  4990. #u7505 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:163px;
  4995. width:200px;
  4996. height:1px;
  4997. display:flex;
  4998. transition:none;
  4999. }
  5000. #u7505 .text {
  5001. position:absolute;
  5002. align-self:center;
  5003. padding:2px 2px 2px 2px;
  5004. box-sizing:border-box;
  5005. width:100%;
  5006. }
  5007. #u7505_img {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:201px;
  5013. height:2px;
  5014. }
  5015. #u7505_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. visibility:hidden;
  5020. }
  5021. #u7506_div {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:65px;
  5027. height:22px;
  5028. background:inherit;
  5029. background-color:rgba(255, 255, 255, 0);
  5030. border-radius:0px;
  5031. filter:drop-shadow(none);
  5032. transition:none;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:16px;
  5037. }
  5038. #u7506 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:27px;
  5042. top:266px;
  5043. width:65px;
  5044. height:22px;
  5045. display:flex;
  5046. transition:none;
  5047. transform-origin:50% 50%;
  5048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:16px;
  5052. }
  5053. #u7506 .text {
  5054. position:absolute;
  5055. align-self:flex-start;
  5056. padding:0px 0px 0px 0px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u7506_text {
  5061. border-width:0px;
  5062. white-space:nowrap;
  5063. text-transform:none;
  5064. }
  5065. #u7507_div {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:29px;
  5071. height:20px;
  5072. background:inherit;
  5073. background-color:rgba(255, 255, 255, 0);
  5074. border-left:0px;
  5075. border-top:0px;
  5076. border-right:0px;
  5077. border-radius:0px;
  5078. border-bottom-right-radius:0px;
  5079. border-bottom-left-radius:0px;
  5080. filter:drop-shadow(none);
  5081. transition:none;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:14px;
  5086. }
  5087. #u7507 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:657px;
  5091. top:477px;
  5092. width:29px;
  5093. height:20px;
  5094. display:flex;
  5095. transition:none;
  5096. transform-origin:50% 50%;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:14px;
  5101. }
  5102. #u7507 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:0px 0px 0px 0px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u7507_text {
  5110. border-width:0px;
  5111. white-space:nowrap;
  5112. text-transform:none;
  5113. }
  5114. #u7508 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:0px;
  5120. height:0px;
  5121. }
  5122. #u7509_div {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:113px;
  5128. height:30px;
  5129. background:inherit;
  5130. background-color:rgba(255, 255, 255, 1);
  5131. box-sizing:border-box;
  5132. border-width:1px;
  5133. border-style:solid;
  5134. border-color:rgba(215, 215, 215, 1);
  5135. border-radius:4px;
  5136. filter:drop-shadow(none);
  5137. transition:none;
  5138. font-size:14px;
  5139. }
  5140. #u7509 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:692px;
  5144. top:472px;
  5145. width:113px;
  5146. height:30px;
  5147. display:flex;
  5148. transition:none;
  5149. transform-origin:50% 50%;
  5150. font-size:14px;
  5151. }
  5152. #u7509 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 2px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u7509_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. visibility:hidden;
  5164. }
  5165. #u7510_input {
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:108px;
  5170. height:23px;
  5171. padding:2px 2px 2px 2px;
  5172. font-family:'ArialMT', 'Arial', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:14px;
  5176. letter-spacing:normal;
  5177. color:#AAAAAA;
  5178. vertical-align:none;
  5179. text-align:left;
  5180. text-transform:none;
  5181. background-color:transparent;
  5182. border-color:transparent;
  5183. }
  5184. #u7510_input.disabled {
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:108px;
  5189. height:23px;
  5190. padding:2px 2px 2px 2px;
  5191. font-family:'ArialMT', 'Arial', sans-serif;
  5192. font-weight:400;
  5193. font-style:normal;
  5194. font-size:14px;
  5195. letter-spacing:normal;
  5196. color:#AAAAAA;
  5197. vertical-align:none;
  5198. text-align:left;
  5199. text-transform:none;
  5200. background-color:transparent;
  5201. border-color:transparent;
  5202. }
  5203. #u7510_div {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:108px;
  5209. height:23px;
  5210. background:inherit;
  5211. background-color:rgba(255, 255, 255, 1);
  5212. border-radius:0px;
  5213. filter:drop-shadow(none);
  5214. transition:none;
  5215. font-size:14px;
  5216. color:#AAAAAA;
  5217. }
  5218. #u7510 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:695px;
  5222. top:474px;
  5223. width:108px;
  5224. height:23px;
  5225. display:flex;
  5226. transition:none;
  5227. transform-origin:50% 50%;
  5228. font-size:14px;
  5229. color:#AAAAAA;
  5230. }
  5231. #u7510 .text {
  5232. position:absolute;
  5233. align-self:flex-start;
  5234. padding:2px 2px 2px 2px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u7510_div.disabled {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:108px;
  5244. height:23px;
  5245. background:inherit;
  5246. background-color:rgba(240, 240, 240, 1);
  5247. border-radius:0px;
  5248. filter:drop-shadow(none);
  5249. transition:none;
  5250. font-size:14px;
  5251. color:#AAAAAA;
  5252. }
  5253. #u7510.disabled {
  5254. }
  5255. .u7510_input_option {
  5256. font-size:14px;
  5257. }
  5258. #u7511_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:29px;
  5264. height:20px;
  5265. background:inherit;
  5266. background-color:rgba(255, 255, 255, 0);
  5267. border-left:0px;
  5268. border-top:0px;
  5269. border-right:0px;
  5270. border-radius:0px;
  5271. border-bottom-right-radius:0px;
  5272. border-bottom-left-radius:0px;
  5273. filter:drop-shadow(none);
  5274. transition:none;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:14px;
  5279. }
  5280. #u7511 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:811px;
  5284. top:477px;
  5285. width:29px;
  5286. height:20px;
  5287. display:flex;
  5288. transition:none;
  5289. transform-origin:50% 50%;
  5290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:14px;
  5294. }
  5295. #u7511 .text {
  5296. position:absolute;
  5297. align-self:center;
  5298. padding:0px 0px 0px 0px;
  5299. box-sizing:border-box;
  5300. width:100%;
  5301. }
  5302. #u7511_text {
  5303. border-width:0px;
  5304. white-space:nowrap;
  5305. text-transform:none;
  5306. }
  5307. #u7512 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:0px;
  5313. height:0px;
  5314. }
  5315. #u7513_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:113px;
  5321. height:30px;
  5322. background:inherit;
  5323. background-color:rgba(255, 255, 255, 1);
  5324. box-sizing:border-box;
  5325. border-width:1px;
  5326. border-style:solid;
  5327. border-color:rgba(215, 215, 215, 1);
  5328. border-radius:4px;
  5329. filter:drop-shadow(none);
  5330. transition:none;
  5331. font-size:14px;
  5332. }
  5333. #u7513 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:846px;
  5337. top:472px;
  5338. width:113px;
  5339. height:30px;
  5340. display:flex;
  5341. transition:none;
  5342. transform-origin:50% 50%;
  5343. font-size:14px;
  5344. }
  5345. #u7513 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:2px 2px 2px 2px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u7513_text {
  5353. border-width:0px;
  5354. word-wrap:break-word;
  5355. text-transform:none;
  5356. visibility:hidden;
  5357. }
  5358. #u7514_input {
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:108px;
  5363. height:23px;
  5364. padding:2px 2px 2px 2px;
  5365. font-family:'ArialMT', 'Arial', sans-serif;
  5366. font-weight:400;
  5367. font-style:normal;
  5368. font-size:14px;
  5369. letter-spacing:normal;
  5370. color:#AAAAAA;
  5371. vertical-align:none;
  5372. text-align:left;
  5373. text-transform:none;
  5374. background-color:transparent;
  5375. border-color:transparent;
  5376. }
  5377. #u7514_input.disabled {
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:108px;
  5382. height:23px;
  5383. padding:2px 2px 2px 2px;
  5384. font-family:'ArialMT', 'Arial', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. font-size:14px;
  5388. letter-spacing:normal;
  5389. color:#AAAAAA;
  5390. vertical-align:none;
  5391. text-align:left;
  5392. text-transform:none;
  5393. background-color:transparent;
  5394. border-color:transparent;
  5395. }
  5396. #u7514_div {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:108px;
  5402. height:23px;
  5403. background:inherit;
  5404. background-color:rgba(255, 255, 255, 1);
  5405. border-radius:0px;
  5406. filter:drop-shadow(none);
  5407. transition:none;
  5408. font-size:14px;
  5409. color:#AAAAAA;
  5410. }
  5411. #u7514 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:849px;
  5415. top:474px;
  5416. width:108px;
  5417. height:23px;
  5418. display:flex;
  5419. transition:none;
  5420. transform-origin:50% 50%;
  5421. font-size:14px;
  5422. color:#AAAAAA;
  5423. }
  5424. #u7514 .text {
  5425. position:absolute;
  5426. align-self:flex-start;
  5427. padding:2px 2px 2px 2px;
  5428. box-sizing:border-box;
  5429. width:100%;
  5430. }
  5431. #u7514_div.disabled {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:108px;
  5437. height:23px;
  5438. background:inherit;
  5439. background-color:rgba(240, 240, 240, 1);
  5440. border-radius:0px;
  5441. filter:drop-shadow(none);
  5442. transition:none;
  5443. font-size:14px;
  5444. color:#AAAAAA;
  5445. }
  5446. #u7514.disabled {
  5447. }
  5448. .u7514_input_option {
  5449. font-size:14px;
  5450. }
  5451. #u7515 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:0px;
  5457. height:0px;
  5458. }
  5459. #u7516_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:113px;
  5465. height:30px;
  5466. background:inherit;
  5467. background-color:rgba(255, 255, 255, 1);
  5468. box-sizing:border-box;
  5469. border-width:1px;
  5470. border-style:solid;
  5471. border-color:rgba(215, 215, 215, 1);
  5472. border-radius:4px;
  5473. filter:drop-shadow(none);
  5474. transition:none;
  5475. font-size:14px;
  5476. }
  5477. #u7516 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:964px;
  5481. top:474px;
  5482. width:113px;
  5483. height:30px;
  5484. display:flex;
  5485. transition:none;
  5486. transform-origin:50% 50%;
  5487. font-size:14px;
  5488. }
  5489. #u7516 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u7516_text {
  5497. border-width:0px;
  5498. word-wrap:break-word;
  5499. text-transform:none;
  5500. visibility:hidden;
  5501. }
  5502. #u7517_input {
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:108px;
  5507. height:23px;
  5508. padding:2px 2px 2px 2px;
  5509. font-family:'ArialMT', 'Arial', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:14px;
  5513. letter-spacing:normal;
  5514. color:#AAAAAA;
  5515. vertical-align:none;
  5516. text-align:left;
  5517. text-transform:none;
  5518. background-color:transparent;
  5519. border-color:transparent;
  5520. }
  5521. #u7517_input.disabled {
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:108px;
  5526. height:23px;
  5527. padding:2px 2px 2px 2px;
  5528. font-family:'ArialMT', 'Arial', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:14px;
  5532. letter-spacing:normal;
  5533. color:#AAAAAA;
  5534. vertical-align:none;
  5535. text-align:left;
  5536. text-transform:none;
  5537. background-color:transparent;
  5538. border-color:transparent;
  5539. }
  5540. #u7517_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:108px;
  5546. height:23px;
  5547. background:inherit;
  5548. background-color:rgba(255, 255, 255, 1);
  5549. border-radius:0px;
  5550. filter:drop-shadow(none);
  5551. transition:none;
  5552. font-size:14px;
  5553. color:#AAAAAA;
  5554. }
  5555. #u7517 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:967px;
  5559. top:476px;
  5560. width:108px;
  5561. height:23px;
  5562. display:flex;
  5563. transition:none;
  5564. transform-origin:50% 50%;
  5565. font-size:14px;
  5566. color:#AAAAAA;
  5567. }
  5568. #u7517 .text {
  5569. position:absolute;
  5570. align-self:flex-start;
  5571. padding:2px 2px 2px 2px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u7517_div.disabled {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:108px;
  5581. height:23px;
  5582. background:inherit;
  5583. background-color:rgba(240, 240, 240, 1);
  5584. border-radius:0px;
  5585. filter:drop-shadow(none);
  5586. transition:none;
  5587. font-size:14px;
  5588. color:#AAAAAA;
  5589. }
  5590. #u7517.disabled {
  5591. }
  5592. .u7517_input_option {
  5593. font-size:14px;
  5594. }
  5595. #u7518_div {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:55px;
  5601. height:30px;
  5602. background:inherit;
  5603. background-color:rgba(24, 144, 255, 1);
  5604. border-radius:4px;
  5605. filter:drop-shadow(none);
  5606. transition:none;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:12px;
  5611. color:#FFFFFF;
  5612. }
  5613. #u7518 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:1084px;
  5617. top:474px;
  5618. width:55px;
  5619. height:30px;
  5620. display:flex;
  5621. transition:none;
  5622. transform-origin:50% 50%;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:12px;
  5627. color:#FFFFFF;
  5628. }
  5629. #u7518 .text {
  5630. position:absolute;
  5631. align-self:center;
  5632. padding:5px 15px 5px 15px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u7518_text {
  5637. border-width:0px;
  5638. white-space:nowrap;
  5639. text-transform:none;
  5640. }
  5641. #u7519_div {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:44px;
  5647. height:20px;
  5648. background:inherit;
  5649. background-color:rgba(24, 144, 255, 1);
  5650. border-radius:4px;
  5651. filter:drop-shadow(none);
  5652. transition:none;
  5653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:10px;
  5657. color:#FFFFFF;
  5658. }
  5659. #u7519 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:1408px;
  5663. top:474px;
  5664. width:44px;
  5665. height:20px;
  5666. display:flex;
  5667. transition:none;
  5668. transform-origin:50% 50%;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:10px;
  5673. color:#FFFFFF;
  5674. }
  5675. #u7519 .text {
  5676. position:absolute;
  5677. align-self:center;
  5678. padding:5px 0px 5px 0px;
  5679. box-sizing:border-box;
  5680. width:100%;
  5681. }
  5682. #u7519_text {
  5683. border-width:0px;
  5684. word-wrap:break-word;
  5685. text-transform:none;
  5686. }
  5687. #u7520_div {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:44px;
  5693. height:20px;
  5694. background:inherit;
  5695. background-color:rgba(24, 144, 255, 0);
  5696. border-radius:4px;
  5697. filter:drop-shadow(none);
  5698. transition:none;
  5699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:10px;
  5703. }
  5704. #u7520 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:1462px;
  5708. top:474px;
  5709. width:44px;
  5710. height:20px;
  5711. display:flex;
  5712. transition:none;
  5713. transform-origin:50% 50%;
  5714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:10px;
  5718. }
  5719. #u7520 .text {
  5720. position:absolute;
  5721. align-self:center;
  5722. padding:5px 0px 5px 0px;
  5723. box-sizing:border-box;
  5724. width:100%;
  5725. }
  5726. #u7520_text {
  5727. border-width:0px;
  5728. word-wrap:break-word;
  5729. text-transform:none;
  5730. }
  5731. #u7521_div {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:44px;
  5737. height:20px;
  5738. background:inherit;
  5739. background-color:rgba(24, 144, 255, 0);
  5740. border-radius:4px;
  5741. filter:drop-shadow(none);
  5742. transition:none;
  5743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:10px;
  5747. }
  5748. #u7521 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:1515px;
  5752. top:474px;
  5753. width:44px;
  5754. height:20px;
  5755. display:flex;
  5756. transition:none;
  5757. transform-origin:50% 50%;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:10px;
  5762. }
  5763. #u7521 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:5px 0px 5px 0px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u7521_text {
  5771. border-width:0px;
  5772. word-wrap:break-word;
  5773. text-transform:none;
  5774. }
  5775. #u7522_div {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:681px;
  5781. height:40px;
  5782. background:inherit;
  5783. background-color:rgba(255, 255, 255, 0);
  5784. border-left:0px;
  5785. border-top:0px;
  5786. border-right:0px;
  5787. border-radius:0px;
  5788. border-bottom-right-radius:0px;
  5789. border-bottom-left-radius:0px;
  5790. filter:drop-shadow(none);
  5791. transition:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. color:#D9001B;
  5797. }
  5798. #u7522 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:1620px;
  5802. top:464px;
  5803. width:681px;
  5804. height:40px;
  5805. display:flex;
  5806. transition:none;
  5807. transform-origin:50% 50%;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:14px;
  5812. color:#D9001B;
  5813. }
  5814. #u7522 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:0px 0px 0px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u7522_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u7523 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:1559px;
  5830. top:484px;
  5831. width:0px;
  5832. height:0px;
  5833. transition:none;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:12px;
  5838. color:#333333;
  5839. }
  5840. #u7523_seg0 {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:-5px;
  5845. width:66px;
  5846. height:10px;
  5847. }
  5848. #u7523_seg1 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:49px;
  5852. top:-10px;
  5853. width:20px;
  5854. height:20px;
  5855. }
  5856. #u7523_text {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:-20px;
  5860. top:-8px;
  5861. width:100px;
  5862. word-wrap:break-word;
  5863. text-transform:none;
  5864. visibility:hidden;
  5865. }
  5866. #u7524_div {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:602px;
  5872. height:20px;
  5873. background:inherit;
  5874. background-color:rgba(255, 255, 255, 0);
  5875. border-left:0px;
  5876. border-top:0px;
  5877. border-right:0px;
  5878. border-radius:0px;
  5879. border-bottom-right-radius:0px;
  5880. border-bottom-left-radius:0px;
  5881. filter:drop-shadow(none);
  5882. transition:none;
  5883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:14px;
  5887. color:#D9001B;
  5888. }
  5889. #u7524 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:850px;
  5893. top:552px;
  5894. width:602px;
  5895. height:20px;
  5896. display:flex;
  5897. transition:none;
  5898. transform-origin:50% 50%;
  5899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:14px;
  5903. color:#D9001B;
  5904. }
  5905. #u7524 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:0px 0px 0px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u7524_text {
  5913. border-width:0px;
  5914. white-space:nowrap;
  5915. text-transform:none;
  5916. }
  5917. #u7525_div {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:886px;
  5923. height:104px;
  5924. background:inherit;
  5925. background-color:rgba(255, 255, 255, 1);
  5926. border-radius:0px;
  5927. filter:drop-shadow(none);
  5928. transition:none;
  5929. }
  5930. #u7525 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:660px;
  5934. top:866px;
  5935. width:886px;
  5936. height:104px;
  5937. display:flex;
  5938. transition:none;
  5939. transform-origin:50% 50%;
  5940. }
  5941. #u7525 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:2px 2px 2px 2px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u7525_text {
  5949. border-width:0px;
  5950. word-wrap:break-word;
  5951. text-transform:none;
  5952. visibility:hidden;
  5953. }
  5954. #u7526 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:672px;
  5958. top:880px;
  5959. width:853px;
  5960. height:120px;
  5961. }
  5962. #u7527 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:284px;
  5968. height:30px;
  5969. display:flex;
  5970. transition:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. color:#FFFFFF;
  5975. }
  5976. #u7527 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:2px 2px 2px 2px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u7527_img {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:284px;
  5989. height:30px;
  5990. }
  5991. #u7527_text {
  5992. border-width:0px;
  5993. word-wrap:break-word;
  5994. text-transform:none;
  5995. }
  5996. #u7528 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:284px;
  6000. top:0px;
  6001. width:284px;
  6002. height:30px;
  6003. display:flex;
  6004. transition:none;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. color:#FFFFFF;
  6009. }
  6010. #u7528 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 2px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u7528_img {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:284px;
  6023. height:30px;
  6024. }
  6025. #u7528_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. }
  6030. #u7529 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:568px;
  6034. top:0px;
  6035. width:285px;
  6036. height:30px;
  6037. display:flex;
  6038. transition:none;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. color:#FFFFFF;
  6043. }
  6044. #u7529 .text {
  6045. position:absolute;
  6046. align-self:center;
  6047. padding:2px 2px 2px 2px;
  6048. box-sizing:border-box;
  6049. width:100%;
  6050. }
  6051. #u7529_img {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:285px;
  6057. height:30px;
  6058. }
  6059. #u7529_text {
  6060. border-width:0px;
  6061. word-wrap:break-word;
  6062. text-transform:none;
  6063. }
  6064. #u7530 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:30px;
  6069. width:284px;
  6070. height:30px;
  6071. display:flex;
  6072. transition:none;
  6073. }
  6074. #u7530 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 2px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u7530_img {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:284px;
  6087. height:30px;
  6088. }
  6089. #u7530_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. }
  6094. #u7531 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:284px;
  6098. top:30px;
  6099. width:284px;
  6100. height:30px;
  6101. display:flex;
  6102. transition:none;
  6103. }
  6104. #u7531 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 2px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u7531_img {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:284px;
  6117. height:30px;
  6118. }
  6119. #u7531_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. visibility:hidden;
  6124. }
  6125. #u7532 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:568px;
  6129. top:30px;
  6130. width:285px;
  6131. height:30px;
  6132. display:flex;
  6133. transition:none;
  6134. }
  6135. #u7532 .text {
  6136. position:absolute;
  6137. align-self:center;
  6138. padding:2px 2px 2px 2px;
  6139. box-sizing:border-box;
  6140. width:100%;
  6141. }
  6142. #u7532_img {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:285px;
  6148. height:30px;
  6149. }
  6150. #u7532_text {
  6151. border-width:0px;
  6152. word-wrap:break-word;
  6153. text-transform:none;
  6154. visibility:hidden;
  6155. }
  6156. #u7533 {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:60px;
  6161. width:284px;
  6162. height:30px;
  6163. display:flex;
  6164. transition:none;
  6165. }
  6166. #u7533 .text {
  6167. position:absolute;
  6168. align-self:center;
  6169. padding:2px 2px 2px 2px;
  6170. box-sizing:border-box;
  6171. width:100%;
  6172. }
  6173. #u7533_img {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:284px;
  6179. height:30px;
  6180. }
  6181. #u7533_text {
  6182. border-width:0px;
  6183. word-wrap:break-word;
  6184. text-transform:none;
  6185. }
  6186. #u7534 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:284px;
  6190. top:60px;
  6191. width:284px;
  6192. height:30px;
  6193. display:flex;
  6194. transition:none;
  6195. }
  6196. #u7534 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:2px 2px 2px 2px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u7534_img {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:284px;
  6209. height:30px;
  6210. }
  6211. #u7534_text {
  6212. border-width:0px;
  6213. word-wrap:break-word;
  6214. text-transform:none;
  6215. visibility:hidden;
  6216. }
  6217. #u7535 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:568px;
  6221. top:60px;
  6222. width:285px;
  6223. height:30px;
  6224. display:flex;
  6225. transition:none;
  6226. }
  6227. #u7535 .text {
  6228. position:absolute;
  6229. align-self:center;
  6230. padding:2px 2px 2px 2px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u7535_img {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:285px;
  6240. height:30px;
  6241. }
  6242. #u7535_text {
  6243. border-width:0px;
  6244. word-wrap:break-word;
  6245. text-transform:none;
  6246. visibility:hidden;
  6247. }
  6248. #u7536 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:90px;
  6253. width:284px;
  6254. height:30px;
  6255. display:flex;
  6256. transition:none;
  6257. }
  6258. #u7536 .text {
  6259. position:absolute;
  6260. align-self:center;
  6261. padding:2px 2px 2px 2px;
  6262. box-sizing:border-box;
  6263. width:100%;
  6264. }
  6265. #u7536_img {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:284px;
  6271. height:30px;
  6272. }
  6273. #u7536_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. }
  6278. #u7537 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:284px;
  6282. top:90px;
  6283. width:284px;
  6284. height:30px;
  6285. display:flex;
  6286. transition:none;
  6287. }
  6288. #u7537 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u7537_img {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:284px;
  6301. height:30px;
  6302. }
  6303. #u7537_text {
  6304. border-width:0px;
  6305. word-wrap:break-word;
  6306. text-transform:none;
  6307. visibility:hidden;
  6308. }
  6309. #u7538 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:568px;
  6313. top:90px;
  6314. width:285px;
  6315. height:30px;
  6316. display:flex;
  6317. transition:none;
  6318. }
  6319. #u7538 .text {
  6320. position:absolute;
  6321. align-self:center;
  6322. padding:2px 2px 2px 2px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u7538_img {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:285px;
  6332. height:30px;
  6333. }
  6334. #u7538_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u7539_div {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:371px;
  6346. height:20px;
  6347. background:inherit;
  6348. background-color:rgba(255, 255, 255, 0);
  6349. border-left:0px;
  6350. border-top:0px;
  6351. border-right:0px;
  6352. border-radius:0px;
  6353. border-bottom-right-radius:0px;
  6354. border-bottom-left-radius:0px;
  6355. filter:drop-shadow(none);
  6356. transition:none;
  6357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. font-size:14px;
  6361. color:#D9001B;
  6362. }
  6363. #u7539 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:692px;
  6367. top:1026px;
  6368. width:371px;
  6369. height:20px;
  6370. display:flex;
  6371. transition:none;
  6372. transform-origin:50% 50%;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. color:#D9001B;
  6378. }
  6379. #u7539 .text {
  6380. position:absolute;
  6381. align-self:center;
  6382. padding:0px 0px 0px 0px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u7539_text {
  6387. border-width:0px;
  6388. white-space:nowrap;
  6389. text-transform:none;
  6390. }