styles.css 121 KB

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