styles.css 133 KB

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