styles.css 238 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:-344px;
  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. #u70213_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. #u70213 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u70213 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u70213_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u70214_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. #u70214 {
  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. #u70214 .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. #u70214_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u70215_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. #u70215 {
  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. #u70215 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u70215_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u70216 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u70217_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u70217 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u70217 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u70217_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u70218_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. #u70218 {
  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. #u70218 .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. #u70218_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u70219_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. #u70219 {
  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. #u70219 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u70219_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u70220 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u70221_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u70221_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u70221_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u70221 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u70221 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u70221_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u70221.disabled {
  356. }
  357. .u70221_input_option {
  358. font-size:14px;
  359. }
  360. #u70222_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u70222 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u70222 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u70222_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u70223_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u70223 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u70223 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u70223_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u70224_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u70224 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u70224 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u70224_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u70225 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u70226_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u70226 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u70226 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u70226_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u70227_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u70227 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u70227 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u70227_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u70228 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u70229_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u70229 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u70229 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u70229_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u70230_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u70230 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u70230 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u70230_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u70231 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u70232_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u70232 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u70232 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u70232_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u70233_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u70233 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u70233 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u70233_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u70234 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u70235_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u70235 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u70235 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u70235_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u70236_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u70236 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u70236 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u70236_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u70237 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u70238_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u70238 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u70238 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u70238_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u70239_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u70239 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u70239 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u70239_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u70240 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u70241_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u70241 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u70241 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u70241_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u70242_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u70242 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u70242 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u70242_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u70243 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u70244_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u70244 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u70244 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u70244_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u70245_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u70245 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u70245 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u70245_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u70246 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u70247_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u70247 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u70247 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u70247_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u70248_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u70248 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u70248 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u70248_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u70249 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u70250_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u70250 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u70250 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u70250_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u70251_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u70251 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u70251 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u70251_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u70252 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u70253_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u70253 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u70253 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u70253_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u70254_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u70254 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u70254 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u70254_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u70255_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u70255 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u70255 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u70255_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u70256_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u70256 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u70256 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u70256_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u70257_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u70257 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u70257 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u70257_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u70258_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u70258 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u70258 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u70258_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u70259 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u70260_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u70260 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u70260 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u70260_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u70261_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u70261 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u70261 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u70261_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u70262 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u70263_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u70263 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u70263 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u70263_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u70264_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u70264 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u70264 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u70264_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u70265 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u70266_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:1381px;
  1652. height:1153px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:12px;
  1664. color:#FFFFFF;
  1665. text-align:left;
  1666. }
  1667. #u70266 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:-1944px;
  1671. top:449px;
  1672. width:1381px;
  1673. height:1153px;
  1674. display:flex;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:12px;
  1679. color:#FFFFFF;
  1680. text-align:left;
  1681. }
  1682. #u70266 .text {
  1683. position:absolute;
  1684. align-self:center;
  1685. padding:2px 2px 2px 50px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u70266_text {
  1690. border-width:0px;
  1691. word-wrap:break-word;
  1692. text-transform:none;
  1693. visibility:hidden;
  1694. }
  1695. #u70267_div {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:55px;
  1701. height:50px;
  1702. background:inherit;
  1703. background-color:rgba(255, 255, 255, 0);
  1704. border:none;
  1705. border-left:0px;
  1706. border-top:0px;
  1707. border-right:0px;
  1708. border-radius:0px;
  1709. border-bottom-right-radius:0px;
  1710. border-bottom-left-radius:0px;
  1711. -moz-box-shadow:none;
  1712. -webkit-box-shadow:none;
  1713. box-shadow:none;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:18px;
  1718. }
  1719. #u70267 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:-1925px;
  1723. top:449px;
  1724. width:55px;
  1725. height:50px;
  1726. display:flex;
  1727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1728. font-weight:400;
  1729. font-style:normal;
  1730. font-size:18px;
  1731. }
  1732. #u70267 .text {
  1733. position:absolute;
  1734. align-self:center;
  1735. padding:0px 0px 0px 0px;
  1736. box-sizing:border-box;
  1737. width:100%;
  1738. }
  1739. #u70267_text {
  1740. border-width:0px;
  1741. white-space:nowrap;
  1742. text-transform:none;
  1743. }
  1744. #u70268 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:0px;
  1750. height:0px;
  1751. }
  1752. #u70269_div {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:1340px;
  1758. height:180px;
  1759. background:inherit;
  1760. background-color:rgba(255, 255, 255, 1);
  1761. box-sizing:border-box;
  1762. border-width:1px;
  1763. border-style:solid;
  1764. border-color:rgba(215, 215, 215, 1);
  1765. border-radius:0px;
  1766. -moz-box-shadow:none;
  1767. -webkit-box-shadow:none;
  1768. box-shadow:none;
  1769. }
  1770. #u70269 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:-1924px;
  1774. top:741px;
  1775. width:1340px;
  1776. height:180px;
  1777. display:flex;
  1778. }
  1779. #u70269 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 2px 2px 2px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u70269_text {
  1787. border-width:0px;
  1788. word-wrap:break-word;
  1789. text-transform:none;
  1790. visibility:hidden;
  1791. }
  1792. #u70270_div {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:199px;
  1798. height:40px;
  1799. background:inherit;
  1800. background-color:rgba(255, 255, 255, 0);
  1801. border:none;
  1802. border-radius:0px;
  1803. -moz-box-shadow:none;
  1804. -webkit-box-shadow:none;
  1805. box-shadow:none;
  1806. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1807. font-weight:500;
  1808. font-style:normal;
  1809. font-size:18px;
  1810. line-height:40px;
  1811. }
  1812. #u70270 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:-1711px;
  1816. top:763px;
  1817. width:199px;
  1818. height:40px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1821. font-weight:500;
  1822. font-style:normal;
  1823. font-size:18px;
  1824. line-height:40px;
  1825. }
  1826. #u70270 .text {
  1827. position:absolute;
  1828. align-self:flex-start;
  1829. padding:0px 0px 0px 0px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u70270_text {
  1834. border-width:0px;
  1835. white-space:nowrap;
  1836. text-transform:none;
  1837. }
  1838. #u70271_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:60px;
  1844. height:30px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 0);
  1847. box-sizing:border-box;
  1848. border-width:1px;
  1849. border-style:solid;
  1850. border-color:rgba(41, 143, 255, 1);
  1851. border-radius:4px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. color:#298FFF;
  1860. text-align:center;
  1861. }
  1862. #u70271 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:-659px;
  1866. top:758px;
  1867. width:60px;
  1868. height:30px;
  1869. display:flex;
  1870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. font-size:12px;
  1874. color:#298FFF;
  1875. text-align:center;
  1876. }
  1877. #u70271 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:5px 0px 5px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u70271_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u70272_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:160px;
  1895. height:145px;
  1896. }
  1897. #u70272 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:-1901px;
  1901. top:758px;
  1902. width:160px;
  1903. height:145px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:24px;
  1909. color:rgba(170, 170, 170, 0.180392156862745);
  1910. }
  1911. #u70272 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u70272_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u70273_div {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:50px;
  1929. height:20px;
  1930. background:inherit;
  1931. background-color:rgba(170, 170, 170, 1);
  1932. border:none;
  1933. border-radius:29px;
  1934. -moz-box-shadow:none;
  1935. -webkit-box-shadow:none;
  1936. box-shadow:none;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#FFFFFF;
  1942. text-align:center;
  1943. }
  1944. #u70273 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:-1504px;
  1948. top:773px;
  1949. width:50px;
  1950. height:20px;
  1951. display:flex;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:12px;
  1956. color:#FFFFFF;
  1957. text-align:center;
  1958. }
  1959. #u70273 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 0px 2px 0px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u70273_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. }
  1971. #u70274_div {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:60px;
  1977. height:30px;
  1978. background:inherit;
  1979. background-color:rgba(255, 255, 255, 0);
  1980. box-sizing:border-box;
  1981. border-width:1px;
  1982. border-style:solid;
  1983. border-color:rgba(24, 144, 255, 1);
  1984. border-radius:3px;
  1985. -moz-box-shadow:none;
  1986. -webkit-box-shadow:none;
  1987. box-shadow:none;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:12px;
  1992. color:#1890FF;
  1993. text-align:center;
  1994. }
  1995. #u70274 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:-729px;
  1999. top:758px;
  2000. width:60px;
  2001. height:30px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:12px;
  2007. color:#1890FF;
  2008. text-align:center;
  2009. }
  2010. #u70274 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:5px 0px 5px 0px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u70274_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. }
  2022. #u70275_div {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:71px;
  2028. height:60px;
  2029. background:inherit;
  2030. background-color:rgba(255, 255, 255, 0);
  2031. border:none;
  2032. border-top:0px;
  2033. border-right:0px;
  2034. border-bottom:0px;
  2035. border-radius:0px;
  2036. border-top-left-radius:0px;
  2037. border-bottom-left-radius:0px;
  2038. -moz-box-shadow:none;
  2039. -webkit-box-shadow:none;
  2040. box-shadow:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:12px;
  2045. line-height:25px;
  2046. }
  2047. #u70275 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:-1711px;
  2051. top:813px;
  2052. width:71px;
  2053. height:60px;
  2054. display:flex;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:12px;
  2059. line-height:25px;
  2060. }
  2061. #u70275 .text {
  2062. position:absolute;
  2063. align-self:flex-start;
  2064. padding:5px 10px 5px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u70275_text {
  2069. border-width:0px;
  2070. white-space:nowrap;
  2071. text-transform:none;
  2072. }
  2073. #u70276_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:203px;
  2079. height:60px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 0);
  2082. border:none;
  2083. border-top:0px;
  2084. border-right:0px;
  2085. border-bottom:0px;
  2086. border-radius:0px;
  2087. border-top-left-radius:0px;
  2088. border-bottom-left-radius:0px;
  2089. -moz-box-shadow:none;
  2090. -webkit-box-shadow:none;
  2091. box-shadow:none;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. line-height:25px;
  2097. }
  2098. #u70276 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:-1630px;
  2102. top:813px;
  2103. width:203px;
  2104. height:60px;
  2105. display:flex;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. line-height:25px;
  2111. }
  2112. #u70276 .text {
  2113. position:absolute;
  2114. align-self:flex-start;
  2115. padding:5px 10px 5px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u70276_text {
  2120. border-width:0px;
  2121. white-space:nowrap;
  2122. text-transform:none;
  2123. }
  2124. #u70277_div {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:60px;
  2130. height:30px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 0);
  2133. box-sizing:border-box;
  2134. border-width:1px;
  2135. border-style:solid;
  2136. border-color:rgba(24, 144, 255, 1);
  2137. border-radius:3px;
  2138. -moz-box-shadow:none;
  2139. -webkit-box-shadow:none;
  2140. box-shadow:none;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#1890FF;
  2146. text-align:center;
  2147. }
  2148. #u70277 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:-799px;
  2152. top:758px;
  2153. width:60px;
  2154. height:30px;
  2155. display:flex;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:12px;
  2160. color:#1890FF;
  2161. text-align:center;
  2162. }
  2163. #u70277 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:5px 0px 5px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u70277_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u70278_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:61px;
  2181. height:30px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 0);
  2184. border:none;
  2185. border-top:0px;
  2186. border-right:0px;
  2187. border-bottom:0px;
  2188. border-radius:0px;
  2189. border-top-left-radius:0px;
  2190. border-bottom-left-radius:0px;
  2191. -moz-box-shadow:none;
  2192. -webkit-box-shadow:none;
  2193. box-shadow:none;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:14px;
  2198. }
  2199. #u70278 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:-917px;
  2203. top:824px;
  2204. width:61px;
  2205. height:30px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:14px;
  2211. }
  2212. #u70278 .text {
  2213. position:absolute;
  2214. align-self:center;
  2215. padding:5px 10px 5px 0px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u70278_text {
  2220. border-width:0px;
  2221. white-space:nowrap;
  2222. text-transform:none;
  2223. }
  2224. #u70279_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:61px;
  2230. height:30px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 0);
  2233. border:none;
  2234. border-top:0px;
  2235. border-right:0px;
  2236. border-bottom:0px;
  2237. border-radius:0px;
  2238. border-top-left-radius:0px;
  2239. border-bottom-left-radius:0px;
  2240. -moz-box-shadow:none;
  2241. -webkit-box-shadow:none;
  2242. box-shadow:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:14px;
  2247. }
  2248. #u70279 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:-836px;
  2252. top:824px;
  2253. width:61px;
  2254. height:30px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:14px;
  2260. }
  2261. #u70279 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:5px 10px 5px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u70279_text {
  2269. border-width:0px;
  2270. white-space:nowrap;
  2271. text-transform:none;
  2272. }
  2273. #u70280_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:61px;
  2279. height:30px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-top:0px;
  2284. border-right:0px;
  2285. border-bottom:0px;
  2286. border-radius:0px;
  2287. border-top-left-radius:0px;
  2288. border-bottom-left-radius:0px;
  2289. -moz-box-shadow:none;
  2290. -webkit-box-shadow:none;
  2291. box-shadow:none;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:14px;
  2296. }
  2297. #u70280 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:-755px;
  2301. top:824px;
  2302. width:61px;
  2303. height:30px;
  2304. display:flex;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:14px;
  2309. }
  2310. #u70280 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:5px 10px 5px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u70280_text {
  2318. border-width:0px;
  2319. white-space:nowrap;
  2320. text-transform:none;
  2321. }
  2322. #u70281 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:0px;
  2328. height:0px;
  2329. }
  2330. #u70282_div {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:1340px;
  2336. height:180px;
  2337. background:inherit;
  2338. background-color:rgba(255, 255, 255, 1);
  2339. box-sizing:border-box;
  2340. border-width:1px;
  2341. border-style:solid;
  2342. border-color:rgba(215, 215, 215, 1);
  2343. border-radius:0px;
  2344. -moz-box-shadow:none;
  2345. -webkit-box-shadow:none;
  2346. box-shadow:none;
  2347. }
  2348. #u70282 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:-1924px;
  2352. top:551px;
  2353. width:1340px;
  2354. height:180px;
  2355. display:flex;
  2356. }
  2357. #u70282 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 2px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u70282_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. visibility:hidden;
  2369. }
  2370. #u70283_div {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:199px;
  2376. height:40px;
  2377. background:inherit;
  2378. background-color:rgba(255, 255, 255, 0);
  2379. border:none;
  2380. border-radius:0px;
  2381. -moz-box-shadow:none;
  2382. -webkit-box-shadow:none;
  2383. box-shadow:none;
  2384. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2385. font-weight:500;
  2386. font-style:normal;
  2387. font-size:18px;
  2388. line-height:40px;
  2389. }
  2390. #u70283 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:-1711px;
  2394. top:573px;
  2395. width:199px;
  2396. height:40px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2399. font-weight:500;
  2400. font-style:normal;
  2401. font-size:18px;
  2402. line-height:40px;
  2403. }
  2404. #u70283 .text {
  2405. position:absolute;
  2406. align-self:flex-start;
  2407. padding:0px 0px 0px 0px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u70283_text {
  2412. border-width:0px;
  2413. white-space:nowrap;
  2414. text-transform:none;
  2415. }
  2416. #u70284_div {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:71px;
  2422. height:60px;
  2423. background:inherit;
  2424. background-color:rgba(255, 255, 255, 0);
  2425. border:none;
  2426. border-top:0px;
  2427. border-right:0px;
  2428. border-bottom:0px;
  2429. border-radius:0px;
  2430. border-top-left-radius:0px;
  2431. border-bottom-left-radius:0px;
  2432. -moz-box-shadow:none;
  2433. -webkit-box-shadow:none;
  2434. box-shadow:none;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. line-height:25px;
  2440. }
  2441. #u70284 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:-1711px;
  2445. top:633px;
  2446. width:71px;
  2447. height:60px;
  2448. display:flex;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:12px;
  2453. line-height:25px;
  2454. }
  2455. #u70284 .text {
  2456. position:absolute;
  2457. align-self:flex-start;
  2458. padding:5px 10px 5px 0px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u70284_text {
  2463. border-width:0px;
  2464. white-space:nowrap;
  2465. text-transform:none;
  2466. }
  2467. #u70285_div {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:203px;
  2473. height:60px;
  2474. background:inherit;
  2475. background-color:rgba(255, 255, 255, 0);
  2476. border:none;
  2477. border-top:0px;
  2478. border-right:0px;
  2479. border-bottom:0px;
  2480. border-radius:0px;
  2481. border-top-left-radius:0px;
  2482. border-bottom-left-radius:0px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. line-height:25px;
  2491. }
  2492. #u70285 {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:-1630px;
  2496. top:633px;
  2497. width:203px;
  2498. height:60px;
  2499. display:flex;
  2500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2501. font-weight:400;
  2502. font-style:normal;
  2503. font-size:12px;
  2504. line-height:25px;
  2505. }
  2506. #u70285 .text {
  2507. position:absolute;
  2508. align-self:flex-start;
  2509. padding:5px 10px 5px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u70285_text {
  2514. border-width:0px;
  2515. white-space:nowrap;
  2516. text-transform:none;
  2517. }
  2518. #u70286_div {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:60px;
  2524. height:30px;
  2525. background:inherit;
  2526. background-color:rgba(255, 255, 255, 0);
  2527. box-sizing:border-box;
  2528. border-width:1px;
  2529. border-style:solid;
  2530. border-color:rgba(24, 144, 255, 1);
  2531. border-radius:3px;
  2532. -moz-box-shadow:none;
  2533. -webkit-box-shadow:none;
  2534. box-shadow:none;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. color:#1890FF;
  2540. text-align:center;
  2541. }
  2542. #u70286 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:-659px;
  2546. top:570px;
  2547. width:60px;
  2548. height:30px;
  2549. display:flex;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:12px;
  2554. color:#1890FF;
  2555. text-align:center;
  2556. }
  2557. #u70286 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:5px 0px 5px 0px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u70286_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u70287_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:60px;
  2575. height:30px;
  2576. background:inherit;
  2577. background-color:rgba(255, 255, 255, 0);
  2578. box-sizing:border-box;
  2579. border-width:1px;
  2580. border-style:solid;
  2581. border-color:rgba(24, 144, 255, 1);
  2582. border-radius:3px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:12px;
  2590. color:#1890FF;
  2591. text-align:center;
  2592. }
  2593. #u70287 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:-729px;
  2597. top:570px;
  2598. width:60px;
  2599. height:30px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#1890FF;
  2606. text-align:center;
  2607. }
  2608. #u70287 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:5px 0px 5px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u70287_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. }
  2620. #u70288_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:160px;
  2626. height:145px;
  2627. }
  2628. #u70288 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:-1901px;
  2632. top:568px;
  2633. width:160px;
  2634. height:145px;
  2635. display:flex;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:24px;
  2640. color:rgba(170, 170, 170, 0.180392156862745);
  2641. }
  2642. #u70288 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 2px 2px 2px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u70288_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. }
  2654. #u70289_div {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:50px;
  2660. height:20px;
  2661. background:inherit;
  2662. background-color:rgba(41, 143, 255, 1);
  2663. border:none;
  2664. border-radius:29px;
  2665. -moz-box-shadow:none;
  2666. -webkit-box-shadow:none;
  2667. box-shadow:none;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:12px;
  2672. color:#FFFFFF;
  2673. text-align:center;
  2674. }
  2675. #u70289 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:-1498px;
  2679. top:583px;
  2680. width:50px;
  2681. height:20px;
  2682. display:flex;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. color:#FFFFFF;
  2688. text-align:center;
  2689. }
  2690. #u70289 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 0px 2px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u70289_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. }
  2702. #u70290_div {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:61px;
  2708. height:30px;
  2709. background:inherit;
  2710. background-color:rgba(255, 255, 255, 0);
  2711. border:none;
  2712. border-top:0px;
  2713. border-right:0px;
  2714. border-bottom:0px;
  2715. border-radius:0px;
  2716. border-top-left-radius:0px;
  2717. border-bottom-left-radius:0px;
  2718. -moz-box-shadow:none;
  2719. -webkit-box-shadow:none;
  2720. box-shadow:none;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:14px;
  2725. }
  2726. #u70290 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:-917px;
  2730. top:648px;
  2731. width:61px;
  2732. height:30px;
  2733. display:flex;
  2734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2735. font-weight:400;
  2736. font-style:normal;
  2737. font-size:14px;
  2738. }
  2739. #u70290 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:5px 10px 5px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u70290_text {
  2747. border-width:0px;
  2748. white-space:nowrap;
  2749. text-transform:none;
  2750. }
  2751. #u70291_div {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:61px;
  2757. height:30px;
  2758. background:inherit;
  2759. background-color:rgba(255, 255, 255, 0);
  2760. border:none;
  2761. border-top:0px;
  2762. border-right:0px;
  2763. border-bottom:0px;
  2764. border-radius:0px;
  2765. border-top-left-radius:0px;
  2766. border-bottom-left-radius:0px;
  2767. -moz-box-shadow:none;
  2768. -webkit-box-shadow:none;
  2769. box-shadow:none;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:14px;
  2774. }
  2775. #u70291 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:-836px;
  2779. top:648px;
  2780. width:61px;
  2781. height:30px;
  2782. display:flex;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:14px;
  2787. }
  2788. #u70291 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:5px 10px 5px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u70291_text {
  2796. border-width:0px;
  2797. white-space:nowrap;
  2798. text-transform:none;
  2799. }
  2800. #u70292_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:61px;
  2806. height:30px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 0);
  2809. border:none;
  2810. border-top:0px;
  2811. border-right:0px;
  2812. border-bottom:0px;
  2813. border-radius:0px;
  2814. border-top-left-radius:0px;
  2815. border-bottom-left-radius:0px;
  2816. -moz-box-shadow:none;
  2817. -webkit-box-shadow:none;
  2818. box-shadow:none;
  2819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:14px;
  2823. }
  2824. #u70292 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:-755px;
  2828. top:648px;
  2829. width:61px;
  2830. height:30px;
  2831. display:flex;
  2832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:14px;
  2836. }
  2837. #u70292 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:5px 10px 5px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u70292_text {
  2845. border-width:0px;
  2846. white-space:nowrap;
  2847. text-transform:none;
  2848. }
  2849. #u70293_div {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:60px;
  2855. height:30px;
  2856. background:inherit;
  2857. background-color:rgba(255, 255, 255, 0);
  2858. box-sizing:border-box;
  2859. border-width:1px;
  2860. border-style:solid;
  2861. border-color:rgba(24, 144, 255, 1);
  2862. border-radius:3px;
  2863. -moz-box-shadow:none;
  2864. -webkit-box-shadow:none;
  2865. box-shadow:none;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:12px;
  2870. color:#1890FF;
  2871. text-align:center;
  2872. }
  2873. #u70293 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:-799px;
  2877. top:570px;
  2878. width:60px;
  2879. height:30px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. color:#1890FF;
  2886. text-align:center;
  2887. }
  2888. #u70293 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:5px 0px 5px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u70293_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. }
  2900. #u70294_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:60px;
  2906. height:30px;
  2907. background:inherit;
  2908. background-color:rgba(255, 255, 255, 0);
  2909. box-sizing:border-box;
  2910. border-width:1px;
  2911. border-style:solid;
  2912. border-color:rgba(24, 144, 255, 1);
  2913. border-radius:3px;
  2914. -moz-box-shadow:none;
  2915. -webkit-box-shadow:none;
  2916. box-shadow:none;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:12px;
  2921. color:#1890FF;
  2922. text-align:center;
  2923. }
  2924. #u70294 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:-839px;
  2928. top:1024px;
  2929. width:60px;
  2930. height:30px;
  2931. display:flex;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:12px;
  2936. color:#1890FF;
  2937. text-align:center;
  2938. }
  2939. #u70294 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:5px 0px 5px 0px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u70294_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. }
  2951. #u70295_div {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:50px;
  2957. height:20px;
  2958. background:inherit;
  2959. background-color:rgba(41, 143, 255, 1);
  2960. border:none;
  2961. border-radius:29px;
  2962. -moz-box-shadow:none;
  2963. -webkit-box-shadow:none;
  2964. box-shadow:none;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:12px;
  2969. color:#FFFFFF;
  2970. text-align:center;
  2971. }
  2972. #u70295 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:-699px;
  2976. top:992px;
  2977. width:50px;
  2978. height:20px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. color:#FFFFFF;
  2985. text-align:center;
  2986. }
  2987. #u70295 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 0px 2px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u70295_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. }
  2999. #u70296_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:50px;
  3005. height:20px;
  3006. background:inherit;
  3007. background-color:rgba(215, 215, 215, 1);
  3008. border:none;
  3009. border-radius:29px;
  3010. -moz-box-shadow:none;
  3011. -webkit-box-shadow:none;
  3012. box-shadow:none;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. color:#FFFFFF;
  3018. text-align:center;
  3019. }
  3020. #u70296 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:-859px;
  3024. top:992px;
  3025. width:50px;
  3026. height:20px;
  3027. display:flex;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:12px;
  3032. color:#FFFFFF;
  3033. text-align:center;
  3034. }
  3035. #u70296 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 0px 2px 0px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u70296_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. }
  3047. #u70297_div {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:60px;
  3053. height:30px;
  3054. background:inherit;
  3055. background-color:rgba(255, 255, 255, 0);
  3056. box-sizing:border-box;
  3057. border-width:1px;
  3058. border-style:solid;
  3059. border-color:rgba(24, 144, 255, 1);
  3060. border-radius:3px;
  3061. -moz-box-shadow:none;
  3062. -webkit-box-shadow:none;
  3063. box-shadow:none;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. color:#1890FF;
  3069. text-align:center;
  3070. }
  3071. #u70297 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:-694px;
  3075. top:1024px;
  3076. width:60px;
  3077. height:30px;
  3078. display:flex;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. color:#1890FF;
  3084. text-align:center;
  3085. }
  3086. #u70297 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:5px 0px 5px 0px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u70297_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. }
  3098. #u70298 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:0px;
  3104. height:0px;
  3105. }
  3106. #u70299_div {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:120px;
  3112. height:260px;
  3113. background:inherit;
  3114. background-color:rgba(255, 255, 255, 1);
  3115. box-sizing:border-box;
  3116. border-width:1px;
  3117. border-style:solid;
  3118. border-color:rgba(242, 242, 242, 1);
  3119. border-radius:4px;
  3120. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3121. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3122. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:14px;
  3127. text-align:left;
  3128. }
  3129. #u70299 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:-896px;
  3133. top:1052px;
  3134. width:120px;
  3135. height:260px;
  3136. display:flex;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:14px;
  3141. text-align:left;
  3142. }
  3143. #u70299 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u70299_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u70300_div {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:100px;
  3162. height:40px;
  3163. background:inherit;
  3164. background-color:rgba(255, 255, 255, 1);
  3165. box-sizing:border-box;
  3166. border-width:1px;
  3167. border-style:solid;
  3168. border-color:rgba(215, 215, 215, 1);
  3169. border-left:0px;
  3170. border-top:0px;
  3171. border-right:0px;
  3172. border-radius:0px;
  3173. border-bottom-right-radius:0px;
  3174. border-bottom-left-radius:0px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:14px;
  3182. }
  3183. #u70300 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:-886px;
  3187. top:1062px;
  3188. width:100px;
  3189. height:40px;
  3190. display:flex;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:14px;
  3195. }
  3196. #u70300 .text {
  3197. position:absolute;
  3198. align-self:center;
  3199. padding:2px 2px 2px 2px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u70300_text {
  3204. border-width:0px;
  3205. word-wrap:break-word;
  3206. text-transform:none;
  3207. }
  3208. #u70301_div {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:100px;
  3214. height:40px;
  3215. background:inherit;
  3216. background-color:rgba(255, 255, 255, 1);
  3217. box-sizing:border-box;
  3218. border-width:1px;
  3219. border-style:solid;
  3220. border-color:rgba(215, 215, 215, 1);
  3221. border-left:0px;
  3222. border-top:0px;
  3223. border-right:0px;
  3224. border-radius:0px;
  3225. border-bottom-right-radius:0px;
  3226. border-bottom-left-radius:0px;
  3227. -moz-box-shadow:none;
  3228. -webkit-box-shadow:none;
  3229. box-shadow:none;
  3230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:14px;
  3234. }
  3235. #u70301 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:-886px;
  3239. top:1142px;
  3240. width:100px;
  3241. height:40px;
  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. #u70301 .text {
  3249. position:absolute;
  3250. align-self:center;
  3251. padding:2px 2px 2px 2px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u70301_text {
  3256. border-width:0px;
  3257. word-wrap:break-word;
  3258. text-transform:none;
  3259. }
  3260. #u70302_div {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:100px;
  3266. height:40px;
  3267. background:inherit;
  3268. background-color:rgba(255, 255, 255, 1);
  3269. box-sizing:border-box;
  3270. border-width:1px;
  3271. border-style:solid;
  3272. border-color:rgba(215, 215, 215, 1);
  3273. border-left:0px;
  3274. border-top:0px;
  3275. border-right:0px;
  3276. border-radius:0px;
  3277. border-bottom-right-radius:0px;
  3278. border-bottom-left-radius:0px;
  3279. -moz-box-shadow:none;
  3280. -webkit-box-shadow:none;
  3281. box-shadow:none;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:14px;
  3286. }
  3287. #u70302 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:-886px;
  3291. top:1102px;
  3292. width:100px;
  3293. height:40px;
  3294. display:flex;
  3295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:14px;
  3299. }
  3300. #u70302 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 2px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u70302_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. }
  3312. #u70303_div {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:100px;
  3318. height:40px;
  3319. background:inherit;
  3320. background-color:rgba(255, 255, 255, 1);
  3321. box-sizing:border-box;
  3322. border-width:1px;
  3323. border-style:solid;
  3324. border-color:rgba(215, 215, 215, 1);
  3325. border-left:0px;
  3326. border-top:0px;
  3327. border-right:0px;
  3328. border-radius:0px;
  3329. border-bottom-right-radius:0px;
  3330. border-bottom-left-radius:0px;
  3331. -moz-box-shadow:none;
  3332. -webkit-box-shadow:none;
  3333. box-shadow:none;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:14px;
  3338. }
  3339. #u70303 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:-886px;
  3343. top:1182px;
  3344. width:100px;
  3345. height:40px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:14px;
  3351. }
  3352. #u70303 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 2px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u70303_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. }
  3364. #u70304_div {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:100px;
  3370. height:40px;
  3371. background:inherit;
  3372. background-color:rgba(255, 255, 255, 1);
  3373. border:none;
  3374. border-left:0px;
  3375. border-top:0px;
  3376. border-right:0px;
  3377. border-radius:0px;
  3378. border-bottom-right-radius:0px;
  3379. border-bottom-left-radius:0px;
  3380. -moz-box-shadow:none;
  3381. -webkit-box-shadow:none;
  3382. box-shadow:none;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:14px;
  3387. color:#D9001B;
  3388. }
  3389. #u70304 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:-886px;
  3393. top:1262px;
  3394. width:100px;
  3395. height:40px;
  3396. display:flex;
  3397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:14px;
  3401. color:#D9001B;
  3402. }
  3403. #u70304 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 2px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u70304_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. }
  3415. #u70305_div {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:100px;
  3421. height:40px;
  3422. background:inherit;
  3423. background-color:rgba(255, 255, 255, 1);
  3424. box-sizing:border-box;
  3425. border-width:1px;
  3426. border-style:solid;
  3427. border-color:rgba(215, 215, 215, 1);
  3428. border-left:0px;
  3429. border-top:0px;
  3430. border-right:0px;
  3431. border-radius:0px;
  3432. border-bottom-right-radius:0px;
  3433. border-bottom-left-radius:0px;
  3434. -moz-box-shadow:none;
  3435. -webkit-box-shadow:none;
  3436. box-shadow:none;
  3437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3438. font-weight:400;
  3439. font-style:normal;
  3440. font-size:14px;
  3441. }
  3442. #u70305 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:-886px;
  3446. top:1222px;
  3447. width:100px;
  3448. height:40px;
  3449. display:flex;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:14px;
  3454. }
  3455. #u70305 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 2px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u70305_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. }
  3467. #u70306_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:59px;
  3473. height:30px;
  3474. background:inherit;
  3475. background-color:rgba(41, 143, 255, 1);
  3476. border:none;
  3477. border-radius:4px;
  3478. -moz-box-shadow:none;
  3479. -webkit-box-shadow:none;
  3480. box-shadow:none;
  3481. font-family:'Microsoft YaHei', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:14px;
  3485. color:#FFFFFF;
  3486. }
  3487. #u70306 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:-1314px;
  3491. top:499px;
  3492. width:59px;
  3493. height:30px;
  3494. display:flex;
  3495. font-family:'Microsoft YaHei', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:14px;
  3499. color:#FFFFFF;
  3500. }
  3501. #u70306 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:5px 15px 5px 15px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u70306_text {
  3509. border-width:0px;
  3510. white-space:nowrap;
  3511. text-transform:none;
  3512. }
  3513. #u70307_div {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:55px;
  3519. height:30px;
  3520. background:inherit;
  3521. background-color:rgba(255, 255, 255, 1);
  3522. box-sizing:border-box;
  3523. border-width:1px;
  3524. border-style:solid;
  3525. border-color:rgba(170, 170, 170, 1);
  3526. border-radius:4px;
  3527. -moz-box-shadow:none;
  3528. -webkit-box-shadow:none;
  3529. box-shadow:none;
  3530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. font-size:12px;
  3534. color:#555555;
  3535. }
  3536. #u70307 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:-1245px;
  3540. top:499px;
  3541. width:55px;
  3542. height:30px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#555555;
  3549. }
  3550. #u70307 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:5px 15px 5px 15px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u70307_text {
  3558. border-width:0px;
  3559. white-space:nowrap;
  3560. text-transform:none;
  3561. }
  3562. #u70308 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:0px;
  3568. height:0px;
  3569. }
  3570. #u70309_div {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:140px;
  3576. height:30px;
  3577. background:inherit;
  3578. background-color:rgba(255, 255, 255, 1);
  3579. box-sizing:border-box;
  3580. border-width:1px;
  3581. border-style:solid;
  3582. border-color:rgba(215, 215, 215, 1);
  3583. border-radius:4px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. font-size:11px;
  3588. }
  3589. #u70309 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:-1474px;
  3593. top:498px;
  3594. width:140px;
  3595. height:30px;
  3596. display:flex;
  3597. font-size:11px;
  3598. }
  3599. #u70309 .text {
  3600. position:absolute;
  3601. align-self:center;
  3602. padding:2px 2px 2px 2px;
  3603. box-sizing:border-box;
  3604. width:100%;
  3605. }
  3606. #u70309_text {
  3607. border-width:0px;
  3608. word-wrap:break-word;
  3609. text-transform:none;
  3610. visibility:hidden;
  3611. }
  3612. #u70310_input {
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:120px;
  3617. height:23px;
  3618. padding:2px 2px 2px 2px;
  3619. font-family:'ArialMT', 'Arial', sans-serif;
  3620. font-weight:400;
  3621. font-style:normal;
  3622. font-size:11px;
  3623. letter-spacing:normal;
  3624. color:#AAAAAA;
  3625. vertical-align:none;
  3626. text-align:left;
  3627. text-transform:none;
  3628. background-color:transparent;
  3629. border-color:transparent;
  3630. }
  3631. #u70310_input.disabled {
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:120px;
  3636. height:23px;
  3637. padding:2px 2px 2px 2px;
  3638. font-family:'ArialMT', 'Arial', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:11px;
  3642. letter-spacing:normal;
  3643. color:#AAAAAA;
  3644. vertical-align:none;
  3645. text-align:left;
  3646. text-transform:none;
  3647. background-color:transparent;
  3648. border-color:transparent;
  3649. }
  3650. #u70310_div {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:120px;
  3656. height:23px;
  3657. background:inherit;
  3658. background-color:rgba(255, 255, 255, 1);
  3659. border:none;
  3660. border-radius:0px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. font-size:11px;
  3665. color:#AAAAAA;
  3666. }
  3667. #u70310 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:-1467px;
  3671. top:500px;
  3672. width:120px;
  3673. height:23px;
  3674. display:flex;
  3675. font-size:11px;
  3676. color:#AAAAAA;
  3677. }
  3678. #u70310 .text {
  3679. position:absolute;
  3680. align-self:flex-start;
  3681. padding:2px 2px 2px 2px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u70310_div.disabled {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:120px;
  3691. height:23px;
  3692. background:inherit;
  3693. background-color:rgba(240, 240, 240, 1);
  3694. border:none;
  3695. border-radius:0px;
  3696. -moz-box-shadow:none;
  3697. -webkit-box-shadow:none;
  3698. box-shadow:none;
  3699. font-size:11px;
  3700. color:#AAAAAA;
  3701. }
  3702. #u70310.disabled {
  3703. }
  3704. .u70310_input_option {
  3705. font-size:11px;
  3706. }
  3707. #u70311 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:0px;
  3713. height:0px;
  3714. }
  3715. #u70312_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:140px;
  3721. height:30px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 1);
  3724. box-sizing:border-box;
  3725. border-width:1px;
  3726. border-style:solid;
  3727. border-color:rgba(215, 215, 215, 1);
  3728. border-radius:4px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. font-size:11px;
  3733. }
  3734. #u70312 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:-1624px;
  3738. top:498px;
  3739. width:140px;
  3740. height:30px;
  3741. display:flex;
  3742. font-size:11px;
  3743. }
  3744. #u70312 .text {
  3745. position:absolute;
  3746. align-self:center;
  3747. padding:2px 2px 2px 2px;
  3748. box-sizing:border-box;
  3749. width:100%;
  3750. }
  3751. #u70312_text {
  3752. border-width:0px;
  3753. word-wrap:break-word;
  3754. text-transform:none;
  3755. visibility:hidden;
  3756. }
  3757. #u70313_input {
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:120px;
  3762. height:23px;
  3763. padding:2px 2px 2px 2px;
  3764. font-family:'ArialMT', 'Arial', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:11px;
  3768. letter-spacing:normal;
  3769. color:#AAAAAA;
  3770. vertical-align:none;
  3771. text-align:left;
  3772. text-transform:none;
  3773. background-color:transparent;
  3774. border-color:transparent;
  3775. }
  3776. #u70313_input.disabled {
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:120px;
  3781. height:23px;
  3782. padding:2px 2px 2px 2px;
  3783. font-family:'ArialMT', 'Arial', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:11px;
  3787. letter-spacing:normal;
  3788. color:#AAAAAA;
  3789. vertical-align:none;
  3790. text-align:left;
  3791. text-transform:none;
  3792. background-color:transparent;
  3793. border-color:transparent;
  3794. }
  3795. #u70313_div {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:120px;
  3801. height:23px;
  3802. background:inherit;
  3803. background-color:rgba(255, 255, 255, 1);
  3804. border:none;
  3805. border-radius:0px;
  3806. -moz-box-shadow:none;
  3807. -webkit-box-shadow:none;
  3808. box-shadow:none;
  3809. font-size:11px;
  3810. color:#AAAAAA;
  3811. }
  3812. #u70313 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:-1617px;
  3816. top:500px;
  3817. width:120px;
  3818. height:23px;
  3819. display:flex;
  3820. font-size:11px;
  3821. color:#AAAAAA;
  3822. }
  3823. #u70313 .text {
  3824. position:absolute;
  3825. align-self:flex-start;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u70313_div.disabled {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:120px;
  3836. height:23px;
  3837. background:inherit;
  3838. background-color:rgba(240, 240, 240, 1);
  3839. border:none;
  3840. border-radius:0px;
  3841. -moz-box-shadow:none;
  3842. -webkit-box-shadow:none;
  3843. box-shadow:none;
  3844. font-size:11px;
  3845. color:#AAAAAA;
  3846. }
  3847. #u70313.disabled {
  3848. }
  3849. .u70313_input_option {
  3850. font-size:11px;
  3851. }
  3852. #u70314 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:0px;
  3858. height:0px;
  3859. }
  3860. #u70315_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:140px;
  3866. height:30px;
  3867. background:inherit;
  3868. background-color:rgba(255, 255, 255, 1);
  3869. box-sizing:border-box;
  3870. border-width:1px;
  3871. border-style:solid;
  3872. border-color:rgba(201, 201, 201, 1);
  3873. border-radius:4px;
  3874. -moz-box-shadow:none;
  3875. -webkit-box-shadow:none;
  3876. box-shadow:none;
  3877. font-family:'Microsoft YaHei', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:14px;
  3881. color:#CCCCCC;
  3882. text-align:left;
  3883. }
  3884. #u70315 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:-1774px;
  3888. top:498px;
  3889. width:140px;
  3890. height:30px;
  3891. display:flex;
  3892. font-family:'Microsoft YaHei', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:14px;
  3896. color:#CCCCCC;
  3897. text-align:left;
  3898. }
  3899. #u70315 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 8px 2px 8px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u70315_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u70316_input {
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:127px;
  3917. height:25px;
  3918. padding:2px 2px 2px 2px;
  3919. font-family:'Microsoft YaHei', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:10px;
  3923. letter-spacing:normal;
  3924. color:#000000;
  3925. vertical-align:none;
  3926. text-align:left;
  3927. text-transform:none;
  3928. background-color:transparent;
  3929. border-color:transparent;
  3930. }
  3931. #u70316_input.disabled {
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:127px;
  3936. height:25px;
  3937. padding:2px 2px 2px 2px;
  3938. font-family:'Microsoft YaHei', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:10px;
  3942. letter-spacing:normal;
  3943. color:#000000;
  3944. vertical-align:none;
  3945. text-align:left;
  3946. text-transform:none;
  3947. background-color:transparent;
  3948. border-color:transparent;
  3949. }
  3950. #u70316_div {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:127px;
  3956. height:25px;
  3957. background:inherit;
  3958. background-color:rgba(255, 255, 255, 1);
  3959. border:none;
  3960. border-radius:0px;
  3961. -moz-box-shadow:none;
  3962. -webkit-box-shadow:none;
  3963. box-shadow:none;
  3964. font-family:'Microsoft YaHei', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:10px;
  3968. }
  3969. #u70316 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:-1766px;
  3973. top:499px;
  3974. width:127px;
  3975. height:25px;
  3976. display:flex;
  3977. font-family:'Microsoft YaHei', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:10px;
  3981. }
  3982. #u70316 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 2px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u70316_div.disabled {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:127px;
  3995. height:25px;
  3996. background:inherit;
  3997. background-color:rgba(240, 240, 240, 1);
  3998. border:none;
  3999. border-radius:0px;
  4000. -moz-box-shadow:none;
  4001. -webkit-box-shadow:none;
  4002. box-shadow:none;
  4003. font-family:'Microsoft YaHei', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:10px;
  4007. }
  4008. #u70316.disabled {
  4009. }
  4010. #u70317 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:0px;
  4016. height:0px;
  4017. }
  4018. #u70318_div {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:140px;
  4024. height:30px;
  4025. background:inherit;
  4026. background-color:rgba(255, 255, 255, 1);
  4027. box-sizing:border-box;
  4028. border-width:1px;
  4029. border-style:solid;
  4030. border-color:rgba(201, 201, 201, 1);
  4031. border-radius:4px;
  4032. -moz-box-shadow:none;
  4033. -webkit-box-shadow:none;
  4034. box-shadow:none;
  4035. font-family:'Microsoft YaHei', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:14px;
  4039. color:#CCCCCC;
  4040. text-align:left;
  4041. }
  4042. #u70318 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:-1924px;
  4046. top:498px;
  4047. width:140px;
  4048. height:30px;
  4049. display:flex;
  4050. font-family:'Microsoft YaHei', sans-serif;
  4051. font-weight:400;
  4052. font-style:normal;
  4053. font-size:14px;
  4054. color:#CCCCCC;
  4055. text-align:left;
  4056. }
  4057. #u70318 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 8px 2px 8px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u70318_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u70319_input {
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:127px;
  4075. height:25px;
  4076. padding:2px 2px 2px 2px;
  4077. font-family:'Microsoft YaHei', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:10px;
  4081. letter-spacing:normal;
  4082. color:#000000;
  4083. vertical-align:none;
  4084. text-align:left;
  4085. text-transform:none;
  4086. background-color:transparent;
  4087. border-color:transparent;
  4088. }
  4089. #u70319_input.disabled {
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:127px;
  4094. height:25px;
  4095. padding:2px 2px 2px 2px;
  4096. font-family:'Microsoft YaHei', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:10px;
  4100. letter-spacing:normal;
  4101. color:#000000;
  4102. vertical-align:none;
  4103. text-align:left;
  4104. text-transform:none;
  4105. background-color:transparent;
  4106. border-color:transparent;
  4107. }
  4108. #u70319_div {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:127px;
  4114. height:25px;
  4115. background:inherit;
  4116. background-color:rgba(255, 255, 255, 1);
  4117. border:none;
  4118. border-radius:0px;
  4119. -moz-box-shadow:none;
  4120. -webkit-box-shadow:none;
  4121. box-shadow:none;
  4122. font-family:'Microsoft YaHei', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:10px;
  4126. }
  4127. #u70319 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:-1916px;
  4131. top:499px;
  4132. width:127px;
  4133. height:25px;
  4134. display:flex;
  4135. font-family:'Microsoft YaHei', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:10px;
  4139. }
  4140. #u70319 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 2px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u70319_div.disabled {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:127px;
  4153. height:25px;
  4154. background:inherit;
  4155. background-color:rgba(240, 240, 240, 1);
  4156. border:none;
  4157. border-radius:0px;
  4158. -moz-box-shadow:none;
  4159. -webkit-box-shadow:none;
  4160. box-shadow:none;
  4161. font-family:'Microsoft YaHei', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:10px;
  4165. }
  4166. #u70319.disabled {
  4167. }
  4168. #u70320 {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:0px;
  4174. height:0px;
  4175. }
  4176. #u70321_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:120px;
  4182. height:260px;
  4183. background:inherit;
  4184. background-color:rgba(255, 255, 255, 1);
  4185. box-sizing:border-box;
  4186. border-width:1px;
  4187. border-style:solid;
  4188. border-color:rgba(242, 242, 242, 1);
  4189. border-radius:4px;
  4190. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4191. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4192. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. text-align:left;
  4198. }
  4199. #u70321 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:-754px;
  4203. top:1052px;
  4204. width:120px;
  4205. height:260px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. font-size:14px;
  4211. text-align:left;
  4212. }
  4213. #u70321 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u70321_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u70322_div {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:100px;
  4232. height:40px;
  4233. background:inherit;
  4234. background-color:rgba(255, 255, 255, 1);
  4235. box-sizing:border-box;
  4236. border-width:1px;
  4237. border-style:solid;
  4238. border-color:rgba(215, 215, 215, 1);
  4239. border-left:0px;
  4240. border-top:0px;
  4241. border-right:0px;
  4242. border-radius:0px;
  4243. border-bottom-right-radius:0px;
  4244. border-bottom-left-radius:0px;
  4245. -moz-box-shadow:none;
  4246. -webkit-box-shadow:none;
  4247. box-shadow:none;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:14px;
  4252. }
  4253. #u70322 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:-744px;
  4257. top:1062px;
  4258. width:100px;
  4259. height:40px;
  4260. display:flex;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:14px;
  4265. }
  4266. #u70322 .text {
  4267. position:absolute;
  4268. align-self:center;
  4269. padding:2px 2px 2px 2px;
  4270. box-sizing:border-box;
  4271. width:100%;
  4272. }
  4273. #u70322_text {
  4274. border-width:0px;
  4275. word-wrap:break-word;
  4276. text-transform:none;
  4277. }
  4278. #u70323_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:100px;
  4284. height:40px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 1);
  4287. box-sizing:border-box;
  4288. border-width:1px;
  4289. border-style:solid;
  4290. border-color:rgba(215, 215, 215, 1);
  4291. border-left:0px;
  4292. border-top:0px;
  4293. border-right:0px;
  4294. border-radius:0px;
  4295. border-bottom-right-radius:0px;
  4296. border-bottom-left-radius:0px;
  4297. -moz-box-shadow:none;
  4298. -webkit-box-shadow:none;
  4299. box-shadow:none;
  4300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4301. font-weight:400;
  4302. font-style:normal;
  4303. font-size:14px;
  4304. }
  4305. #u70323 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:-744px;
  4309. top:1142px;
  4310. width:100px;
  4311. height:40px;
  4312. display:flex;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:14px;
  4317. }
  4318. #u70323 .text {
  4319. position:absolute;
  4320. align-self:center;
  4321. padding:2px 2px 2px 2px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u70323_text {
  4326. border-width:0px;
  4327. word-wrap:break-word;
  4328. text-transform:none;
  4329. }
  4330. #u70324_div {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:100px;
  4336. height:40px;
  4337. background:inherit;
  4338. background-color:rgba(255, 255, 255, 1);
  4339. box-sizing:border-box;
  4340. border-width:1px;
  4341. border-style:solid;
  4342. border-color:rgba(215, 215, 215, 1);
  4343. border-left:0px;
  4344. border-top:0px;
  4345. border-right:0px;
  4346. border-radius:0px;
  4347. border-bottom-right-radius:0px;
  4348. border-bottom-left-radius:0px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:14px;
  4356. }
  4357. #u70324 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:-744px;
  4361. top:1102px;
  4362. width:100px;
  4363. height:40px;
  4364. display:flex;
  4365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. font-size:14px;
  4369. }
  4370. #u70324 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 2px 2px 2px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u70324_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. }
  4382. #u70325_div {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:100px;
  4388. height:40px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 1);
  4391. box-sizing:border-box;
  4392. border-width:1px;
  4393. border-style:solid;
  4394. border-color:rgba(215, 215, 215, 1);
  4395. border-left:0px;
  4396. border-top:0px;
  4397. border-right:0px;
  4398. border-radius:0px;
  4399. border-bottom-right-radius:0px;
  4400. border-bottom-left-radius:0px;
  4401. -moz-box-shadow:none;
  4402. -webkit-box-shadow:none;
  4403. box-shadow:none;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:14px;
  4408. }
  4409. #u70325 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:-744px;
  4413. top:1182px;
  4414. width:100px;
  4415. height:40px;
  4416. display:flex;
  4417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:14px;
  4421. }
  4422. #u70325 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 2px 2px 2px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u70325_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. }
  4434. #u70326_div {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:100px;
  4440. height:40px;
  4441. background:inherit;
  4442. background-color:rgba(255, 255, 255, 1);
  4443. border:none;
  4444. border-left:0px;
  4445. border-top:0px;
  4446. border-right:0px;
  4447. border-radius:0px;
  4448. border-bottom-right-radius:0px;
  4449. border-bottom-left-radius:0px;
  4450. -moz-box-shadow:none;
  4451. -webkit-box-shadow:none;
  4452. box-shadow:none;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:14px;
  4457. color:#D9001B;
  4458. }
  4459. #u70326 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:-744px;
  4463. top:1262px;
  4464. width:100px;
  4465. height:40px;
  4466. display:flex;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:14px;
  4471. color:#D9001B;
  4472. }
  4473. #u70326 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u70326_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. }
  4485. #u70327_div {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:100px;
  4491. height:40px;
  4492. background:inherit;
  4493. background-color:rgba(255, 255, 255, 1);
  4494. box-sizing:border-box;
  4495. border-width:1px;
  4496. border-style:solid;
  4497. border-color:rgba(215, 215, 215, 1);
  4498. border-left:0px;
  4499. border-top:0px;
  4500. border-right:0px;
  4501. border-radius:0px;
  4502. border-bottom-right-radius:0px;
  4503. border-bottom-left-radius:0px;
  4504. -moz-box-shadow:none;
  4505. -webkit-box-shadow:none;
  4506. box-shadow:none;
  4507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4508. font-weight:400;
  4509. font-style:normal;
  4510. font-size:14px;
  4511. }
  4512. #u70327 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:-744px;
  4516. top:1222px;
  4517. width:100px;
  4518. height:40px;
  4519. display:flex;
  4520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:14px;
  4524. }
  4525. #u70327 .text {
  4526. position:absolute;
  4527. align-self:center;
  4528. padding:2px 2px 2px 2px;
  4529. box-sizing:border-box;
  4530. width:100%;
  4531. }
  4532. #u70327_text {
  4533. border-width:0px;
  4534. word-wrap:break-word;
  4535. text-transform:none;
  4536. }
  4537. #u70328_div {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:102px;
  4543. height:50px;
  4544. background:inherit;
  4545. background-color:rgba(255, 255, 255, 0);
  4546. border:none;
  4547. border-left:0px;
  4548. border-top:0px;
  4549. border-right:0px;
  4550. border-radius:0px;
  4551. border-bottom-right-radius:0px;
  4552. border-bottom-left-radius:0px;
  4553. -moz-box-shadow:none;
  4554. -webkit-box-shadow:none;
  4555. box-shadow:none;
  4556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4557. font-weight:400;
  4558. font-style:normal;
  4559. font-size:18px;
  4560. color:#1890FF;
  4561. text-align:right;
  4562. }
  4563. #u70328 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:-701px;
  4567. top:449px;
  4568. width:102px;
  4569. height:50px;
  4570. display:flex;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:18px;
  4575. color:#1890FF;
  4576. text-align:right;
  4577. }
  4578. #u70328 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:0px 0px 0px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u70328_text {
  4586. border-width:0px;
  4587. white-space:nowrap;
  4588. text-transform:none;
  4589. }
  4590. #u70329 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:0px;
  4596. height:0px;
  4597. }
  4598. #u70330_div {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:420px;
  4604. height:210px;
  4605. background:inherit;
  4606. background-color:rgba(255, 255, 255, 1);
  4607. box-sizing:border-box;
  4608. border-width:1px;
  4609. border-style:solid;
  4610. border-color:rgba(215, 215, 215, 1);
  4611. border-radius:0px;
  4612. -moz-box-shadow:none;
  4613. -webkit-box-shadow:none;
  4614. box-shadow:none;
  4615. font-family:'Microsoft YaHei', sans-serif;
  4616. font-weight:400;
  4617. font-style:normal;
  4618. }
  4619. #u70330 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:-1074px;
  4623. top:-84px;
  4624. width:420px;
  4625. height:210px;
  4626. display:flex;
  4627. font-family:'Microsoft YaHei', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. }
  4631. #u70330 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 2px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u70330_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u70331_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:336px;
  4650. height:90px;
  4651. background:inherit;
  4652. background-color:rgba(255, 255, 255, 0);
  4653. border:none;
  4654. border-radius:0px;
  4655. -moz-box-shadow:none;
  4656. -webkit-box-shadow:none;
  4657. box-shadow:none;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:14px;
  4662. color:#666666;
  4663. line-height:30px;
  4664. }
  4665. #u70331 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:-1013px;
  4669. top:-24px;
  4670. width:336px;
  4671. height:90px;
  4672. display:flex;
  4673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:14px;
  4677. color:#666666;
  4678. line-height:30px;
  4679. }
  4680. #u70331 .text {
  4681. position:absolute;
  4682. align-self:flex-start;
  4683. padding:0px 0px 0px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u70331_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. }
  4692. #u70332_div {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:80px;
  4698. height:32px;
  4699. background:inherit;
  4700. background-color:rgba(24, 144, 255, 1);
  4701. border:none;
  4702. border-radius:4px;
  4703. -moz-box-shadow:none;
  4704. -webkit-box-shadow:none;
  4705. box-shadow:none;
  4706. font-family:'Microsoft YaHei', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:14px;
  4710. color:#FFFFFF;
  4711. }
  4712. #u70332 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:-754px;
  4716. top:75px;
  4717. width:80px;
  4718. height:32px;
  4719. display:flex;
  4720. font-family:'Microsoft YaHei', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:14px;
  4724. color:#FFFFFF;
  4725. }
  4726. #u70332 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 16px 2px 16px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u70332_text {
  4734. border-width:0px;
  4735. word-wrap:break-word;
  4736. text-transform:none;
  4737. }
  4738. #u70333_div {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:80px;
  4744. height:32px;
  4745. background:inherit;
  4746. background-color:rgba(255, 255, 255, 1);
  4747. box-sizing:border-box;
  4748. border-width:1px;
  4749. border-style:solid;
  4750. border-color:rgba(215, 215, 215, 1);
  4751. border-radius:4px;
  4752. -moz-box-shadow:none;
  4753. -webkit-box-shadow:none;
  4754. box-shadow:none;
  4755. font-family:'Microsoft YaHei', sans-serif;
  4756. font-weight:400;
  4757. font-style:normal;
  4758. font-size:14px;
  4759. color:rgba(0, 0, 0, 0.647058823529412);
  4760. line-height:21px;
  4761. }
  4762. #u70333 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:-844px;
  4766. top:75px;
  4767. width:80px;
  4768. height:32px;
  4769. display:flex;
  4770. font-family:'Microsoft YaHei', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:14px;
  4774. color:rgba(0, 0, 0, 0.647058823529412);
  4775. line-height:21px;
  4776. }
  4777. #u70333 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 16px 2px 16px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u70333_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. }
  4789. #u70334_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:26px;
  4795. height:26px;
  4796. }
  4797. #u70334 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:-1049px;
  4801. top:-63px;
  4802. width:26px;
  4803. height:26px;
  4804. display:flex;
  4805. }
  4806. #u70334 .text {
  4807. position:absolute;
  4808. align-self:center;
  4809. padding:2px 2px 2px 2px;
  4810. box-sizing:border-box;
  4811. width:100%;
  4812. }
  4813. #u70334_text {
  4814. border-width:0px;
  4815. word-wrap:break-word;
  4816. text-transform:none;
  4817. visibility:hidden;
  4818. }
  4819. #u70335_div {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:145px;
  4825. height:30px;
  4826. background:inherit;
  4827. background-color:rgba(255, 255, 255, 0);
  4828. border:none;
  4829. border-radius:0px;
  4830. -moz-box-shadow:none;
  4831. -webkit-box-shadow:none;
  4832. box-shadow:none;
  4833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:18px;
  4837. color:#000000;
  4838. line-height:30px;
  4839. }
  4840. #u70335 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:-1013px;
  4844. top:-63px;
  4845. width:145px;
  4846. height:30px;
  4847. display:flex;
  4848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:18px;
  4852. color:#000000;
  4853. line-height:30px;
  4854. }
  4855. #u70335 .text {
  4856. position:absolute;
  4857. align-self:flex-start;
  4858. padding:0px 0px 0px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u70335_text {
  4863. border-width:0px;
  4864. white-space:nowrap;
  4865. text-transform:none;
  4866. }
  4867. #u70336_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:10px;
  4873. height:10px;
  4874. }
  4875. #u70336 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:-674px;
  4879. top:-74px;
  4880. width:10px;
  4881. height:10px;
  4882. display:flex;
  4883. }
  4884. #u70336 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 2px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u70336_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. visibility:hidden;
  4896. }
  4897. #u70337 {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:0px;
  4903. height:0px;
  4904. }
  4905. #u70338_div {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:420px;
  4911. height:220px;
  4912. background:inherit;
  4913. background-color:rgba(255, 255, 255, 1);
  4914. box-sizing:border-box;
  4915. border-width:1px;
  4916. border-style:solid;
  4917. border-color:rgba(215, 215, 215, 1);
  4918. border-radius:0px;
  4919. -moz-box-shadow:none;
  4920. -webkit-box-shadow:none;
  4921. box-shadow:none;
  4922. font-family:'Microsoft YaHei', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. }
  4926. #u70338 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:-1074px;
  4930. top:146px;
  4931. width:420px;
  4932. height:220px;
  4933. display:flex;
  4934. font-family:'Microsoft YaHei', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. }
  4938. #u70338 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u70338_text {
  4946. border-width:0px;
  4947. word-wrap:break-word;
  4948. text-transform:none;
  4949. visibility:hidden;
  4950. }
  4951. #u70339_div {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:339px;
  4957. height:90px;
  4958. background:inherit;
  4959. background-color:rgba(255, 255, 255, 0);
  4960. border:none;
  4961. border-radius:0px;
  4962. -moz-box-shadow:none;
  4963. -webkit-box-shadow:none;
  4964. box-shadow:none;
  4965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:14px;
  4969. color:#666666;
  4970. line-height:30px;
  4971. }
  4972. #u70339 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:-1013px;
  4976. top:206px;
  4977. width:339px;
  4978. height:90px;
  4979. display:flex;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:14px;
  4984. color:#666666;
  4985. line-height:30px;
  4986. }
  4987. #u70339 .text {
  4988. position:absolute;
  4989. align-self:flex-start;
  4990. padding:0px 0px 0px 0px;
  4991. box-sizing:border-box;
  4992. width:100%;
  4993. }
  4994. #u70339_text {
  4995. border-width:0px;
  4996. word-wrap:break-word;
  4997. text-transform:none;
  4998. }
  4999. #u70340_div {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:80px;
  5005. height:32px;
  5006. background:inherit;
  5007. background-color:rgba(24, 144, 255, 1);
  5008. border:none;
  5009. border-radius:4px;
  5010. -moz-box-shadow:none;
  5011. -webkit-box-shadow:none;
  5012. box-shadow:none;
  5013. font-family:'Microsoft YaHei', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:14px;
  5017. color:#FFFFFF;
  5018. }
  5019. #u70340 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:-754px;
  5023. top:315px;
  5024. width:80px;
  5025. height:32px;
  5026. display:flex;
  5027. font-family:'Microsoft YaHei', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:14px;
  5031. color:#FFFFFF;
  5032. }
  5033. #u70340 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 16px 2px 16px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u70340_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. }
  5045. #u70341_div {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:80px;
  5051. height:32px;
  5052. background:inherit;
  5053. background-color:rgba(255, 255, 255, 1);
  5054. box-sizing:border-box;
  5055. border-width:1px;
  5056. border-style:solid;
  5057. border-color:rgba(215, 215, 215, 1);
  5058. border-radius:4px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-family:'Microsoft YaHei', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. color:rgba(0, 0, 0, 0.647058823529412);
  5067. line-height:21px;
  5068. }
  5069. #u70341 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:-844px;
  5073. top:315px;
  5074. width:80px;
  5075. height:32px;
  5076. display:flex;
  5077. font-family:'Microsoft YaHei', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:14px;
  5081. color:rgba(0, 0, 0, 0.647058823529412);
  5082. line-height:21px;
  5083. }
  5084. #u70341 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:2px 16px 2px 16px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u70341_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. }
  5096. #u70342_img {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:26px;
  5102. height:26px;
  5103. }
  5104. #u70342 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:-1049px;
  5108. top:167px;
  5109. width:26px;
  5110. height:26px;
  5111. display:flex;
  5112. }
  5113. #u70342 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:2px 2px 2px 2px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u70342_text {
  5121. border-width:0px;
  5122. word-wrap:break-word;
  5123. text-transform:none;
  5124. visibility:hidden;
  5125. }
  5126. #u70343_div {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:145px;
  5132. height:30px;
  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:18px;
  5144. color:#000000;
  5145. line-height:30px;
  5146. }
  5147. #u70343 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:-1013px;
  5151. top:167px;
  5152. width:145px;
  5153. height:30px;
  5154. display:flex;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:18px;
  5159. color:#000000;
  5160. line-height:30px;
  5161. }
  5162. #u70343 .text {
  5163. position:absolute;
  5164. align-self:flex-start;
  5165. padding:0px 0px 0px 0px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u70343_text {
  5170. border-width:0px;
  5171. white-space:nowrap;
  5172. text-transform:none;
  5173. }
  5174. #u70344_img {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:10px;
  5180. height:10px;
  5181. }
  5182. #u70344 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:-674px;
  5186. top:156px;
  5187. width:10px;
  5188. height:10px;
  5189. display:flex;
  5190. }
  5191. #u70344 .text {
  5192. position:absolute;
  5193. align-self:center;
  5194. padding:2px 2px 2px 2px;
  5195. box-sizing:border-box;
  5196. width:100%;
  5197. }
  5198. #u70344_text {
  5199. border-width:0px;
  5200. word-wrap:break-word;
  5201. text-transform:none;
  5202. visibility:hidden;
  5203. }
  5204. #u70345_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:1260px;
  5210. height:1180px;
  5211. background:inherit;
  5212. background-color:rgba(255, 255, 255, 1);
  5213. border:none;
  5214. border-radius:0px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. }
  5219. #u70345 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:329px;
  5223. top:50px;
  5224. width:1260px;
  5225. height:1180px;
  5226. display:flex;
  5227. }
  5228. #u70345 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:2px 2px 2px 2px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u70345_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. visibility:hidden;
  5240. }
  5241. #u70346_div {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:87px;
  5247. height:30px;
  5248. background:inherit;
  5249. background-color:rgba(41, 143, 255, 1);
  5250. border:none;
  5251. border-radius:4px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:14px;
  5259. color:#FFFFFF;
  5260. }
  5261. #u70346 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:1402px;
  5265. top:66px;
  5266. width:87px;
  5267. height:30px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:14px;
  5273. color:#FFFFFF;
  5274. }
  5275. #u70346 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:5px 15px 5px 15px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u70346_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u70347 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:0px;
  5293. height:0px;
  5294. }
  5295. #u70348_div {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:59px;
  5301. height:30px;
  5302. background:inherit;
  5303. background-color:rgba(24, 144, 255, 1);
  5304. box-sizing:border-box;
  5305. border-width:1px;
  5306. border-style:solid;
  5307. border-color:rgba(0, 153, 255, 1);
  5308. border-radius:4px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-family:'Microsoft YaHei', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:14px;
  5316. color:#FFFFFF;
  5317. }
  5318. #u70348 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:656px;
  5322. top:109px;
  5323. width:59px;
  5324. height:30px;
  5325. display:flex;
  5326. font-family:'Microsoft YaHei', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:14px;
  5330. color:#FFFFFF;
  5331. }
  5332. #u70348 .text {
  5333. position:absolute;
  5334. align-self:center;
  5335. padding:5px 15px 5px 15px;
  5336. box-sizing:border-box;
  5337. width:100%;
  5338. }
  5339. #u70348_text {
  5340. border-width:0px;
  5341. white-space:nowrap;
  5342. text-transform:none;
  5343. }
  5344. #u70349_div {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:55px;
  5350. height:30px;
  5351. background:inherit;
  5352. background-color:rgba(255, 255, 255, 1);
  5353. box-sizing:border-box;
  5354. border-width:1px;
  5355. border-style:solid;
  5356. border-color:rgba(170, 170, 170, 1);
  5357. border-radius:4px;
  5358. -moz-box-shadow:none;
  5359. -webkit-box-shadow:none;
  5360. box-shadow:none;
  5361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5362. font-weight:400;
  5363. font-style:normal;
  5364. font-size:12px;
  5365. color:#555555;
  5366. }
  5367. #u70349 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:725px;
  5371. top:109px;
  5372. width:55px;
  5373. height:30px;
  5374. display:flex;
  5375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:12px;
  5379. color:#555555;
  5380. }
  5381. #u70349 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:5px 15px 5px 15px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u70349_text {
  5389. border-width:0px;
  5390. white-space:nowrap;
  5391. text-transform:none;
  5392. }
  5393. #u70350 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:0px;
  5399. height:0px;
  5400. }
  5401. #u70351_div {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:140px;
  5407. height:30px;
  5408. background:inherit;
  5409. background-color:rgba(255, 255, 255, 1);
  5410. box-sizing:border-box;
  5411. border-width:1px;
  5412. border-style:solid;
  5413. border-color:rgba(201, 201, 201, 1);
  5414. border-radius:4px;
  5415. -moz-box-shadow:none;
  5416. -webkit-box-shadow:none;
  5417. box-shadow:none;
  5418. font-family:'Microsoft YaHei', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:14px;
  5422. color:#CCCCCC;
  5423. text-align:left;
  5424. }
  5425. #u70351 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:352px;
  5429. top:110px;
  5430. width:140px;
  5431. height:30px;
  5432. display:flex;
  5433. font-family:'Microsoft YaHei', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:14px;
  5437. color:#CCCCCC;
  5438. text-align:left;
  5439. }
  5440. #u70351 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:2px 8px 2px 8px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u70351_text {
  5448. border-width:0px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. visibility:hidden;
  5452. }
  5453. #u70352_input {
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:127px;
  5458. height:25px;
  5459. padding:2px 2px 2px 2px;
  5460. font-family:'Microsoft YaHei', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:10px;
  5464. letter-spacing:normal;
  5465. color:#000000;
  5466. vertical-align:none;
  5467. text-align:left;
  5468. text-transform:none;
  5469. background-color:transparent;
  5470. border-color:transparent;
  5471. }
  5472. #u70352_input.disabled {
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:127px;
  5477. height:25px;
  5478. padding:2px 2px 2px 2px;
  5479. font-family:'Microsoft YaHei', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:10px;
  5483. letter-spacing:normal;
  5484. color:#000000;
  5485. vertical-align:none;
  5486. text-align:left;
  5487. text-transform:none;
  5488. background-color:transparent;
  5489. border-color:transparent;
  5490. }
  5491. #u70352_div {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:127px;
  5497. height:25px;
  5498. background:inherit;
  5499. background-color:rgba(255, 255, 255, 1);
  5500. border:none;
  5501. border-radius:0px;
  5502. -moz-box-shadow:none;
  5503. -webkit-box-shadow:none;
  5504. box-shadow:none;
  5505. font-family:'Microsoft YaHei', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:10px;
  5509. }
  5510. #u70352 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:360px;
  5514. top:111px;
  5515. width:127px;
  5516. height:25px;
  5517. display:flex;
  5518. font-family:'Microsoft YaHei', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:10px;
  5522. }
  5523. #u70352 .text {
  5524. position:absolute;
  5525. align-self:center;
  5526. padding:2px 2px 2px 2px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u70352_div.disabled {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:127px;
  5536. height:25px;
  5537. background:inherit;
  5538. background-color:rgba(240, 240, 240, 1);
  5539. border:none;
  5540. border-radius:0px;
  5541. -moz-box-shadow:none;
  5542. -webkit-box-shadow:none;
  5543. box-shadow:none;
  5544. font-family:'Microsoft YaHei', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:10px;
  5548. }
  5549. #u70352.disabled {
  5550. }
  5551. #u70353 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:352px;
  5555. top:160px;
  5556. width:1214px;
  5557. height:328px;
  5558. }
  5559. #u70354_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:93px;
  5565. height:44px;
  5566. }
  5567. #u70354 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:93px;
  5573. height:44px;
  5574. display:flex;
  5575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:12px;
  5579. color:#FFFFFF;
  5580. }
  5581. #u70354 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 2px 2px 0px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u70354_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. }
  5593. #u70355_img {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:104px;
  5599. height:44px;
  5600. }
  5601. #u70355 {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:93px;
  5605. top:0px;
  5606. width:104px;
  5607. height:44px;
  5608. display:flex;
  5609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:12px;
  5613. color:#FFFFFF;
  5614. }
  5615. #u70355 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 0px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u70355_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. }
  5627. #u70356_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:93px;
  5633. height:44px;
  5634. }
  5635. #u70356 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:197px;
  5639. top:0px;
  5640. width:93px;
  5641. height:44px;
  5642. display:flex;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:12px;
  5647. color:#FFFFFF;
  5648. }
  5649. #u70356 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:2px 2px 2px 0px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u70356_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. }
  5661. #u70357_img {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:108px;
  5667. height:44px;
  5668. }
  5669. #u70357 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:290px;
  5673. top:0px;
  5674. width:108px;
  5675. height:44px;
  5676. display:flex;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:12px;
  5681. color:#FFFFFF;
  5682. }
  5683. #u70357 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 0px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u70357_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. }
  5695. #u70358_img {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:93px;
  5701. height:44px;
  5702. }
  5703. #u70358 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:398px;
  5707. top:0px;
  5708. width:93px;
  5709. height:44px;
  5710. display:flex;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:12px;
  5715. color:#FFFFFF;
  5716. }
  5717. #u70358 .text {
  5718. position:absolute;
  5719. align-self:center;
  5720. padding:2px 2px 2px 0px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u70358_text {
  5725. border-width:0px;
  5726. word-wrap:break-word;
  5727. text-transform:none;
  5728. }
  5729. #u70359_img {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:93px;
  5735. height:44px;
  5736. }
  5737. #u70359 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:491px;
  5741. top:0px;
  5742. width:93px;
  5743. height:44px;
  5744. display:flex;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:12px;
  5749. color:#FFFFFF;
  5750. }
  5751. #u70359 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 0px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u70359_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. }
  5763. #u70360_img {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:108px;
  5769. height:44px;
  5770. }
  5771. #u70360 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:584px;
  5775. top:0px;
  5776. width:108px;
  5777. height:44px;
  5778. display:flex;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:12px;
  5783. color:#FFFFFF;
  5784. }
  5785. #u70360 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 0px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u70360_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. }
  5797. #u70361_img {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:93px;
  5803. height:44px;
  5804. }
  5805. #u70361 {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:692px;
  5809. top:0px;
  5810. width:93px;
  5811. height:44px;
  5812. display:flex;
  5813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5814. font-weight:400;
  5815. font-style:normal;
  5816. font-size:12px;
  5817. color:#FFFFFF;
  5818. }
  5819. #u70361 .text {
  5820. position:absolute;
  5821. align-self:center;
  5822. padding:2px 2px 2px 0px;
  5823. box-sizing:border-box;
  5824. width:100%;
  5825. }
  5826. #u70361_text {
  5827. border-width:0px;
  5828. word-wrap:break-word;
  5829. text-transform:none;
  5830. }
  5831. #u70362_img {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:124px;
  5837. height:44px;
  5838. }
  5839. #u70362 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:785px;
  5843. top:0px;
  5844. width:124px;
  5845. height:44px;
  5846. display:flex;
  5847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:12px;
  5851. color:#FFFFFF;
  5852. }
  5853. #u70362 .text {
  5854. position:absolute;
  5855. align-self:center;
  5856. padding:2px 2px 2px 0px;
  5857. box-sizing:border-box;
  5858. width:100%;
  5859. }
  5860. #u70362_text {
  5861. border-width:0px;
  5862. word-wrap:break-word;
  5863. text-transform:none;
  5864. }
  5865. #u70363_img {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:124px;
  5871. height:44px;
  5872. }
  5873. #u70363 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:909px;
  5877. top:0px;
  5878. width:124px;
  5879. height:44px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:12px;
  5885. color:#FFFFFF;
  5886. }
  5887. #u70363 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:2px 2px 2px 0px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u70363_text {
  5895. border-width:0px;
  5896. word-wrap:break-word;
  5897. text-transform:none;
  5898. }
  5899. #u70364_img {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:101px;
  5905. height:44px;
  5906. }
  5907. #u70364 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:1033px;
  5911. top:0px;
  5912. width:101px;
  5913. height:44px;
  5914. display:flex;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:12px;
  5919. color:#FFFFFF;
  5920. }
  5921. #u70364 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 0px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u70364_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. }
  5933. #u70365_img {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:80px;
  5939. height:44px;
  5940. }
  5941. #u70365 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:1134px;
  5945. top:0px;
  5946. width:80px;
  5947. height:44px;
  5948. display:flex;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:12px;
  5953. color:#FFFFFF;
  5954. }
  5955. #u70365 .text {
  5956. position:absolute;
  5957. align-self:center;
  5958. padding:2px 2px 2px 0px;
  5959. box-sizing:border-box;
  5960. width:100%;
  5961. }
  5962. #u70365_text {
  5963. border-width:0px;
  5964. word-wrap:break-word;
  5965. text-transform:none;
  5966. }
  5967. #u70366_img {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:93px;
  5973. height:38px;
  5974. }
  5975. #u70366 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:44px;
  5980. width:93px;
  5981. height:38px;
  5982. display:flex;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:12px;
  5987. color:#333333;
  5988. }
  5989. #u70366 .text {
  5990. position:absolute;
  5991. align-self:center;
  5992. padding:2px 2px 2px 0px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u70366_text {
  5997. border-width:0px;
  5998. word-wrap:break-word;
  5999. text-transform:none;
  6000. visibility:hidden;
  6001. }
  6002. #u70367_img {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:104px;
  6008. height:38px;
  6009. }
  6010. #u70367 {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:93px;
  6014. top:44px;
  6015. width:104px;
  6016. height:38px;
  6017. display:flex;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:12px;
  6022. color:#333333;
  6023. }
  6024. #u70367 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 0px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u70367_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. visibility:hidden;
  6036. }
  6037. #u70368_img {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:93px;
  6043. height:38px;
  6044. }
  6045. #u70368 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:197px;
  6049. top:44px;
  6050. width:93px;
  6051. height:38px;
  6052. display:flex;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:12px;
  6057. color:#333333;
  6058. }
  6059. #u70368 .text {
  6060. position:absolute;
  6061. align-self:center;
  6062. padding:2px 2px 2px 0px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u70368_text {
  6067. border-width:0px;
  6068. word-wrap:break-word;
  6069. text-transform:none;
  6070. visibility:hidden;
  6071. }
  6072. #u70369_img {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:108px;
  6078. height:38px;
  6079. }
  6080. #u70369 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:290px;
  6084. top:44px;
  6085. width:108px;
  6086. height:38px;
  6087. display:flex;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:12px;
  6092. color:#333333;
  6093. }
  6094. #u70369 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:2px 2px 2px 0px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u70369_text {
  6102. border-width:0px;
  6103. word-wrap:break-word;
  6104. text-transform:none;
  6105. visibility:hidden;
  6106. }
  6107. #u70370_img {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:93px;
  6113. height:38px;
  6114. }
  6115. #u70370 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:398px;
  6119. top:44px;
  6120. width:93px;
  6121. height:38px;
  6122. display:flex;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:12px;
  6127. color:#333333;
  6128. }
  6129. #u70370 .text {
  6130. position:absolute;
  6131. align-self:center;
  6132. padding:2px 2px 2px 0px;
  6133. box-sizing:border-box;
  6134. width:100%;
  6135. }
  6136. #u70370_text {
  6137. border-width:0px;
  6138. word-wrap:break-word;
  6139. text-transform:none;
  6140. visibility:hidden;
  6141. }
  6142. #u70371_img {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:93px;
  6148. height:38px;
  6149. }
  6150. #u70371 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:491px;
  6154. top:44px;
  6155. width:93px;
  6156. height:38px;
  6157. display:flex;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:12px;
  6162. color:#333333;
  6163. }
  6164. #u70371 .text {
  6165. position:absolute;
  6166. align-self:center;
  6167. padding:2px 2px 2px 0px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u70371_text {
  6172. border-width:0px;
  6173. word-wrap:break-word;
  6174. text-transform:none;
  6175. visibility:hidden;
  6176. }
  6177. #u70372_img {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:108px;
  6183. height:38px;
  6184. }
  6185. #u70372 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:584px;
  6189. top:44px;
  6190. width:108px;
  6191. height:38px;
  6192. display:flex;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:12px;
  6197. color:#333333;
  6198. }
  6199. #u70372 .text {
  6200. position:absolute;
  6201. align-self:center;
  6202. padding:2px 2px 2px 0px;
  6203. box-sizing:border-box;
  6204. width:100%;
  6205. }
  6206. #u70372_text {
  6207. border-width:0px;
  6208. word-wrap:break-word;
  6209. text-transform:none;
  6210. visibility:hidden;
  6211. }
  6212. #u70373_img {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:0px;
  6216. top:0px;
  6217. width:93px;
  6218. height:38px;
  6219. }
  6220. #u70373 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:692px;
  6224. top:44px;
  6225. width:93px;
  6226. height:38px;
  6227. display:flex;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:12px;
  6232. color:#333333;
  6233. }
  6234. #u70373 .text {
  6235. position:absolute;
  6236. align-self:center;
  6237. padding:2px 2px 2px 0px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u70373_text {
  6242. border-width:0px;
  6243. word-wrap:break-word;
  6244. text-transform:none;
  6245. }
  6246. #u70374_img {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:124px;
  6252. height:38px;
  6253. }
  6254. #u70374 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:785px;
  6258. top:44px;
  6259. width:124px;
  6260. height:38px;
  6261. display:flex;
  6262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:12px;
  6266. color:#333333;
  6267. }
  6268. #u70374 .text {
  6269. position:absolute;
  6270. align-self:center;
  6271. padding:2px 2px 2px 0px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u70374_text {
  6276. border-width:0px;
  6277. word-wrap:break-word;
  6278. text-transform:none;
  6279. }
  6280. #u70375_img {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:124px;
  6286. height:38px;
  6287. }
  6288. #u70375 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:909px;
  6292. top:44px;
  6293. width:124px;
  6294. height:38px;
  6295. display:flex;
  6296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:12px;
  6300. color:#333333;
  6301. }
  6302. #u70375 .text {
  6303. position:absolute;
  6304. align-self:center;
  6305. padding:2px 2px 2px 0px;
  6306. box-sizing:border-box;
  6307. width:100%;
  6308. }
  6309. #u70375_text {
  6310. border-width:0px;
  6311. word-wrap:break-word;
  6312. text-transform:none;
  6313. }
  6314. #u70376_img {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:101px;
  6320. height:38px;
  6321. }
  6322. #u70376 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:1033px;
  6326. top:44px;
  6327. width:101px;
  6328. height:38px;
  6329. display:flex;
  6330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. font-size:12px;
  6334. color:#1890FF;
  6335. }
  6336. #u70376 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:2px 2px 2px 0px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u70376_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. }
  6348. #u70377_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:80px;
  6354. height:38px;
  6355. }
  6356. #u70377 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:1134px;
  6360. top:44px;
  6361. width:80px;
  6362. height:38px;
  6363. display:flex;
  6364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6365. font-weight:400;
  6366. font-style:normal;
  6367. font-size:12px;
  6368. color:#0089FE;
  6369. }
  6370. #u70377 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:2px 2px 2px 0px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u70377_text {
  6378. border-width:0px;
  6379. word-wrap:break-word;
  6380. text-transform:none;
  6381. }
  6382. #u70378_img {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:0px;
  6387. width:93px;
  6388. height:38px;
  6389. }
  6390. #u70378 {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:82px;
  6395. width:93px;
  6396. height:38px;
  6397. display:flex;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. font-size:12px;
  6402. color:#333333;
  6403. }
  6404. #u70378 .text {
  6405. position:absolute;
  6406. align-self:center;
  6407. padding:2px 2px 2px 0px;
  6408. box-sizing:border-box;
  6409. width:100%;
  6410. }
  6411. #u70378_text {
  6412. border-width:0px;
  6413. word-wrap:break-word;
  6414. text-transform:none;
  6415. visibility:hidden;
  6416. }
  6417. #u70379_img {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:104px;
  6423. height:38px;
  6424. }
  6425. #u70379 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:93px;
  6429. top:82px;
  6430. width:104px;
  6431. height:38px;
  6432. display:flex;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:12px;
  6437. color:#333333;
  6438. }
  6439. #u70379 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:2px 2px 2px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u70379_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. visibility:hidden;
  6451. }
  6452. #u70380_img {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:93px;
  6458. height:38px;
  6459. }
  6460. #u70380 {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:197px;
  6464. top:82px;
  6465. width:93px;
  6466. height:38px;
  6467. display:flex;
  6468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6469. font-weight:400;
  6470. font-style:normal;
  6471. font-size:12px;
  6472. color:#333333;
  6473. }
  6474. #u70380 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:2px 2px 2px 0px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u70380_text {
  6482. border-width:0px;
  6483. word-wrap:break-word;
  6484. text-transform:none;
  6485. visibility:hidden;
  6486. }
  6487. #u70381_img {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:108px;
  6493. height:38px;
  6494. }
  6495. #u70381 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:290px;
  6499. top:82px;
  6500. width:108px;
  6501. height:38px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:12px;
  6507. color:#333333;
  6508. }
  6509. #u70381 .text {
  6510. position:absolute;
  6511. align-self:center;
  6512. padding:2px 2px 2px 0px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u70381_text {
  6517. border-width:0px;
  6518. word-wrap:break-word;
  6519. text-transform:none;
  6520. visibility:hidden;
  6521. }
  6522. #u70382_img {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:93px;
  6528. height:38px;
  6529. }
  6530. #u70382 {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:398px;
  6534. top:82px;
  6535. width:93px;
  6536. height:38px;
  6537. display:flex;
  6538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6539. font-weight:400;
  6540. font-style:normal;
  6541. font-size:12px;
  6542. color:#333333;
  6543. }
  6544. #u70382 .text {
  6545. position:absolute;
  6546. align-self:center;
  6547. padding:2px 2px 2px 0px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u70382_text {
  6552. border-width:0px;
  6553. word-wrap:break-word;
  6554. text-transform:none;
  6555. visibility:hidden;
  6556. }
  6557. #u70383_img {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:93px;
  6563. height:38px;
  6564. }
  6565. #u70383 {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:491px;
  6569. top:82px;
  6570. width:93px;
  6571. height:38px;
  6572. display:flex;
  6573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:12px;
  6577. color:#333333;
  6578. }
  6579. #u70383 .text {
  6580. position:absolute;
  6581. align-self:center;
  6582. padding:2px 2px 2px 0px;
  6583. box-sizing:border-box;
  6584. width:100%;
  6585. }
  6586. #u70383_text {
  6587. border-width:0px;
  6588. word-wrap:break-word;
  6589. text-transform:none;
  6590. visibility:hidden;
  6591. }
  6592. #u70384_img {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:108px;
  6598. height:38px;
  6599. }
  6600. #u70384 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:584px;
  6604. top:82px;
  6605. width:108px;
  6606. height:38px;
  6607. display:flex;
  6608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6609. font-weight:400;
  6610. font-style:normal;
  6611. font-size:12px;
  6612. color:#333333;
  6613. }
  6614. #u70384 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:2px 2px 2px 0px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u70384_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. visibility:hidden;
  6626. }
  6627. #u70385_img {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:93px;
  6633. height:38px;
  6634. }
  6635. #u70385 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:692px;
  6639. top:82px;
  6640. width:93px;
  6641. height:38px;
  6642. display:flex;
  6643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:12px;
  6647. color:#333333;
  6648. }
  6649. #u70385 .text {
  6650. position:absolute;
  6651. align-self:center;
  6652. padding:2px 2px 2px 0px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u70385_text {
  6657. border-width:0px;
  6658. word-wrap:break-word;
  6659. text-transform:none;
  6660. visibility:hidden;
  6661. }
  6662. #u70386_img {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:124px;
  6668. height:38px;
  6669. }
  6670. #u70386 {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:785px;
  6674. top:82px;
  6675. width:124px;
  6676. height:38px;
  6677. display:flex;
  6678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. font-size:12px;
  6682. color:#333333;
  6683. }
  6684. #u70386 .text {
  6685. position:absolute;
  6686. align-self:center;
  6687. padding:2px 2px 2px 0px;
  6688. box-sizing:border-box;
  6689. width:100%;
  6690. }
  6691. #u70386_text {
  6692. border-width:0px;
  6693. word-wrap:break-word;
  6694. text-transform:none;
  6695. visibility:hidden;
  6696. }
  6697. #u70387_img {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:124px;
  6703. height:38px;
  6704. }
  6705. #u70387 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:909px;
  6709. top:82px;
  6710. width:124px;
  6711. height:38px;
  6712. display:flex;
  6713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:12px;
  6717. color:#333333;
  6718. }
  6719. #u70387 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 0px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u70387_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u70388_img {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:101px;
  6738. height:38px;
  6739. }
  6740. #u70388 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:1033px;
  6744. top:82px;
  6745. width:101px;
  6746. height:38px;
  6747. display:flex;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:12px;
  6752. color:#333333;
  6753. }
  6754. #u70388 .text {
  6755. position:absolute;
  6756. align-self:center;
  6757. padding:2px 2px 2px 0px;
  6758. box-sizing:border-box;
  6759. width:100%;
  6760. }
  6761. #u70388_text {
  6762. border-width:0px;
  6763. word-wrap:break-word;
  6764. text-transform:none;
  6765. visibility:hidden;
  6766. }
  6767. #u70389_img {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:80px;
  6773. height:38px;
  6774. }
  6775. #u70389 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:1134px;
  6779. top:82px;
  6780. width:80px;
  6781. height:38px;
  6782. display:flex;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:12px;
  6787. color:#0089FE;
  6788. }
  6789. #u70389 .text {
  6790. position:absolute;
  6791. align-self:center;
  6792. padding:2px 2px 2px 0px;
  6793. box-sizing:border-box;
  6794. width:100%;
  6795. }
  6796. #u70389_text {
  6797. border-width:0px;
  6798. word-wrap:break-word;
  6799. text-transform:none;
  6800. }
  6801. #u70390_img {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:93px;
  6807. height:38px;
  6808. }
  6809. #u70390 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:120px;
  6814. width:93px;
  6815. height:38px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:12px;
  6821. color:#333333;
  6822. }
  6823. #u70390 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:2px 2px 2px 0px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u70390_text {
  6831. border-width:0px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. visibility:hidden;
  6835. }
  6836. #u70391_img {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:104px;
  6842. height:38px;
  6843. }
  6844. #u70391 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:93px;
  6848. top:120px;
  6849. width:104px;
  6850. height:38px;
  6851. display:flex;
  6852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6853. font-weight:400;
  6854. font-style:normal;
  6855. font-size:12px;
  6856. color:#333333;
  6857. }
  6858. #u70391 .text {
  6859. position:absolute;
  6860. align-self:center;
  6861. padding:2px 2px 2px 0px;
  6862. box-sizing:border-box;
  6863. width:100%;
  6864. }
  6865. #u70391_text {
  6866. border-width:0px;
  6867. word-wrap:break-word;
  6868. text-transform:none;
  6869. visibility:hidden;
  6870. }
  6871. #u70392_img {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:93px;
  6877. height:38px;
  6878. }
  6879. #u70392 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:197px;
  6883. top:120px;
  6884. width:93px;
  6885. height:38px;
  6886. display:flex;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:12px;
  6891. color:#333333;
  6892. }
  6893. #u70392 .text {
  6894. position:absolute;
  6895. align-self:center;
  6896. padding:2px 2px 2px 0px;
  6897. box-sizing:border-box;
  6898. width:100%;
  6899. }
  6900. #u70392_text {
  6901. border-width:0px;
  6902. word-wrap:break-word;
  6903. text-transform:none;
  6904. visibility:hidden;
  6905. }
  6906. #u70393_img {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:108px;
  6912. height:38px;
  6913. }
  6914. #u70393 {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:290px;
  6918. top:120px;
  6919. width:108px;
  6920. height:38px;
  6921. display:flex;
  6922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6923. font-weight:400;
  6924. font-style:normal;
  6925. font-size:12px;
  6926. color:#333333;
  6927. }
  6928. #u70393 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:2px 2px 2px 0px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u70393_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. visibility:hidden;
  6940. }
  6941. #u70394_img {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:93px;
  6947. height:38px;
  6948. }
  6949. #u70394 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:398px;
  6953. top:120px;
  6954. width:93px;
  6955. height:38px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:12px;
  6961. color:#333333;
  6962. }
  6963. #u70394 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:2px 2px 2px 0px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u70394_text {
  6971. border-width:0px;
  6972. word-wrap:break-word;
  6973. text-transform:none;
  6974. visibility:hidden;
  6975. }
  6976. #u70395_img {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:93px;
  6982. height:38px;
  6983. }
  6984. #u70395 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:491px;
  6988. top:120px;
  6989. width:93px;
  6990. height:38px;
  6991. display:flex;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. font-size:12px;
  6996. color:#333333;
  6997. }
  6998. #u70395 .text {
  6999. position:absolute;
  7000. align-self:center;
  7001. padding:2px 2px 2px 0px;
  7002. box-sizing:border-box;
  7003. width:100%;
  7004. }
  7005. #u70395_text {
  7006. border-width:0px;
  7007. word-wrap:break-word;
  7008. text-transform:none;
  7009. visibility:hidden;
  7010. }
  7011. #u70396_img {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:108px;
  7017. height:38px;
  7018. }
  7019. #u70396 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:584px;
  7023. top:120px;
  7024. width:108px;
  7025. height:38px;
  7026. display:flex;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:12px;
  7031. color:#333333;
  7032. }
  7033. #u70396 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:2px 2px 2px 0px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u70396_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. visibility:hidden;
  7045. }
  7046. #u70397_img {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:93px;
  7052. height:38px;
  7053. }
  7054. #u70397 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:692px;
  7058. top:120px;
  7059. width:93px;
  7060. height:38px;
  7061. display:flex;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:12px;
  7066. color:#333333;
  7067. }
  7068. #u70397 .text {
  7069. position:absolute;
  7070. align-self:center;
  7071. padding:2px 2px 2px 0px;
  7072. box-sizing:border-box;
  7073. width:100%;
  7074. }
  7075. #u70397_text {
  7076. border-width:0px;
  7077. word-wrap:break-word;
  7078. text-transform:none;
  7079. visibility:hidden;
  7080. }
  7081. #u70398_img {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:124px;
  7087. height:38px;
  7088. }
  7089. #u70398 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:785px;
  7093. top:120px;
  7094. width:124px;
  7095. height:38px;
  7096. display:flex;
  7097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:12px;
  7101. color:#333333;
  7102. }
  7103. #u70398 .text {
  7104. position:absolute;
  7105. align-self:center;
  7106. padding:2px 2px 2px 0px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u70398_text {
  7111. border-width:0px;
  7112. word-wrap:break-word;
  7113. text-transform:none;
  7114. visibility:hidden;
  7115. }
  7116. #u70399_img {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:124px;
  7122. height:38px;
  7123. }
  7124. #u70399 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:909px;
  7128. top:120px;
  7129. width:124px;
  7130. height:38px;
  7131. display:flex;
  7132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. font-size:12px;
  7136. color:#333333;
  7137. }
  7138. #u70399 .text {
  7139. position:absolute;
  7140. align-self:center;
  7141. padding:2px 2px 2px 0px;
  7142. box-sizing:border-box;
  7143. width:100%;
  7144. }
  7145. #u70399_text {
  7146. border-width:0px;
  7147. word-wrap:break-word;
  7148. text-transform:none;
  7149. visibility:hidden;
  7150. }
  7151. #u70400_img {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:101px;
  7157. height:38px;
  7158. }
  7159. #u70400 {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:1033px;
  7163. top:120px;
  7164. width:101px;
  7165. height:38px;
  7166. display:flex;
  7167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7168. font-weight:400;
  7169. font-style:normal;
  7170. font-size:12px;
  7171. color:#333333;
  7172. }
  7173. #u70400 .text {
  7174. position:absolute;
  7175. align-self:center;
  7176. padding:2px 2px 2px 0px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u70400_text {
  7181. border-width:0px;
  7182. word-wrap:break-word;
  7183. text-transform:none;
  7184. visibility:hidden;
  7185. }
  7186. #u70401_img {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:80px;
  7192. height:38px;
  7193. }
  7194. #u70401 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:1134px;
  7198. top:120px;
  7199. width:80px;
  7200. height:38px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:12px;
  7206. color:#0089FE;
  7207. }
  7208. #u70401 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u70401_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. visibility:hidden;
  7220. }
  7221. #u70402_img {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:93px;
  7227. height:38px;
  7228. }
  7229. #u70402 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:158px;
  7234. width:93px;
  7235. height:38px;
  7236. display:flex;
  7237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:12px;
  7241. color:#333333;
  7242. }
  7243. #u70402 .text {
  7244. position:absolute;
  7245. align-self:center;
  7246. padding:2px 2px 2px 0px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u70402_text {
  7251. border-width:0px;
  7252. word-wrap:break-word;
  7253. text-transform:none;
  7254. visibility:hidden;
  7255. }
  7256. #u70403_img {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:104px;
  7262. height:38px;
  7263. }
  7264. #u70403 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:93px;
  7268. top:158px;
  7269. width:104px;
  7270. height:38px;
  7271. display:flex;
  7272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:12px;
  7276. color:#333333;
  7277. }
  7278. #u70403 .text {
  7279. position:absolute;
  7280. align-self:center;
  7281. padding:2px 2px 2px 0px;
  7282. box-sizing:border-box;
  7283. width:100%;
  7284. }
  7285. #u70403_text {
  7286. border-width:0px;
  7287. word-wrap:break-word;
  7288. text-transform:none;
  7289. visibility:hidden;
  7290. }
  7291. #u70404_img {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:93px;
  7297. height:38px;
  7298. }
  7299. #u70404 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:197px;
  7303. top:158px;
  7304. width:93px;
  7305. height:38px;
  7306. display:flex;
  7307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:12px;
  7311. color:#333333;
  7312. }
  7313. #u70404 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 0px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u70404_text {
  7321. border-width:0px;
  7322. word-wrap:break-word;
  7323. text-transform:none;
  7324. visibility:hidden;
  7325. }
  7326. #u70405_img {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:108px;
  7332. height:38px;
  7333. }
  7334. #u70405 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:290px;
  7338. top:158px;
  7339. width:108px;
  7340. height:38px;
  7341. display:flex;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:12px;
  7346. color:#333333;
  7347. }
  7348. #u70405 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u70405_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. visibility:hidden;
  7360. }
  7361. #u70406_img {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:93px;
  7367. height:38px;
  7368. }
  7369. #u70406 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:398px;
  7373. top:158px;
  7374. width:93px;
  7375. height:38px;
  7376. display:flex;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:12px;
  7381. color:#333333;
  7382. }
  7383. #u70406 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:2px 2px 2px 0px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u70406_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. visibility:hidden;
  7395. }
  7396. #u70407_img {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:93px;
  7402. height:38px;
  7403. }
  7404. #u70407 {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:491px;
  7408. top:158px;
  7409. width:93px;
  7410. height:38px;
  7411. display:flex;
  7412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:12px;
  7416. color:#333333;
  7417. }
  7418. #u70407 .text {
  7419. position:absolute;
  7420. align-self:center;
  7421. padding:2px 2px 2px 0px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u70407_text {
  7426. border-width:0px;
  7427. word-wrap:break-word;
  7428. text-transform:none;
  7429. visibility:hidden;
  7430. }
  7431. #u70408_img {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:108px;
  7437. height:38px;
  7438. }
  7439. #u70408 {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:584px;
  7443. top:158px;
  7444. width:108px;
  7445. height:38px;
  7446. display:flex;
  7447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:12px;
  7451. color:#333333;
  7452. }
  7453. #u70408 .text {
  7454. position:absolute;
  7455. align-self:center;
  7456. padding:2px 2px 2px 0px;
  7457. box-sizing:border-box;
  7458. width:100%;
  7459. }
  7460. #u70408_text {
  7461. border-width:0px;
  7462. word-wrap:break-word;
  7463. text-transform:none;
  7464. visibility:hidden;
  7465. }
  7466. #u70409_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:93px;
  7472. height:38px;
  7473. }
  7474. #u70409 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:692px;
  7478. top:158px;
  7479. width:93px;
  7480. height:38px;
  7481. display:flex;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:12px;
  7486. color:#333333;
  7487. }
  7488. #u70409 .text {
  7489. position:absolute;
  7490. align-self:center;
  7491. padding:2px 2px 2px 0px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u70409_text {
  7496. border-width:0px;
  7497. word-wrap:break-word;
  7498. text-transform:none;
  7499. visibility:hidden;
  7500. }
  7501. #u70410_img {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:124px;
  7507. height:38px;
  7508. }
  7509. #u70410 {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:785px;
  7513. top:158px;
  7514. width:124px;
  7515. height:38px;
  7516. display:flex;
  7517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:12px;
  7521. color:#333333;
  7522. }
  7523. #u70410 .text {
  7524. position:absolute;
  7525. align-self:center;
  7526. padding:2px 2px 2px 0px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u70410_text {
  7531. border-width:0px;
  7532. word-wrap:break-word;
  7533. text-transform:none;
  7534. visibility:hidden;
  7535. }
  7536. #u70411_img {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:124px;
  7542. height:38px;
  7543. }
  7544. #u70411 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:909px;
  7548. top:158px;
  7549. width:124px;
  7550. height:38px;
  7551. display:flex;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:12px;
  7556. color:#333333;
  7557. }
  7558. #u70411 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:2px 2px 2px 0px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u70411_text {
  7566. border-width:0px;
  7567. word-wrap:break-word;
  7568. text-transform:none;
  7569. visibility:hidden;
  7570. }
  7571. #u70412_img {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:101px;
  7577. height:38px;
  7578. }
  7579. #u70412 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:1033px;
  7583. top:158px;
  7584. width:101px;
  7585. height:38px;
  7586. display:flex;
  7587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:12px;
  7591. color:#333333;
  7592. }
  7593. #u70412 .text {
  7594. position:absolute;
  7595. align-self:center;
  7596. padding:2px 2px 2px 0px;
  7597. box-sizing:border-box;
  7598. width:100%;
  7599. }
  7600. #u70412_text {
  7601. border-width:0px;
  7602. word-wrap:break-word;
  7603. text-transform:none;
  7604. visibility:hidden;
  7605. }
  7606. #u70413_img {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:80px;
  7612. height:38px;
  7613. }
  7614. #u70413 {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:1134px;
  7618. top:158px;
  7619. width:80px;
  7620. height:38px;
  7621. display:flex;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. font-size:12px;
  7626. color:#AAAAAA;
  7627. }
  7628. #u70413 .text {
  7629. position:absolute;
  7630. align-self:center;
  7631. padding:2px 2px 2px 0px;
  7632. box-sizing:border-box;
  7633. width:100%;
  7634. }
  7635. #u70413_text {
  7636. border-width:0px;
  7637. word-wrap:break-word;
  7638. text-transform:none;
  7639. visibility:hidden;
  7640. }
  7641. #u70414_img {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:93px;
  7647. height:35px;
  7648. }
  7649. #u70414 {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:0px;
  7653. top:196px;
  7654. width:93px;
  7655. height:35px;
  7656. display:flex;
  7657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7658. font-weight:400;
  7659. font-style:normal;
  7660. font-size:12px;
  7661. color:#333333;
  7662. }
  7663. #u70414 .text {
  7664. position:absolute;
  7665. align-self:center;
  7666. padding:2px 2px 2px 0px;
  7667. box-sizing:border-box;
  7668. width:100%;
  7669. }
  7670. #u70414_text {
  7671. border-width:0px;
  7672. word-wrap:break-word;
  7673. text-transform:none;
  7674. visibility:hidden;
  7675. }
  7676. #u70415_img {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:104px;
  7682. height:35px;
  7683. }
  7684. #u70415 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:93px;
  7688. top:196px;
  7689. width:104px;
  7690. height:35px;
  7691. display:flex;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:12px;
  7696. color:#333333;
  7697. }
  7698. #u70415 .text {
  7699. position:absolute;
  7700. align-self:center;
  7701. padding:2px 2px 2px 0px;
  7702. box-sizing:border-box;
  7703. width:100%;
  7704. }
  7705. #u70415_text {
  7706. border-width:0px;
  7707. word-wrap:break-word;
  7708. text-transform:none;
  7709. visibility:hidden;
  7710. }
  7711. #u70416_img {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:93px;
  7717. height:35px;
  7718. }
  7719. #u70416 {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:197px;
  7723. top:196px;
  7724. width:93px;
  7725. height:35px;
  7726. display:flex;
  7727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:12px;
  7731. color:#333333;
  7732. }
  7733. #u70416 .text {
  7734. position:absolute;
  7735. align-self:center;
  7736. padding:2px 2px 2px 0px;
  7737. box-sizing:border-box;
  7738. width:100%;
  7739. }
  7740. #u70416_text {
  7741. border-width:0px;
  7742. word-wrap:break-word;
  7743. text-transform:none;
  7744. visibility:hidden;
  7745. }
  7746. #u70417_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:108px;
  7752. height:35px;
  7753. }
  7754. #u70417 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:290px;
  7758. top:196px;
  7759. width:108px;
  7760. height:35px;
  7761. display:flex;
  7762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:12px;
  7766. color:#333333;
  7767. }
  7768. #u70417 .text {
  7769. position:absolute;
  7770. align-self:center;
  7771. padding:2px 2px 2px 0px;
  7772. box-sizing:border-box;
  7773. width:100%;
  7774. }
  7775. #u70417_text {
  7776. border-width:0px;
  7777. word-wrap:break-word;
  7778. text-transform:none;
  7779. visibility:hidden;
  7780. }
  7781. #u70418_img {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:93px;
  7787. height:35px;
  7788. }
  7789. #u70418 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:398px;
  7793. top:196px;
  7794. width:93px;
  7795. height:35px;
  7796. display:flex;
  7797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7798. font-weight:400;
  7799. font-style:normal;
  7800. font-size:12px;
  7801. color:#333333;
  7802. }
  7803. #u70418 .text {
  7804. position:absolute;
  7805. align-self:center;
  7806. padding:2px 2px 2px 0px;
  7807. box-sizing:border-box;
  7808. width:100%;
  7809. }
  7810. #u70418_text {
  7811. border-width:0px;
  7812. word-wrap:break-word;
  7813. text-transform:none;
  7814. visibility:hidden;
  7815. }
  7816. #u70419_img {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:93px;
  7822. height:35px;
  7823. }
  7824. #u70419 {
  7825. border-width:0px;
  7826. position:absolute;
  7827. left:491px;
  7828. top:196px;
  7829. width:93px;
  7830. height:35px;
  7831. display:flex;
  7832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7833. font-weight:400;
  7834. font-style:normal;
  7835. font-size:12px;
  7836. color:#333333;
  7837. }
  7838. #u70419 .text {
  7839. position:absolute;
  7840. align-self:center;
  7841. padding:2px 2px 2px 0px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u70419_text {
  7846. border-width:0px;
  7847. word-wrap:break-word;
  7848. text-transform:none;
  7849. visibility:hidden;
  7850. }
  7851. #u70420_img {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:108px;
  7857. height:35px;
  7858. }
  7859. #u70420 {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:584px;
  7863. top:196px;
  7864. width:108px;
  7865. height:35px;
  7866. display:flex;
  7867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:12px;
  7871. color:#333333;
  7872. }
  7873. #u70420 .text {
  7874. position:absolute;
  7875. align-self:center;
  7876. padding:2px 2px 2px 0px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u70420_text {
  7881. border-width:0px;
  7882. word-wrap:break-word;
  7883. text-transform:none;
  7884. visibility:hidden;
  7885. }
  7886. #u70421_img {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:0px;
  7890. top:0px;
  7891. width:93px;
  7892. height:35px;
  7893. }
  7894. #u70421 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:692px;
  7898. top:196px;
  7899. width:93px;
  7900. height:35px;
  7901. display:flex;
  7902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:12px;
  7906. color:#333333;
  7907. }
  7908. #u70421 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u70421_text {
  7916. border-width:0px;
  7917. word-wrap:break-word;
  7918. text-transform:none;
  7919. visibility:hidden;
  7920. }
  7921. #u70422_img {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:124px;
  7927. height:35px;
  7928. }
  7929. #u70422 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:785px;
  7933. top:196px;
  7934. width:124px;
  7935. height:35px;
  7936. display:flex;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. color:#333333;
  7942. }
  7943. #u70422 .text {
  7944. position:absolute;
  7945. align-self:center;
  7946. padding:2px 2px 2px 0px;
  7947. box-sizing:border-box;
  7948. width:100%;
  7949. }
  7950. #u70422_text {
  7951. border-width:0px;
  7952. word-wrap:break-word;
  7953. text-transform:none;
  7954. visibility:hidden;
  7955. }
  7956. #u70423_img {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:0px;
  7960. top:0px;
  7961. width:124px;
  7962. height:35px;
  7963. }
  7964. #u70423 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:909px;
  7968. top:196px;
  7969. width:124px;
  7970. height:35px;
  7971. display:flex;
  7972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:12px;
  7976. color:#333333;
  7977. }
  7978. #u70423 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 2px 2px 0px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u70423_text {
  7986. border-width:0px;
  7987. word-wrap:break-word;
  7988. text-transform:none;
  7989. visibility:hidden;
  7990. }
  7991. #u70424_img {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:101px;
  7997. height:35px;
  7998. }
  7999. #u70424 {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:1033px;
  8003. top:196px;
  8004. width:101px;
  8005. height:35px;
  8006. display:flex;
  8007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8008. font-weight:400;
  8009. font-style:normal;
  8010. font-size:12px;
  8011. color:#333333;
  8012. }
  8013. #u70424 .text {
  8014. position:absolute;
  8015. align-self:center;
  8016. padding:2px 2px 2px 0px;
  8017. box-sizing:border-box;
  8018. width:100%;
  8019. }
  8020. #u70424_text {
  8021. border-width:0px;
  8022. word-wrap:break-word;
  8023. text-transform:none;
  8024. visibility:hidden;
  8025. }
  8026. #u70425_img {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:80px;
  8032. height:35px;
  8033. }
  8034. #u70425 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:1134px;
  8038. top:196px;
  8039. width:80px;
  8040. height:35px;
  8041. display:flex;
  8042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:12px;
  8046. color:#AAAAAA;
  8047. }
  8048. #u70425 .text {
  8049. position:absolute;
  8050. align-self:center;
  8051. padding:2px 2px 2px 0px;
  8052. box-sizing:border-box;
  8053. width:100%;
  8054. }
  8055. #u70425_text {
  8056. border-width:0px;
  8057. word-wrap:break-word;
  8058. text-transform:none;
  8059. visibility:hidden;
  8060. }
  8061. #u70426_img {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:93px;
  8067. height:35px;
  8068. }
  8069. #u70426 {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:231px;
  8074. width:93px;
  8075. height:35px;
  8076. display:flex;
  8077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8078. font-weight:400;
  8079. font-style:normal;
  8080. font-size:12px;
  8081. color:#333333;
  8082. }
  8083. #u70426 .text {
  8084. position:absolute;
  8085. align-self:center;
  8086. padding:2px 2px 2px 0px;
  8087. box-sizing:border-box;
  8088. width:100%;
  8089. }
  8090. #u70426_text {
  8091. border-width:0px;
  8092. word-wrap:break-word;
  8093. text-transform:none;
  8094. visibility:hidden;
  8095. }
  8096. #u70427_img {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:104px;
  8102. height:35px;
  8103. }
  8104. #u70427 {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:93px;
  8108. top:231px;
  8109. width:104px;
  8110. height:35px;
  8111. display:flex;
  8112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8113. font-weight:400;
  8114. font-style:normal;
  8115. font-size:12px;
  8116. color:#333333;
  8117. }
  8118. #u70427 .text {
  8119. position:absolute;
  8120. align-self:center;
  8121. padding:2px 2px 2px 0px;
  8122. box-sizing:border-box;
  8123. width:100%;
  8124. }
  8125. #u70427_text {
  8126. border-width:0px;
  8127. word-wrap:break-word;
  8128. text-transform:none;
  8129. visibility:hidden;
  8130. }
  8131. #u70428_img {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:93px;
  8137. height:35px;
  8138. }
  8139. #u70428 {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:197px;
  8143. top:231px;
  8144. width:93px;
  8145. height:35px;
  8146. display:flex;
  8147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8148. font-weight:400;
  8149. font-style:normal;
  8150. font-size:12px;
  8151. color:#333333;
  8152. }
  8153. #u70428 .text {
  8154. position:absolute;
  8155. align-self:center;
  8156. padding:2px 2px 2px 0px;
  8157. box-sizing:border-box;
  8158. width:100%;
  8159. }
  8160. #u70428_text {
  8161. border-width:0px;
  8162. word-wrap:break-word;
  8163. text-transform:none;
  8164. visibility:hidden;
  8165. }
  8166. #u70429_img {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:108px;
  8172. height:35px;
  8173. }
  8174. #u70429 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:290px;
  8178. top:231px;
  8179. width:108px;
  8180. height:35px;
  8181. display:flex;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:12px;
  8186. color:#333333;
  8187. }
  8188. #u70429 .text {
  8189. position:absolute;
  8190. align-self:center;
  8191. padding:2px 2px 2px 0px;
  8192. box-sizing:border-box;
  8193. width:100%;
  8194. }
  8195. #u70429_text {
  8196. border-width:0px;
  8197. word-wrap:break-word;
  8198. text-transform:none;
  8199. visibility:hidden;
  8200. }
  8201. #u70430_img {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:93px;
  8207. height:35px;
  8208. }
  8209. #u70430 {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:398px;
  8213. top:231px;
  8214. width:93px;
  8215. height:35px;
  8216. display:flex;
  8217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8218. font-weight:400;
  8219. font-style:normal;
  8220. font-size:12px;
  8221. color:#333333;
  8222. }
  8223. #u70430 .text {
  8224. position:absolute;
  8225. align-self:center;
  8226. padding:2px 2px 2px 0px;
  8227. box-sizing:border-box;
  8228. width:100%;
  8229. }
  8230. #u70430_text {
  8231. border-width:0px;
  8232. word-wrap:break-word;
  8233. text-transform:none;
  8234. visibility:hidden;
  8235. }
  8236. #u70431_img {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:0px;
  8240. top:0px;
  8241. width:93px;
  8242. height:35px;
  8243. }
  8244. #u70431 {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:491px;
  8248. top:231px;
  8249. width:93px;
  8250. height:35px;
  8251. display:flex;
  8252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:12px;
  8256. color:#333333;
  8257. }
  8258. #u70431 .text {
  8259. position:absolute;
  8260. align-self:center;
  8261. padding:2px 2px 2px 0px;
  8262. box-sizing:border-box;
  8263. width:100%;
  8264. }
  8265. #u70431_text {
  8266. border-width:0px;
  8267. word-wrap:break-word;
  8268. text-transform:none;
  8269. visibility:hidden;
  8270. }
  8271. #u70432_img {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:108px;
  8277. height:35px;
  8278. }
  8279. #u70432 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:584px;
  8283. top:231px;
  8284. width:108px;
  8285. height:35px;
  8286. display:flex;
  8287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8288. font-weight:400;
  8289. font-style:normal;
  8290. font-size:12px;
  8291. color:#333333;
  8292. }
  8293. #u70432 .text {
  8294. position:absolute;
  8295. align-self:center;
  8296. padding:2px 2px 2px 0px;
  8297. box-sizing:border-box;
  8298. width:100%;
  8299. }
  8300. #u70432_text {
  8301. border-width:0px;
  8302. word-wrap:break-word;
  8303. text-transform:none;
  8304. visibility:hidden;
  8305. }
  8306. #u70433_img {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:93px;
  8312. height:35px;
  8313. }
  8314. #u70433 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:692px;
  8318. top:231px;
  8319. width:93px;
  8320. height:35px;
  8321. display:flex;
  8322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. font-size:12px;
  8326. color:#333333;
  8327. }
  8328. #u70433 .text {
  8329. position:absolute;
  8330. align-self:center;
  8331. padding:2px 2px 2px 0px;
  8332. box-sizing:border-box;
  8333. width:100%;
  8334. }
  8335. #u70433_text {
  8336. border-width:0px;
  8337. word-wrap:break-word;
  8338. text-transform:none;
  8339. visibility:hidden;
  8340. }
  8341. #u70434_img {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:124px;
  8347. height:35px;
  8348. }
  8349. #u70434 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:785px;
  8353. top:231px;
  8354. width:124px;
  8355. height:35px;
  8356. display:flex;
  8357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:12px;
  8361. color:#333333;
  8362. }
  8363. #u70434 .text {
  8364. position:absolute;
  8365. align-self:center;
  8366. padding:2px 2px 2px 0px;
  8367. box-sizing:border-box;
  8368. width:100%;
  8369. }
  8370. #u70434_text {
  8371. border-width:0px;
  8372. word-wrap:break-word;
  8373. text-transform:none;
  8374. visibility:hidden;
  8375. }
  8376. #u70435_img {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:124px;
  8382. height:35px;
  8383. }
  8384. #u70435 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:909px;
  8388. top:231px;
  8389. width:124px;
  8390. height:35px;
  8391. display:flex;
  8392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:12px;
  8396. color:#333333;
  8397. }
  8398. #u70435 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:2px 2px 2px 0px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u70435_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. visibility:hidden;
  8410. }
  8411. #u70436_img {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:0px;
  8415. top:0px;
  8416. width:101px;
  8417. height:35px;
  8418. }
  8419. #u70436 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:1033px;
  8423. top:231px;
  8424. width:101px;
  8425. height:35px;
  8426. display:flex;
  8427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:12px;
  8431. color:#333333;
  8432. }
  8433. #u70436 .text {
  8434. position:absolute;
  8435. align-self:center;
  8436. padding:2px 2px 2px 0px;
  8437. box-sizing:border-box;
  8438. width:100%;
  8439. }
  8440. #u70436_text {
  8441. border-width:0px;
  8442. word-wrap:break-word;
  8443. text-transform:none;
  8444. visibility:hidden;
  8445. }
  8446. #u70437_img {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:80px;
  8452. height:35px;
  8453. }
  8454. #u70437 {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:1134px;
  8458. top:231px;
  8459. width:80px;
  8460. height:35px;
  8461. display:flex;
  8462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:12px;
  8466. color:#333333;
  8467. }
  8468. #u70437 .text {
  8469. position:absolute;
  8470. align-self:center;
  8471. padding:2px 2px 2px 0px;
  8472. box-sizing:border-box;
  8473. width:100%;
  8474. }
  8475. #u70437_text {
  8476. border-width:0px;
  8477. word-wrap:break-word;
  8478. text-transform:none;
  8479. visibility:hidden;
  8480. }
  8481. #u70438_img {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:93px;
  8487. height:32px;
  8488. }
  8489. #u70438 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:0px;
  8493. top:266px;
  8494. width:93px;
  8495. height:32px;
  8496. display:flex;
  8497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:12px;
  8501. color:#333333;
  8502. }
  8503. #u70438 .text {
  8504. position:absolute;
  8505. align-self:center;
  8506. padding:2px 2px 2px 0px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u70438_text {
  8511. border-width:0px;
  8512. word-wrap:break-word;
  8513. text-transform:none;
  8514. visibility:hidden;
  8515. }
  8516. #u70439_img {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:0px;
  8520. top:0px;
  8521. width:104px;
  8522. height:32px;
  8523. }
  8524. #u70439 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:93px;
  8528. top:266px;
  8529. width:104px;
  8530. height:32px;
  8531. display:flex;
  8532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:12px;
  8536. color:#333333;
  8537. }
  8538. #u70439 .text {
  8539. position:absolute;
  8540. align-self:center;
  8541. padding:2px 2px 2px 0px;
  8542. box-sizing:border-box;
  8543. width:100%;
  8544. }
  8545. #u70439_text {
  8546. border-width:0px;
  8547. word-wrap:break-word;
  8548. text-transform:none;
  8549. visibility:hidden;
  8550. }
  8551. #u70440_img {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:93px;
  8557. height:32px;
  8558. }
  8559. #u70440 {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:197px;
  8563. top:266px;
  8564. width:93px;
  8565. height:32px;
  8566. display:flex;
  8567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8568. font-weight:400;
  8569. font-style:normal;
  8570. font-size:12px;
  8571. color:#333333;
  8572. }
  8573. #u70440 .text {
  8574. position:absolute;
  8575. align-self:center;
  8576. padding:2px 2px 2px 0px;
  8577. box-sizing:border-box;
  8578. width:100%;
  8579. }
  8580. #u70440_text {
  8581. border-width:0px;
  8582. word-wrap:break-word;
  8583. text-transform:none;
  8584. visibility:hidden;
  8585. }
  8586. #u70441_img {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:0px;
  8590. top:0px;
  8591. width:108px;
  8592. height:32px;
  8593. }
  8594. #u70441 {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:290px;
  8598. top:266px;
  8599. width:108px;
  8600. height:32px;
  8601. display:flex;
  8602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8603. font-weight:400;
  8604. font-style:normal;
  8605. font-size:12px;
  8606. color:#333333;
  8607. }
  8608. #u70441 .text {
  8609. position:absolute;
  8610. align-self:center;
  8611. padding:2px 2px 2px 0px;
  8612. box-sizing:border-box;
  8613. width:100%;
  8614. }
  8615. #u70441_text {
  8616. border-width:0px;
  8617. word-wrap:break-word;
  8618. text-transform:none;
  8619. visibility:hidden;
  8620. }
  8621. #u70442_img {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:0px;
  8625. top:0px;
  8626. width:93px;
  8627. height:32px;
  8628. }
  8629. #u70442 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:398px;
  8633. top:266px;
  8634. width:93px;
  8635. height:32px;
  8636. display:flex;
  8637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:12px;
  8641. color:#333333;
  8642. }
  8643. #u70442 .text {
  8644. position:absolute;
  8645. align-self:center;
  8646. padding:2px 2px 2px 0px;
  8647. box-sizing:border-box;
  8648. width:100%;
  8649. }
  8650. #u70442_text {
  8651. border-width:0px;
  8652. word-wrap:break-word;
  8653. text-transform:none;
  8654. visibility:hidden;
  8655. }
  8656. #u70443_img {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:93px;
  8662. height:32px;
  8663. }
  8664. #u70443 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:491px;
  8668. top:266px;
  8669. width:93px;
  8670. height:32px;
  8671. display:flex;
  8672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:12px;
  8676. color:#333333;
  8677. }
  8678. #u70443 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:2px 2px 2px 0px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u70443_text {
  8686. border-width:0px;
  8687. word-wrap:break-word;
  8688. text-transform:none;
  8689. visibility:hidden;
  8690. }
  8691. #u70444_img {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:108px;
  8697. height:32px;
  8698. }
  8699. #u70444 {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:584px;
  8703. top:266px;
  8704. width:108px;
  8705. height:32px;
  8706. display:flex;
  8707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8708. font-weight:400;
  8709. font-style:normal;
  8710. font-size:12px;
  8711. color:#333333;
  8712. }
  8713. #u70444 .text {
  8714. position:absolute;
  8715. align-self:center;
  8716. padding:2px 2px 2px 0px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u70444_text {
  8721. border-width:0px;
  8722. word-wrap:break-word;
  8723. text-transform:none;
  8724. visibility:hidden;
  8725. }
  8726. #u70445_img {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:93px;
  8732. height:32px;
  8733. }
  8734. #u70445 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:692px;
  8738. top:266px;
  8739. width:93px;
  8740. height:32px;
  8741. display:flex;
  8742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8743. font-weight:400;
  8744. font-style:normal;
  8745. font-size:12px;
  8746. color:#333333;
  8747. }
  8748. #u70445 .text {
  8749. position:absolute;
  8750. align-self:center;
  8751. padding:2px 2px 2px 0px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u70445_text {
  8756. border-width:0px;
  8757. word-wrap:break-word;
  8758. text-transform:none;
  8759. visibility:hidden;
  8760. }
  8761. #u70446_img {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:0px;
  8765. top:0px;
  8766. width:124px;
  8767. height:32px;
  8768. }
  8769. #u70446 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:785px;
  8773. top:266px;
  8774. width:124px;
  8775. height:32px;
  8776. display:flex;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:12px;
  8781. color:#333333;
  8782. }
  8783. #u70446 .text {
  8784. position:absolute;
  8785. align-self:center;
  8786. padding:2px 2px 2px 0px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u70446_text {
  8791. border-width:0px;
  8792. word-wrap:break-word;
  8793. text-transform:none;
  8794. visibility:hidden;
  8795. }
  8796. #u70447_img {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:0px;
  8800. top:0px;
  8801. width:124px;
  8802. height:32px;
  8803. }
  8804. #u70447 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:909px;
  8808. top:266px;
  8809. width:124px;
  8810. height:32px;
  8811. display:flex;
  8812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:12px;
  8816. color:#333333;
  8817. }
  8818. #u70447 .text {
  8819. position:absolute;
  8820. align-self:center;
  8821. padding:2px 2px 2px 0px;
  8822. box-sizing:border-box;
  8823. width:100%;
  8824. }
  8825. #u70447_text {
  8826. border-width:0px;
  8827. word-wrap:break-word;
  8828. text-transform:none;
  8829. visibility:hidden;
  8830. }
  8831. #u70448_img {
  8832. border-width:0px;
  8833. position:absolute;
  8834. left:0px;
  8835. top:0px;
  8836. width:101px;
  8837. height:32px;
  8838. }
  8839. #u70448 {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:1033px;
  8843. top:266px;
  8844. width:101px;
  8845. height:32px;
  8846. display:flex;
  8847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:12px;
  8851. color:#333333;
  8852. }
  8853. #u70448 .text {
  8854. position:absolute;
  8855. align-self:center;
  8856. padding:2px 2px 2px 0px;
  8857. box-sizing:border-box;
  8858. width:100%;
  8859. }
  8860. #u70448_text {
  8861. border-width:0px;
  8862. word-wrap:break-word;
  8863. text-transform:none;
  8864. visibility:hidden;
  8865. }
  8866. #u70449_img {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:0px;
  8870. top:0px;
  8871. width:80px;
  8872. height:32px;
  8873. }
  8874. #u70449 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:1134px;
  8878. top:266px;
  8879. width:80px;
  8880. height:32px;
  8881. display:flex;
  8882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:12px;
  8886. color:#333333;
  8887. }
  8888. #u70449 .text {
  8889. position:absolute;
  8890. align-self:center;
  8891. padding:2px 2px 2px 0px;
  8892. box-sizing:border-box;
  8893. width:100%;
  8894. }
  8895. #u70449_text {
  8896. border-width:0px;
  8897. word-wrap:break-word;
  8898. text-transform:none;
  8899. visibility:hidden;
  8900. }
  8901. #u70450_img {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:0px;
  8905. top:0px;
  8906. width:93px;
  8907. height:30px;
  8908. }
  8909. #u70450 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:298px;
  8914. width:93px;
  8915. height:30px;
  8916. display:flex;
  8917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. font-size:12px;
  8921. color:#333333;
  8922. }
  8923. #u70450 .text {
  8924. position:absolute;
  8925. align-self:center;
  8926. padding:2px 2px 2px 0px;
  8927. box-sizing:border-box;
  8928. width:100%;
  8929. }
  8930. #u70450_text {
  8931. border-width:0px;
  8932. word-wrap:break-word;
  8933. text-transform:none;
  8934. visibility:hidden;
  8935. }
  8936. #u70451_img {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:0px;
  8940. top:0px;
  8941. width:104px;
  8942. height:30px;
  8943. }
  8944. #u70451 {
  8945. border-width:0px;
  8946. position:absolute;
  8947. left:93px;
  8948. top:298px;
  8949. width:104px;
  8950. height:30px;
  8951. display:flex;
  8952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8953. font-weight:400;
  8954. font-style:normal;
  8955. font-size:12px;
  8956. color:#333333;
  8957. }
  8958. #u70451 .text {
  8959. position:absolute;
  8960. align-self:center;
  8961. padding:2px 2px 2px 0px;
  8962. box-sizing:border-box;
  8963. width:100%;
  8964. }
  8965. #u70451_text {
  8966. border-width:0px;
  8967. word-wrap:break-word;
  8968. text-transform:none;
  8969. visibility:hidden;
  8970. }
  8971. #u70452_img {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:93px;
  8977. height:30px;
  8978. }
  8979. #u70452 {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:197px;
  8983. top:298px;
  8984. width:93px;
  8985. height:30px;
  8986. display:flex;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:12px;
  8991. color:#333333;
  8992. }
  8993. #u70452 .text {
  8994. position:absolute;
  8995. align-self:center;
  8996. padding:2px 2px 2px 0px;
  8997. box-sizing:border-box;
  8998. width:100%;
  8999. }
  9000. #u70452_text {
  9001. border-width:0px;
  9002. word-wrap:break-word;
  9003. text-transform:none;
  9004. visibility:hidden;
  9005. }
  9006. #u70453_img {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:0px;
  9010. top:0px;
  9011. width:108px;
  9012. height:30px;
  9013. }
  9014. #u70453 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:290px;
  9018. top:298px;
  9019. width:108px;
  9020. height:30px;
  9021. display:flex;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:12px;
  9026. color:#333333;
  9027. }
  9028. #u70453 .text {
  9029. position:absolute;
  9030. align-self:center;
  9031. padding:2px 2px 2px 0px;
  9032. box-sizing:border-box;
  9033. width:100%;
  9034. }
  9035. #u70453_text {
  9036. border-width:0px;
  9037. word-wrap:break-word;
  9038. text-transform:none;
  9039. visibility:hidden;
  9040. }
  9041. #u70454_img {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:93px;
  9047. height:30px;
  9048. }
  9049. #u70454 {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:398px;
  9053. top:298px;
  9054. width:93px;
  9055. height:30px;
  9056. display:flex;
  9057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9058. font-weight:400;
  9059. font-style:normal;
  9060. font-size:12px;
  9061. color:#333333;
  9062. }
  9063. #u70454 .text {
  9064. position:absolute;
  9065. align-self:center;
  9066. padding:2px 2px 2px 0px;
  9067. box-sizing:border-box;
  9068. width:100%;
  9069. }
  9070. #u70454_text {
  9071. border-width:0px;
  9072. word-wrap:break-word;
  9073. text-transform:none;
  9074. visibility:hidden;
  9075. }
  9076. #u70455_img {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:0px;
  9080. top:0px;
  9081. width:93px;
  9082. height:30px;
  9083. }
  9084. #u70455 {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:491px;
  9088. top:298px;
  9089. width:93px;
  9090. height:30px;
  9091. display:flex;
  9092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. font-size:12px;
  9096. color:#333333;
  9097. }
  9098. #u70455 .text {
  9099. position:absolute;
  9100. align-self:center;
  9101. padding:2px 2px 2px 0px;
  9102. box-sizing:border-box;
  9103. width:100%;
  9104. }
  9105. #u70455_text {
  9106. border-width:0px;
  9107. word-wrap:break-word;
  9108. text-transform:none;
  9109. visibility:hidden;
  9110. }
  9111. #u70456_img {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:0px;
  9115. top:0px;
  9116. width:108px;
  9117. height:30px;
  9118. }
  9119. #u70456 {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:584px;
  9123. top:298px;
  9124. width:108px;
  9125. height:30px;
  9126. display:flex;
  9127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:12px;
  9131. color:#333333;
  9132. }
  9133. #u70456 .text {
  9134. position:absolute;
  9135. align-self:center;
  9136. padding:2px 2px 2px 0px;
  9137. box-sizing:border-box;
  9138. width:100%;
  9139. }
  9140. #u70456_text {
  9141. border-width:0px;
  9142. word-wrap:break-word;
  9143. text-transform:none;
  9144. visibility:hidden;
  9145. }
  9146. #u70457_img {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:0px;
  9150. top:0px;
  9151. width:93px;
  9152. height:30px;
  9153. }
  9154. #u70457 {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:692px;
  9158. top:298px;
  9159. width:93px;
  9160. height:30px;
  9161. display:flex;
  9162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:12px;
  9166. color:#333333;
  9167. }
  9168. #u70457 .text {
  9169. position:absolute;
  9170. align-self:center;
  9171. padding:2px 2px 2px 0px;
  9172. box-sizing:border-box;
  9173. width:100%;
  9174. }
  9175. #u70457_text {
  9176. border-width:0px;
  9177. word-wrap:break-word;
  9178. text-transform:none;
  9179. visibility:hidden;
  9180. }
  9181. #u70458_img {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:124px;
  9187. height:30px;
  9188. }
  9189. #u70458 {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:785px;
  9193. top:298px;
  9194. width:124px;
  9195. height:30px;
  9196. display:flex;
  9197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9198. font-weight:400;
  9199. font-style:normal;
  9200. font-size:12px;
  9201. color:#333333;
  9202. }
  9203. #u70458 .text {
  9204. position:absolute;
  9205. align-self:center;
  9206. padding:2px 2px 2px 0px;
  9207. box-sizing:border-box;
  9208. width:100%;
  9209. }
  9210. #u70458_text {
  9211. border-width:0px;
  9212. word-wrap:break-word;
  9213. text-transform:none;
  9214. visibility:hidden;
  9215. }
  9216. #u70459_img {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:124px;
  9222. height:30px;
  9223. }
  9224. #u70459 {
  9225. border-width:0px;
  9226. position:absolute;
  9227. left:909px;
  9228. top:298px;
  9229. width:124px;
  9230. height:30px;
  9231. display:flex;
  9232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9233. font-weight:400;
  9234. font-style:normal;
  9235. font-size:12px;
  9236. color:#333333;
  9237. }
  9238. #u70459 .text {
  9239. position:absolute;
  9240. align-self:center;
  9241. padding:2px 2px 2px 0px;
  9242. box-sizing:border-box;
  9243. width:100%;
  9244. }
  9245. #u70459_text {
  9246. border-width:0px;
  9247. word-wrap:break-word;
  9248. text-transform:none;
  9249. visibility:hidden;
  9250. }
  9251. #u70460_img {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:101px;
  9257. height:30px;
  9258. }
  9259. #u70460 {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:1033px;
  9263. top:298px;
  9264. width:101px;
  9265. height:30px;
  9266. display:flex;
  9267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9268. font-weight:400;
  9269. font-style:normal;
  9270. font-size:12px;
  9271. color:#333333;
  9272. }
  9273. #u70460 .text {
  9274. position:absolute;
  9275. align-self:center;
  9276. padding:2px 2px 2px 0px;
  9277. box-sizing:border-box;
  9278. width:100%;
  9279. }
  9280. #u70460_text {
  9281. border-width:0px;
  9282. word-wrap:break-word;
  9283. text-transform:none;
  9284. visibility:hidden;
  9285. }
  9286. #u70461_img {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:0px;
  9290. top:0px;
  9291. width:80px;
  9292. height:30px;
  9293. }
  9294. #u70461 {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:1134px;
  9298. top:298px;
  9299. width:80px;
  9300. height:30px;
  9301. display:flex;
  9302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9303. font-weight:400;
  9304. font-style:normal;
  9305. font-size:12px;
  9306. color:#333333;
  9307. }
  9308. #u70461 .text {
  9309. position:absolute;
  9310. align-self:center;
  9311. padding:2px 2px 2px 0px;
  9312. box-sizing:border-box;
  9313. width:100%;
  9314. }
  9315. #u70461_text {
  9316. border-width:0px;
  9317. word-wrap:break-word;
  9318. text-transform:none;
  9319. visibility:hidden;
  9320. }
  9321. #u70462_div {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:55px;
  9327. height:50px;
  9328. background:inherit;
  9329. background-color:rgba(255, 255, 255, 0);
  9330. border:none;
  9331. border-left:0px;
  9332. border-top:0px;
  9333. border-right:0px;
  9334. border-radius:0px;
  9335. border-bottom-right-radius:0px;
  9336. border-bottom-left-radius:0px;
  9337. -moz-box-shadow:none;
  9338. -webkit-box-shadow:none;
  9339. box-shadow:none;
  9340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9341. font-weight:400;
  9342. font-style:normal;
  9343. font-size:18px;
  9344. color:#000000;
  9345. line-height:40px;
  9346. }
  9347. #u70462 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:352px;
  9351. top:50px;
  9352. width:55px;
  9353. height:50px;
  9354. display:flex;
  9355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9356. font-weight:400;
  9357. font-style:normal;
  9358. font-size:18px;
  9359. color:#000000;
  9360. line-height:40px;
  9361. }
  9362. #u70462 .text {
  9363. position:absolute;
  9364. align-self:center;
  9365. padding:0px 0px 0px 0px;
  9366. box-sizing:border-box;
  9367. width:100%;
  9368. }
  9369. #u70462_text {
  9370. border-width:0px;
  9371. white-space:nowrap;
  9372. text-transform:none;
  9373. }
  9374. #u70463 {
  9375. border-width:0px;
  9376. position:absolute;
  9377. left:0px;
  9378. top:0px;
  9379. width:0px;
  9380. height:0px;
  9381. }
  9382. #u70464_div {
  9383. border-width:0px;
  9384. position:absolute;
  9385. left:0px;
  9386. top:0px;
  9387. width:140px;
  9388. height:30px;
  9389. background:inherit;
  9390. background-color:rgba(255, 255, 255, 1);
  9391. box-sizing:border-box;
  9392. border-width:1px;
  9393. border-style:solid;
  9394. border-color:rgba(215, 215, 215, 1);
  9395. border-radius:4px;
  9396. -moz-box-shadow:none;
  9397. -webkit-box-shadow:none;
  9398. box-shadow:none;
  9399. font-size:11px;
  9400. }
  9401. #u70464 {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:502px;
  9405. top:110px;
  9406. width:140px;
  9407. height:30px;
  9408. display:flex;
  9409. font-size:11px;
  9410. }
  9411. #u70464 .text {
  9412. position:absolute;
  9413. align-self:center;
  9414. padding:2px 2px 2px 2px;
  9415. box-sizing:border-box;
  9416. width:100%;
  9417. }
  9418. #u70464_text {
  9419. border-width:0px;
  9420. word-wrap:break-word;
  9421. text-transform:none;
  9422. visibility:hidden;
  9423. }
  9424. #u70465_input {
  9425. position:absolute;
  9426. left:0px;
  9427. top:0px;
  9428. width:126px;
  9429. height:23px;
  9430. padding:2px 2px 2px 2px;
  9431. font-family:'ArialMT', 'Arial', sans-serif;
  9432. font-weight:400;
  9433. font-style:normal;
  9434. font-size:11px;
  9435. letter-spacing:normal;
  9436. color:#AAAAAA;
  9437. vertical-align:none;
  9438. text-align:left;
  9439. text-transform:none;
  9440. background-color:transparent;
  9441. border-color:transparent;
  9442. }
  9443. #u70465_input.disabled {
  9444. position:absolute;
  9445. left:0px;
  9446. top:0px;
  9447. width:126px;
  9448. height:23px;
  9449. padding:2px 2px 2px 2px;
  9450. font-family:'ArialMT', 'Arial', sans-serif;
  9451. font-weight:400;
  9452. font-style:normal;
  9453. font-size:11px;
  9454. letter-spacing:normal;
  9455. color:#AAAAAA;
  9456. vertical-align:none;
  9457. text-align:left;
  9458. text-transform:none;
  9459. background-color:transparent;
  9460. border-color:transparent;
  9461. }
  9462. #u70465_div {
  9463. border-width:0px;
  9464. position:absolute;
  9465. left:0px;
  9466. top:0px;
  9467. width:126px;
  9468. height:23px;
  9469. background:inherit;
  9470. background-color:rgba(255, 255, 255, 1);
  9471. border:none;
  9472. border-radius:0px;
  9473. -moz-box-shadow:none;
  9474. -webkit-box-shadow:none;
  9475. box-shadow:none;
  9476. font-size:11px;
  9477. color:#AAAAAA;
  9478. }
  9479. #u70465 {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:509px;
  9483. top:112px;
  9484. width:126px;
  9485. height:23px;
  9486. display:flex;
  9487. font-size:11px;
  9488. color:#AAAAAA;
  9489. }
  9490. #u70465 .text {
  9491. position:absolute;
  9492. align-self:flex-start;
  9493. padding:2px 2px 2px 2px;
  9494. box-sizing:border-box;
  9495. width:100%;
  9496. }
  9497. #u70465_div.disabled {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:0px;
  9501. top:0px;
  9502. width:126px;
  9503. height:23px;
  9504. background:inherit;
  9505. background-color:rgba(240, 240, 240, 1);
  9506. border:none;
  9507. border-radius:0px;
  9508. -moz-box-shadow:none;
  9509. -webkit-box-shadow:none;
  9510. box-shadow:none;
  9511. font-size:11px;
  9512. color:#AAAAAA;
  9513. }
  9514. #u70465.disabled {
  9515. }
  9516. .u70465_input_option {
  9517. font-size:11px;
  9518. }
  9519. #u70466_img {
  9520. border-width:0px;
  9521. position:absolute;
  9522. left:-5px;
  9523. top:-5px;
  9524. width:1161px;
  9525. height:427px;
  9526. }
  9527. #u70466 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:414px;
  9531. top:725px;
  9532. width:1151px;
  9533. height:417px;
  9534. display:flex;
  9535. }
  9536. #u70466 .text {
  9537. position:absolute;
  9538. align-self:center;
  9539. padding:2px 2px 2px 2px;
  9540. box-sizing:border-box;
  9541. width:100%;
  9542. }
  9543. #u70466_text {
  9544. border-width:0px;
  9545. word-wrap:break-word;
  9546. text-transform:none;
  9547. visibility:hidden;
  9548. }
  9549. #u70468 {
  9550. border-width:0px;
  9551. position:absolute;
  9552. left:0px;
  9553. top:0px;
  9554. width:0px;
  9555. height:0px;
  9556. }
  9557. #u70469_img {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:200px;
  9563. height:1191px;
  9564. }
  9565. #u70469 {
  9566. border-width:0px;
  9567. position:absolute;
  9568. left:120px;
  9569. top:50px;
  9570. width:200px;
  9571. height:1191px;
  9572. display:flex;
  9573. }
  9574. #u70469 .text {
  9575. position:absolute;
  9576. align-self:center;
  9577. padding:2px 2px 2px 2px;
  9578. box-sizing:border-box;
  9579. width:100%;
  9580. }
  9581. #u70469_text {
  9582. border-width:0px;
  9583. word-wrap:break-word;
  9584. text-transform:none;
  9585. visibility:hidden;
  9586. }
  9587. #u70470_div {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:200px;
  9593. height:60px;
  9594. background:inherit;
  9595. background-color:rgba(224, 231, 247, 1);
  9596. border:none;
  9597. border-radius:0px;
  9598. -moz-box-shadow:none;
  9599. -webkit-box-shadow:none;
  9600. box-shadow:none;
  9601. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9602. font-weight:500;
  9603. font-style:normal;
  9604. font-size:18px;
  9605. }
  9606. #u70470 {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:120px;
  9610. top:50px;
  9611. width:200px;
  9612. height:60px;
  9613. display:flex;
  9614. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9615. font-weight:500;
  9616. font-style:normal;
  9617. font-size:18px;
  9618. }
  9619. #u70470 .text {
  9620. position:absolute;
  9621. align-self:center;
  9622. padding:0px 0px 0px 20px;
  9623. box-sizing:border-box;
  9624. width:100%;
  9625. }
  9626. #u70470_text {
  9627. border-width:0px;
  9628. word-wrap:break-word;
  9629. text-transform:none;
  9630. }
  9631. #u70471 {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:120px;
  9635. top:130px;
  9636. width:200px;
  9637. height:1078px;
  9638. }
  9639. #u70471_state0 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:0px;
  9643. top:0px;
  9644. width:200px;
  9645. height:1078px;
  9646. overflow:auto;
  9647. -webkit-overflow-scrolling:touch;
  9648. -ms-overflow-x:hidden;
  9649. overflow-x:hidden;
  9650. background-image:none;
  9651. border:none;
  9652. border-radius:0px;
  9653. -moz-box-shadow:none;
  9654. -webkit-box-shadow:none;
  9655. box-shadow:none;
  9656. }
  9657. #u70471_state0_content {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:0px;
  9661. top:0px;
  9662. width:1px;
  9663. height:1px;
  9664. }
  9665. #u70472_div {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:97px;
  9671. height:22px;
  9672. background:inherit;
  9673. background-color:rgba(255, 255, 255, 0);
  9674. border:none;
  9675. border-radius:0px;
  9676. -moz-box-shadow:none;
  9677. -webkit-box-shadow:none;
  9678. box-shadow:none;
  9679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9680. font-weight:400;
  9681. font-style:normal;
  9682. font-size:16px;
  9683. }
  9684. #u70472 {
  9685. border-width:0px;
  9686. position:absolute;
  9687. left:30px;
  9688. top:0px;
  9689. width:97px;
  9690. height:22px;
  9691. display:flex;
  9692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9693. font-weight:400;
  9694. font-style:normal;
  9695. font-size:16px;
  9696. }
  9697. #u70472 .text {
  9698. position:absolute;
  9699. align-self:flex-start;
  9700. padding:0px 0px 0px 0px;
  9701. box-sizing:border-box;
  9702. width:100%;
  9703. }
  9704. #u70472_text {
  9705. border-width:0px;
  9706. word-wrap:break-word;
  9707. text-transform:none;
  9708. }
  9709. #u70473_div {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:0px;
  9713. top:0px;
  9714. width:65px;
  9715. height:22px;
  9716. background:inherit;
  9717. background-color:rgba(255, 255, 255, 0);
  9718. border:none;
  9719. border-radius:0px;
  9720. -moz-box-shadow:none;
  9721. -webkit-box-shadow:none;
  9722. box-shadow:none;
  9723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9724. font-weight:400;
  9725. font-style:normal;
  9726. font-size:16px;
  9727. }
  9728. #u70473 {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:30px;
  9732. top:42px;
  9733. width:65px;
  9734. height:22px;
  9735. display:flex;
  9736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9737. font-weight:400;
  9738. font-style:normal;
  9739. font-size:16px;
  9740. }
  9741. #u70473 .text {
  9742. position:absolute;
  9743. align-self:flex-start;
  9744. padding:0px 0px 0px 0px;
  9745. box-sizing:border-box;
  9746. width:100%;
  9747. }
  9748. #u70473_text {
  9749. border-width:0px;
  9750. white-space:nowrap;
  9751. text-transform:none;
  9752. }
  9753. #u70474_div {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:49px;
  9759. height:22px;
  9760. background:inherit;
  9761. background-color:rgba(255, 255, 255, 0);
  9762. border:none;
  9763. border-radius:0px;
  9764. -moz-box-shadow:none;
  9765. -webkit-box-shadow:none;
  9766. box-shadow:none;
  9767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:16px;
  9771. }
  9772. #u70474 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:30px;
  9776. top:145px;
  9777. width:49px;
  9778. height:22px;
  9779. display:flex;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:16px;
  9784. }
  9785. #u70474 .text {
  9786. position:absolute;
  9787. align-self:flex-start;
  9788. padding:0px 0px 0px 0px;
  9789. box-sizing:border-box;
  9790. width:100%;
  9791. }
  9792. #u70474_text {
  9793. border-width:0px;
  9794. white-space:nowrap;
  9795. text-transform:none;
  9796. }
  9797. #u70475_div {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:0px;
  9801. top:0px;
  9802. width:97px;
  9803. height:22px;
  9804. background:inherit;
  9805. background-color:rgba(255, 255, 255, 0);
  9806. border:none;
  9807. border-radius:0px;
  9808. -moz-box-shadow:none;
  9809. -webkit-box-shadow:none;
  9810. box-shadow:none;
  9811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9812. font-weight:400;
  9813. font-style:normal;
  9814. font-size:16px;
  9815. }
  9816. #u70475 {
  9817. border-width:0px;
  9818. position:absolute;
  9819. left:30px;
  9820. top:187px;
  9821. width:97px;
  9822. height:22px;
  9823. display:flex;
  9824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9825. font-weight:400;
  9826. font-style:normal;
  9827. font-size:16px;
  9828. }
  9829. #u70475 .text {
  9830. position:absolute;
  9831. align-self:flex-start;
  9832. padding:0px 0px 0px 0px;
  9833. box-sizing:border-box;
  9834. width:100%;
  9835. }
  9836. #u70475_text {
  9837. border-width:0px;
  9838. word-wrap:break-word;
  9839. text-transform:none;
  9840. }
  9841. #u70476_img {
  9842. border-width:0px;
  9843. position:absolute;
  9844. left:0px;
  9845. top:0px;
  9846. width:201px;
  9847. height:2px;
  9848. }
  9849. #u70476 {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:0px;
  9853. top:84px;
  9854. width:200px;
  9855. height:1px;
  9856. display:flex;
  9857. }
  9858. #u70476 .text {
  9859. position:absolute;
  9860. align-self:center;
  9861. padding:2px 2px 2px 2px;
  9862. box-sizing:border-box;
  9863. width:100%;
  9864. }
  9865. #u70476_text {
  9866. border-width:0px;
  9867. word-wrap:break-word;
  9868. text-transform:none;
  9869. visibility:hidden;
  9870. }
  9871. #u70477_div {
  9872. border-width:0px;
  9873. position:absolute;
  9874. left:0px;
  9875. top:0px;
  9876. width:49px;
  9877. height:17px;
  9878. background:inherit;
  9879. background-color:rgba(255, 255, 255, 0);
  9880. border:none;
  9881. border-radius:0px;
  9882. -moz-box-shadow:none;
  9883. -webkit-box-shadow:none;
  9884. box-shadow:none;
  9885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9886. font-weight:400;
  9887. font-style:normal;
  9888. font-size:12px;
  9889. color:#AAAAAA;
  9890. }
  9891. #u70477 {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:30px;
  9895. top:105px;
  9896. width:49px;
  9897. height:17px;
  9898. display:flex;
  9899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9900. font-weight:400;
  9901. font-style:normal;
  9902. font-size:12px;
  9903. color:#AAAAAA;
  9904. }
  9905. #u70477 .text {
  9906. position:absolute;
  9907. align-self:flex-start;
  9908. padding:0px 0px 0px 0px;
  9909. box-sizing:border-box;
  9910. width:100%;
  9911. }
  9912. #u70477_text {
  9913. border-width:0px;
  9914. white-space:nowrap;
  9915. text-transform:none;
  9916. }
  9917. #u70478_div {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:0px;
  9921. top:0px;
  9922. width:97px;
  9923. height:22px;
  9924. background:inherit;
  9925. background-color:rgba(255, 255, 255, 0);
  9926. border:none;
  9927. border-radius:0px;
  9928. -moz-box-shadow:none;
  9929. -webkit-box-shadow:none;
  9930. box-shadow:none;
  9931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9932. font-weight:400;
  9933. font-style:normal;
  9934. font-size:16px;
  9935. }
  9936. #u70478 {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:30px;
  9940. top:229px;
  9941. width:97px;
  9942. height:22px;
  9943. display:flex;
  9944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9945. font-weight:400;
  9946. font-style:normal;
  9947. font-size:16px;
  9948. }
  9949. #u70478 .text {
  9950. position:absolute;
  9951. align-self:flex-start;
  9952. padding:0px 0px 0px 0px;
  9953. box-sizing:border-box;
  9954. width:100%;
  9955. }
  9956. #u70478_text {
  9957. border-width:0px;
  9958. word-wrap:break-word;
  9959. text-transform:none;
  9960. }
  9961. #u70479_div {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:0px;
  9965. top:0px;
  9966. width:65px;
  9967. height:22px;
  9968. background:inherit;
  9969. background-color:rgba(255, 255, 255, 0);
  9970. border:none;
  9971. border-radius:0px;
  9972. -moz-box-shadow:none;
  9973. -webkit-box-shadow:none;
  9974. box-shadow:none;
  9975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9976. font-weight:400;
  9977. font-style:normal;
  9978. font-size:16px;
  9979. }
  9980. #u70479 {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:30px;
  9984. top:271px;
  9985. width:65px;
  9986. height:22px;
  9987. display:flex;
  9988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9989. font-weight:400;
  9990. font-style:normal;
  9991. font-size:16px;
  9992. }
  9993. #u70479 .text {
  9994. position:absolute;
  9995. align-self:flex-start;
  9996. padding:0px 0px 0px 0px;
  9997. box-sizing:border-box;
  9998. width:100%;
  9999. }
  10000. #u70479_text {
  10001. border-width:0px;
  10002. white-space:nowrap;
  10003. text-transform:none;
  10004. }
  10005. #u70480_img {
  10006. border-width:0px;
  10007. position:absolute;
  10008. left:0px;
  10009. top:0px;
  10010. width:201px;
  10011. height:2px;
  10012. }
  10013. #u70480 {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:0px;
  10017. top:313px;
  10018. width:200px;
  10019. height:1px;
  10020. display:flex;
  10021. }
  10022. #u70480 .text {
  10023. position:absolute;
  10024. align-self:center;
  10025. padding:2px 2px 2px 2px;
  10026. box-sizing:border-box;
  10027. width:100%;
  10028. }
  10029. #u70480_text {
  10030. border-width:0px;
  10031. word-wrap:break-word;
  10032. text-transform:none;
  10033. visibility:hidden;
  10034. }
  10035. #u70481_div {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:0px;
  10039. top:0px;
  10040. width:65px;
  10041. height:22px;
  10042. background:inherit;
  10043. background-color:rgba(255, 255, 255, 0);
  10044. border:none;
  10045. border-radius:0px;
  10046. -moz-box-shadow:none;
  10047. -webkit-box-shadow:none;
  10048. box-shadow:none;
  10049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10050. font-weight:400;
  10051. font-style:normal;
  10052. font-size:16px;
  10053. }
  10054. #u70481 {
  10055. border-width:0px;
  10056. position:absolute;
  10057. left:30px;
  10058. top:370px;
  10059. width:65px;
  10060. height:22px;
  10061. display:flex;
  10062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10063. font-weight:400;
  10064. font-style:normal;
  10065. font-size:16px;
  10066. }
  10067. #u70481 .text {
  10068. position:absolute;
  10069. align-self:flex-start;
  10070. padding:0px 0px 0px 0px;
  10071. box-sizing:border-box;
  10072. width:100%;
  10073. }
  10074. #u70481_text {
  10075. border-width:0px;
  10076. white-space:nowrap;
  10077. text-transform:none;
  10078. }
  10079. #u70482_div {
  10080. border-width:0px;
  10081. position:absolute;
  10082. left:0px;
  10083. top:0px;
  10084. width:49px;
  10085. height:17px;
  10086. background:inherit;
  10087. background-color:rgba(255, 255, 255, 0);
  10088. border:none;
  10089. border-radius:0px;
  10090. -moz-box-shadow:none;
  10091. -webkit-box-shadow:none;
  10092. box-shadow:none;
  10093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10094. font-weight:400;
  10095. font-style:normal;
  10096. font-size:12px;
  10097. color:#AAAAAA;
  10098. }
  10099. #u70482 {
  10100. border-width:0px;
  10101. position:absolute;
  10102. left:30px;
  10103. top:334px;
  10104. width:49px;
  10105. height:17px;
  10106. display:flex;
  10107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. font-size:12px;
  10111. color:#AAAAAA;
  10112. }
  10113. #u70482 .text {
  10114. position:absolute;
  10115. align-self:flex-start;
  10116. padding:0px 0px 0px 0px;
  10117. box-sizing:border-box;
  10118. width:100%;
  10119. }
  10120. #u70482_text {
  10121. border-width:0px;
  10122. white-space:nowrap;
  10123. text-transform:none;
  10124. }
  10125. #u70483_div {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:0px;
  10129. top:0px;
  10130. width:65px;
  10131. height:22px;
  10132. background:inherit;
  10133. background-color:rgba(255, 255, 255, 0);
  10134. border:none;
  10135. border-radius:0px;
  10136. -moz-box-shadow:none;
  10137. -webkit-box-shadow:none;
  10138. box-shadow:none;
  10139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10140. font-weight:400;
  10141. font-style:normal;
  10142. font-size:16px;
  10143. }
  10144. #u70483 {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:30px;
  10148. top:412px;
  10149. width:65px;
  10150. height:22px;
  10151. display:flex;
  10152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10153. font-weight:400;
  10154. font-style:normal;
  10155. font-size:16px;
  10156. }
  10157. #u70483 .text {
  10158. position:absolute;
  10159. align-self:flex-start;
  10160. padding:0px 0px 0px 0px;
  10161. box-sizing:border-box;
  10162. width:100%;
  10163. }
  10164. #u70483_text {
  10165. border-width:0px;
  10166. white-space:nowrap;
  10167. text-transform:none;
  10168. }
  10169. #u70484_div {
  10170. border-width:0px;
  10171. position:absolute;
  10172. left:0px;
  10173. top:0px;
  10174. width:65px;
  10175. height:22px;
  10176. background:inherit;
  10177. background-color:rgba(255, 255, 255, 0);
  10178. border:none;
  10179. border-radius:0px;
  10180. -moz-box-shadow:none;
  10181. -webkit-box-shadow:none;
  10182. box-shadow:none;
  10183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10184. font-weight:400;
  10185. font-style:normal;
  10186. font-size:16px;
  10187. }
  10188. #u70484 {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:30px;
  10192. top:454px;
  10193. width:65px;
  10194. height:22px;
  10195. display:flex;
  10196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10197. font-weight:400;
  10198. font-style:normal;
  10199. font-size:16px;
  10200. }
  10201. #u70484 .text {
  10202. position:absolute;
  10203. align-self:flex-start;
  10204. padding:0px 0px 0px 0px;
  10205. box-sizing:border-box;
  10206. width:100%;
  10207. }
  10208. #u70484_text {
  10209. border-width:0px;
  10210. white-space:nowrap;
  10211. text-transform:none;
  10212. }
  10213. #u70485_div {
  10214. border-width:0px;
  10215. position:absolute;
  10216. left:0px;
  10217. top:0px;
  10218. width:65px;
  10219. height:22px;
  10220. background:inherit;
  10221. background-color:rgba(255, 255, 255, 0);
  10222. border:none;
  10223. border-radius:0px;
  10224. -moz-box-shadow:none;
  10225. -webkit-box-shadow:none;
  10226. box-shadow:none;
  10227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10228. font-weight:400;
  10229. font-style:normal;
  10230. font-size:16px;
  10231. }
  10232. #u70485 {
  10233. border-width:0px;
  10234. position:absolute;
  10235. left:30px;
  10236. top:496px;
  10237. width:65px;
  10238. height:22px;
  10239. display:flex;
  10240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10241. font-weight:400;
  10242. font-style:normal;
  10243. font-size:16px;
  10244. }
  10245. #u70485 .text {
  10246. position:absolute;
  10247. align-self:flex-start;
  10248. padding:0px 0px 0px 0px;
  10249. box-sizing:border-box;
  10250. width:100%;
  10251. }
  10252. #u70485_text {
  10253. border-width:0px;
  10254. white-space:nowrap;
  10255. text-transform:none;
  10256. }
  10257. #u70486_div {
  10258. border-width:0px;
  10259. position:absolute;
  10260. left:0px;
  10261. top:0px;
  10262. width:65px;
  10263. height:22px;
  10264. background:inherit;
  10265. background-color:rgba(255, 255, 255, 0);
  10266. border:none;
  10267. border-radius:0px;
  10268. -moz-box-shadow:none;
  10269. -webkit-box-shadow:none;
  10270. box-shadow:none;
  10271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10272. font-weight:400;
  10273. font-style:normal;
  10274. font-size:16px;
  10275. }
  10276. #u70486 {
  10277. border-width:0px;
  10278. position:absolute;
  10279. left:30px;
  10280. top:538px;
  10281. width:65px;
  10282. height:22px;
  10283. display:flex;
  10284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10285. font-weight:400;
  10286. font-style:normal;
  10287. font-size:16px;
  10288. }
  10289. #u70486 .text {
  10290. position:absolute;
  10291. align-self:flex-start;
  10292. padding:0px 0px 0px 0px;
  10293. box-sizing:border-box;
  10294. width:100%;
  10295. }
  10296. #u70486_text {
  10297. border-width:0px;
  10298. white-space:nowrap;
  10299. text-transform:none;
  10300. }
  10301. #u70487_div {
  10302. border-width:0px;
  10303. position:absolute;
  10304. left:0px;
  10305. top:0px;
  10306. width:65px;
  10307. height:22px;
  10308. background:inherit;
  10309. background-color:rgba(255, 255, 255, 0);
  10310. border:none;
  10311. border-radius:0px;
  10312. -moz-box-shadow:none;
  10313. -webkit-box-shadow:none;
  10314. box-shadow:none;
  10315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10316. font-weight:400;
  10317. font-style:normal;
  10318. font-size:16px;
  10319. }
  10320. #u70487 {
  10321. border-width:0px;
  10322. position:absolute;
  10323. left:30px;
  10324. top:580px;
  10325. width:65px;
  10326. height:22px;
  10327. display:flex;
  10328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10329. font-weight:400;
  10330. font-style:normal;
  10331. font-size:16px;
  10332. }
  10333. #u70487 .text {
  10334. position:absolute;
  10335. align-self:flex-start;
  10336. padding:0px 0px 0px 0px;
  10337. box-sizing:border-box;
  10338. width:100%;
  10339. }
  10340. #u70487_text {
  10341. border-width:0px;
  10342. white-space:nowrap;
  10343. text-transform:none;
  10344. }
  10345. #u70488_img {
  10346. border-width:0px;
  10347. position:absolute;
  10348. left:0px;
  10349. top:0px;
  10350. width:201px;
  10351. height:2px;
  10352. }
  10353. #u70488 {
  10354. border-width:0px;
  10355. position:absolute;
  10356. left:0px;
  10357. top:1289px;
  10358. width:200px;
  10359. height:1px;
  10360. display:flex;
  10361. }
  10362. #u70488 .text {
  10363. position:absolute;
  10364. align-self:center;
  10365. padding:2px 2px 2px 2px;
  10366. box-sizing:border-box;
  10367. width:100%;
  10368. }
  10369. #u70488_text {
  10370. border-width:0px;
  10371. word-wrap:break-word;
  10372. text-transform:none;
  10373. visibility:hidden;
  10374. }
  10375. #u70489_div {
  10376. border-width:0px;
  10377. position:absolute;
  10378. left:0px;
  10379. top:0px;
  10380. width:65px;
  10381. height:22px;
  10382. background:inherit;
  10383. background-color:rgba(255, 255, 255, 0);
  10384. border:none;
  10385. border-radius:0px;
  10386. -moz-box-shadow:none;
  10387. -webkit-box-shadow:none;
  10388. box-shadow:none;
  10389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10390. font-weight:400;
  10391. font-style:normal;
  10392. font-size:16px;
  10393. }
  10394. #u70489 {
  10395. border-width:0px;
  10396. position:absolute;
  10397. left:30px;
  10398. top:1346px;
  10399. width:65px;
  10400. height:22px;
  10401. display:flex;
  10402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10403. font-weight:400;
  10404. font-style:normal;
  10405. font-size:16px;
  10406. }
  10407. #u70489 .text {
  10408. position:absolute;
  10409. align-self:flex-start;
  10410. padding:0px 0px 0px 0px;
  10411. box-sizing:border-box;
  10412. width:100%;
  10413. }
  10414. #u70489_text {
  10415. border-width:0px;
  10416. white-space:nowrap;
  10417. text-transform:none;
  10418. }
  10419. #u70490_div {
  10420. border-width:0px;
  10421. position:absolute;
  10422. left:0px;
  10423. top:0px;
  10424. width:49px;
  10425. height:17px;
  10426. background:inherit;
  10427. background-color:rgba(255, 255, 255, 0);
  10428. border:none;
  10429. border-radius:0px;
  10430. -moz-box-shadow:none;
  10431. -webkit-box-shadow:none;
  10432. box-shadow:none;
  10433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10434. font-weight:400;
  10435. font-style:normal;
  10436. font-size:12px;
  10437. color:#AAAAAA;
  10438. }
  10439. #u70490 {
  10440. border-width:0px;
  10441. position:absolute;
  10442. left:30px;
  10443. top:1310px;
  10444. width:49px;
  10445. height:17px;
  10446. display:flex;
  10447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10448. font-weight:400;
  10449. font-style:normal;
  10450. font-size:12px;
  10451. color:#AAAAAA;
  10452. }
  10453. #u70490 .text {
  10454. position:absolute;
  10455. align-self:flex-start;
  10456. padding:0px 0px 0px 0px;
  10457. box-sizing:border-box;
  10458. width:100%;
  10459. }
  10460. #u70490_text {
  10461. border-width:0px;
  10462. white-space:nowrap;
  10463. text-transform:none;
  10464. }
  10465. #u70491_div {
  10466. border-width:0px;
  10467. position:absolute;
  10468. left:0px;
  10469. top:0px;
  10470. width:65px;
  10471. height:22px;
  10472. background:inherit;
  10473. background-color:rgba(255, 255, 255, 0);
  10474. border:none;
  10475. border-radius:0px;
  10476. -moz-box-shadow:none;
  10477. -webkit-box-shadow:none;
  10478. box-shadow:none;
  10479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10480. font-weight:400;
  10481. font-style:normal;
  10482. font-size:16px;
  10483. }
  10484. #u70491 {
  10485. border-width:0px;
  10486. position:absolute;
  10487. left:30px;
  10488. top:1388px;
  10489. width:65px;
  10490. height:22px;
  10491. display:flex;
  10492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10493. font-weight:400;
  10494. font-style:normal;
  10495. font-size:16px;
  10496. }
  10497. #u70491 .text {
  10498. position:absolute;
  10499. align-self:flex-start;
  10500. padding:0px 0px 0px 0px;
  10501. box-sizing:border-box;
  10502. width:100%;
  10503. }
  10504. #u70491_text {
  10505. border-width:0px;
  10506. white-space:nowrap;
  10507. text-transform:none;
  10508. }
  10509. #u70492_div {
  10510. border-width:0px;
  10511. position:absolute;
  10512. left:0px;
  10513. top:0px;
  10514. width:65px;
  10515. height:22px;
  10516. background:inherit;
  10517. background-color:rgba(255, 255, 255, 0);
  10518. border:none;
  10519. border-radius:0px;
  10520. -moz-box-shadow:none;
  10521. -webkit-box-shadow:none;
  10522. box-shadow:none;
  10523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10524. font-weight:400;
  10525. font-style:normal;
  10526. font-size:16px;
  10527. }
  10528. #u70492 {
  10529. border-width:0px;
  10530. position:absolute;
  10531. left:30px;
  10532. top:1472px;
  10533. width:65px;
  10534. height:22px;
  10535. display:flex;
  10536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10537. font-weight:400;
  10538. font-style:normal;
  10539. font-size:16px;
  10540. }
  10541. #u70492 .text {
  10542. position:absolute;
  10543. align-self:flex-start;
  10544. padding:0px 0px 0px 0px;
  10545. box-sizing:border-box;
  10546. width:100%;
  10547. }
  10548. #u70492_text {
  10549. border-width:0px;
  10550. white-space:nowrap;
  10551. text-transform:none;
  10552. }
  10553. #u70493_img {
  10554. border-width:0px;
  10555. position:absolute;
  10556. left:0px;
  10557. top:0px;
  10558. width:201px;
  10559. height:2px;
  10560. }
  10561. #u70493 {
  10562. border-width:0px;
  10563. position:absolute;
  10564. left:0px;
  10565. top:1514px;
  10566. width:200px;
  10567. height:1px;
  10568. display:flex;
  10569. }
  10570. #u70493 .text {
  10571. position:absolute;
  10572. align-self:center;
  10573. padding:2px 2px 2px 2px;
  10574. box-sizing:border-box;
  10575. width:100%;
  10576. }
  10577. #u70493_text {
  10578. border-width:0px;
  10579. word-wrap:break-word;
  10580. text-transform:none;
  10581. visibility:hidden;
  10582. }
  10583. #u70494_div {
  10584. border-width:0px;
  10585. position:absolute;
  10586. left:0px;
  10587. top:0px;
  10588. width:49px;
  10589. height:22px;
  10590. background:inherit;
  10591. background-color:rgba(255, 255, 255, 0);
  10592. border:none;
  10593. border-radius:0px;
  10594. -moz-box-shadow:none;
  10595. -webkit-box-shadow:none;
  10596. box-shadow:none;
  10597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. font-size:16px;
  10601. }
  10602. #u70494 {
  10603. border-width:0px;
  10604. position:absolute;
  10605. left:30px;
  10606. top:1571px;
  10607. width:49px;
  10608. height:22px;
  10609. display:flex;
  10610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10611. font-weight:400;
  10612. font-style:normal;
  10613. font-size:16px;
  10614. }
  10615. #u70494 .text {
  10616. position:absolute;
  10617. align-self:flex-start;
  10618. padding:0px 0px 0px 0px;
  10619. box-sizing:border-box;
  10620. width:100%;
  10621. }
  10622. #u70494_text {
  10623. border-width:0px;
  10624. white-space:nowrap;
  10625. text-transform:none;
  10626. }
  10627. #u70495_div {
  10628. border-width:0px;
  10629. position:absolute;
  10630. left:0px;
  10631. top:0px;
  10632. width:49px;
  10633. height:17px;
  10634. background:inherit;
  10635. background-color:rgba(255, 255, 255, 0);
  10636. border:none;
  10637. border-radius:0px;
  10638. -moz-box-shadow:none;
  10639. -webkit-box-shadow:none;
  10640. box-shadow:none;
  10641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10642. font-weight:400;
  10643. font-style:normal;
  10644. font-size:12px;
  10645. color:#AAAAAA;
  10646. }
  10647. #u70495 {
  10648. border-width:0px;
  10649. position:absolute;
  10650. left:30px;
  10651. top:1535px;
  10652. width:49px;
  10653. height:17px;
  10654. display:flex;
  10655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10656. font-weight:400;
  10657. font-style:normal;
  10658. font-size:12px;
  10659. color:#AAAAAA;
  10660. }
  10661. #u70495 .text {
  10662. position:absolute;
  10663. align-self:flex-start;
  10664. padding:0px 0px 0px 0px;
  10665. box-sizing:border-box;
  10666. width:100%;
  10667. }
  10668. #u70495_text {
  10669. border-width:0px;
  10670. white-space:nowrap;
  10671. text-transform:none;
  10672. }
  10673. #u70496_div {
  10674. border-width:0px;
  10675. position:absolute;
  10676. left:0px;
  10677. top:0px;
  10678. width:49px;
  10679. height:22px;
  10680. background:inherit;
  10681. background-color:rgba(255, 255, 255, 0);
  10682. border:none;
  10683. border-radius:0px;
  10684. -moz-box-shadow:none;
  10685. -webkit-box-shadow:none;
  10686. box-shadow:none;
  10687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10688. font-weight:400;
  10689. font-style:normal;
  10690. font-size:16px;
  10691. }
  10692. #u70496 {
  10693. border-width:0px;
  10694. position:absolute;
  10695. left:30px;
  10696. top:1613px;
  10697. width:49px;
  10698. height:22px;
  10699. display:flex;
  10700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10701. font-weight:400;
  10702. font-style:normal;
  10703. font-size:16px;
  10704. }
  10705. #u70496 .text {
  10706. position:absolute;
  10707. align-self:flex-start;
  10708. padding:0px 0px 0px 0px;
  10709. box-sizing:border-box;
  10710. width:100%;
  10711. }
  10712. #u70496_text {
  10713. border-width:0px;
  10714. white-space:nowrap;
  10715. text-transform:none;
  10716. }
  10717. #u70497_div {
  10718. border-width:0px;
  10719. position:absolute;
  10720. left:0px;
  10721. top:0px;
  10722. width:65px;
  10723. height:22px;
  10724. background:inherit;
  10725. background-color:rgba(255, 255, 255, 0);
  10726. border:none;
  10727. border-radius:0px;
  10728. -moz-box-shadow:none;
  10729. -webkit-box-shadow:none;
  10730. box-shadow:none;
  10731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:16px;
  10735. }
  10736. #u70497 {
  10737. border-width:0px;
  10738. position:absolute;
  10739. left:30px;
  10740. top:1655px;
  10741. width:65px;
  10742. height:22px;
  10743. display:flex;
  10744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10745. font-weight:400;
  10746. font-style:normal;
  10747. font-size:16px;
  10748. }
  10749. #u70497 .text {
  10750. position:absolute;
  10751. align-self:flex-start;
  10752. padding:0px 0px 0px 0px;
  10753. box-sizing:border-box;
  10754. width:100%;
  10755. }
  10756. #u70497_text {
  10757. border-width:0px;
  10758. white-space:nowrap;
  10759. text-transform:none;
  10760. }
  10761. #u70498_img {
  10762. border-width:0px;
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:201px;
  10767. height:2px;
  10768. }
  10769. #u70498 {
  10770. border-width:0px;
  10771. position:absolute;
  10772. left:0px;
  10773. top:1697px;
  10774. width:200px;
  10775. height:1px;
  10776. display:flex;
  10777. }
  10778. #u70498 .text {
  10779. position:absolute;
  10780. align-self:center;
  10781. padding:2px 2px 2px 2px;
  10782. box-sizing:border-box;
  10783. width:100%;
  10784. }
  10785. #u70498_text {
  10786. border-width:0px;
  10787. word-wrap:break-word;
  10788. text-transform:none;
  10789. visibility:hidden;
  10790. }
  10791. #u70499_div {
  10792. border-width:0px;
  10793. position:absolute;
  10794. left:0px;
  10795. top:0px;
  10796. width:81px;
  10797. height:22px;
  10798. background:inherit;
  10799. background-color:rgba(255, 255, 255, 0);
  10800. border:none;
  10801. border-radius:0px;
  10802. -moz-box-shadow:none;
  10803. -webkit-box-shadow:none;
  10804. box-shadow:none;
  10805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10806. font-weight:400;
  10807. font-style:normal;
  10808. font-size:16px;
  10809. }
  10810. #u70499 {
  10811. border-width:0px;
  10812. position:absolute;
  10813. left:30px;
  10814. top:1754px;
  10815. width:81px;
  10816. height:22px;
  10817. display:flex;
  10818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10819. font-weight:400;
  10820. font-style:normal;
  10821. font-size:16px;
  10822. }
  10823. #u70499 .text {
  10824. position:absolute;
  10825. align-self:flex-start;
  10826. padding:0px 0px 0px 0px;
  10827. box-sizing:border-box;
  10828. width:100%;
  10829. }
  10830. #u70499_text {
  10831. border-width:0px;
  10832. white-space:nowrap;
  10833. text-transform:none;
  10834. }
  10835. #u70500_div {
  10836. border-width:0px;
  10837. position:absolute;
  10838. left:0px;
  10839. top:0px;
  10840. width:49px;
  10841. height:17px;
  10842. background:inherit;
  10843. background-color:rgba(255, 255, 255, 0);
  10844. border:none;
  10845. border-radius:0px;
  10846. -moz-box-shadow:none;
  10847. -webkit-box-shadow:none;
  10848. box-shadow:none;
  10849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10850. font-weight:400;
  10851. font-style:normal;
  10852. font-size:12px;
  10853. color:#AAAAAA;
  10854. }
  10855. #u70500 {
  10856. border-width:0px;
  10857. position:absolute;
  10858. left:30px;
  10859. top:1718px;
  10860. width:49px;
  10861. height:17px;
  10862. display:flex;
  10863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10864. font-weight:400;
  10865. font-style:normal;
  10866. font-size:12px;
  10867. color:#AAAAAA;
  10868. }
  10869. #u70500 .text {
  10870. position:absolute;
  10871. align-self:flex-start;
  10872. padding:0px 0px 0px 0px;
  10873. box-sizing:border-box;
  10874. width:100%;
  10875. }
  10876. #u70500_text {
  10877. border-width:0px;
  10878. white-space:nowrap;
  10879. text-transform:none;
  10880. }
  10881. #u70501_div {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:0px;
  10885. top:0px;
  10886. width:81px;
  10887. height:22px;
  10888. background:inherit;
  10889. background-color:rgba(255, 255, 255, 0);
  10890. border:none;
  10891. border-radius:0px;
  10892. -moz-box-shadow:none;
  10893. -webkit-box-shadow:none;
  10894. box-shadow:none;
  10895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10896. font-weight:400;
  10897. font-style:normal;
  10898. font-size:16px;
  10899. }
  10900. #u70501 {
  10901. border-width:0px;
  10902. position:absolute;
  10903. left:30px;
  10904. top:1796px;
  10905. width:81px;
  10906. height:22px;
  10907. display:flex;
  10908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10909. font-weight:400;
  10910. font-style:normal;
  10911. font-size:16px;
  10912. }
  10913. #u70501 .text {
  10914. position:absolute;
  10915. align-self:flex-start;
  10916. padding:0px 0px 0px 0px;
  10917. box-sizing:border-box;
  10918. width:100%;
  10919. }
  10920. #u70501_text {
  10921. border-width:0px;
  10922. white-space:nowrap;
  10923. text-transform:none;
  10924. }
  10925. #u70502_div {
  10926. border-width:0px;
  10927. position:absolute;
  10928. left:0px;
  10929. top:0px;
  10930. width:81px;
  10931. height:22px;
  10932. background:inherit;
  10933. background-color:rgba(255, 255, 255, 0);
  10934. border:none;
  10935. border-radius:0px;
  10936. -moz-box-shadow:none;
  10937. -webkit-box-shadow:none;
  10938. box-shadow:none;
  10939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10940. font-weight:400;
  10941. font-style:normal;
  10942. font-size:16px;
  10943. }
  10944. #u70502 {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:30px;
  10948. top:1838px;
  10949. width:81px;
  10950. height:22px;
  10951. display:flex;
  10952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10953. font-weight:400;
  10954. font-style:normal;
  10955. font-size:16px;
  10956. }
  10957. #u70502 .text {
  10958. position:absolute;
  10959. align-self:flex-start;
  10960. padding:0px 0px 0px 0px;
  10961. box-sizing:border-box;
  10962. width:100%;
  10963. }
  10964. #u70502_text {
  10965. border-width:0px;
  10966. white-space:nowrap;
  10967. text-transform:none;
  10968. }
  10969. #u70503_div {
  10970. border-width:0px;
  10971. position:absolute;
  10972. left:0px;
  10973. top:0px;
  10974. width:65px;
  10975. height:22px;
  10976. background:inherit;
  10977. background-color:rgba(255, 255, 255, 0);
  10978. border:none;
  10979. border-radius:0px;
  10980. -moz-box-shadow:none;
  10981. -webkit-box-shadow:none;
  10982. box-shadow:none;
  10983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10984. font-weight:400;
  10985. font-style:normal;
  10986. font-size:16px;
  10987. }
  10988. #u70503 {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:30px;
  10992. top:1430px;
  10993. width:65px;
  10994. height:22px;
  10995. display:flex;
  10996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10997. font-weight:400;
  10998. font-style:normal;
  10999. font-size:16px;
  11000. }
  11001. #u70503 .text {
  11002. position:absolute;
  11003. align-self:flex-start;
  11004. padding:0px 0px 0px 0px;
  11005. box-sizing:border-box;
  11006. width:100%;
  11007. }
  11008. #u70503_text {
  11009. border-width:0px;
  11010. white-space:nowrap;
  11011. text-transform:none;
  11012. }
  11013. #u70504_img {
  11014. border-width:0px;
  11015. position:absolute;
  11016. left:0px;
  11017. top:0px;
  11018. width:201px;
  11019. height:2px;
  11020. }
  11021. #u70504 {
  11022. border-width:0px;
  11023. position:absolute;
  11024. left:0px;
  11025. top:669px;
  11026. width:200px;
  11027. height:1px;
  11028. display:flex;
  11029. }
  11030. #u70504 .text {
  11031. position:absolute;
  11032. align-self:center;
  11033. padding:2px 2px 2px 2px;
  11034. box-sizing:border-box;
  11035. width:100%;
  11036. }
  11037. #u70504_text {
  11038. border-width:0px;
  11039. word-wrap:break-word;
  11040. text-transform:none;
  11041. visibility:hidden;
  11042. }
  11043. #u70505_div {
  11044. border-width:0px;
  11045. position:absolute;
  11046. left:0px;
  11047. top:0px;
  11048. width:65px;
  11049. height:22px;
  11050. background:inherit;
  11051. background-color:rgba(255, 255, 255, 0);
  11052. border:none;
  11053. border-radius:0px;
  11054. -moz-box-shadow:none;
  11055. -webkit-box-shadow:none;
  11056. box-shadow:none;
  11057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11058. font-weight:400;
  11059. font-style:normal;
  11060. font-size:16px;
  11061. }
  11062. #u70505 {
  11063. border-width:0px;
  11064. position:absolute;
  11065. left:30px;
  11066. top:726px;
  11067. width:65px;
  11068. height:22px;
  11069. display:flex;
  11070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11071. font-weight:400;
  11072. font-style:normal;
  11073. font-size:16px;
  11074. }
  11075. #u70505 .text {
  11076. position:absolute;
  11077. align-self:flex-start;
  11078. padding:0px 0px 0px 0px;
  11079. box-sizing:border-box;
  11080. width:100%;
  11081. }
  11082. #u70505_text {
  11083. border-width:0px;
  11084. white-space:nowrap;
  11085. text-transform:none;
  11086. }
  11087. #u70506_div {
  11088. border-width:0px;
  11089. position:absolute;
  11090. left:0px;
  11091. top:0px;
  11092. width:49px;
  11093. height:17px;
  11094. background:inherit;
  11095. background-color:rgba(255, 255, 255, 0);
  11096. border:none;
  11097. border-radius:0px;
  11098. -moz-box-shadow:none;
  11099. -webkit-box-shadow:none;
  11100. box-shadow:none;
  11101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11102. font-weight:400;
  11103. font-style:normal;
  11104. font-size:12px;
  11105. color:#AAAAAA;
  11106. }
  11107. #u70506 {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:30px;
  11111. top:690px;
  11112. width:49px;
  11113. height:17px;
  11114. display:flex;
  11115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11116. font-weight:400;
  11117. font-style:normal;
  11118. font-size:12px;
  11119. color:#AAAAAA;
  11120. }
  11121. #u70506 .text {
  11122. position:absolute;
  11123. align-self:flex-start;
  11124. padding:0px 0px 0px 0px;
  11125. box-sizing:border-box;
  11126. width:100%;
  11127. }
  11128. #u70506_text {
  11129. border-width:0px;
  11130. white-space:nowrap;
  11131. text-transform:none;
  11132. }
  11133. #u70507_div {
  11134. border-width:0px;
  11135. position:absolute;
  11136. left:0px;
  11137. top:0px;
  11138. width:65px;
  11139. height:22px;
  11140. background:inherit;
  11141. background-color:rgba(255, 255, 255, 0);
  11142. border:none;
  11143. border-radius:0px;
  11144. -moz-box-shadow:none;
  11145. -webkit-box-shadow:none;
  11146. box-shadow:none;
  11147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11148. font-weight:400;
  11149. font-style:normal;
  11150. font-size:16px;
  11151. }
  11152. #u70507 {
  11153. border-width:0px;
  11154. position:absolute;
  11155. left:30px;
  11156. top:768px;
  11157. width:65px;
  11158. height:22px;
  11159. display:flex;
  11160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11161. font-weight:400;
  11162. font-style:normal;
  11163. font-size:16px;
  11164. }
  11165. #u70507 .text {
  11166. position:absolute;
  11167. align-self:flex-start;
  11168. padding:0px 0px 0px 0px;
  11169. box-sizing:border-box;
  11170. width:100%;
  11171. }
  11172. #u70507_text {
  11173. border-width:0px;
  11174. white-space:nowrap;
  11175. text-transform:none;
  11176. }
  11177. #u70508_div {
  11178. border-width:0px;
  11179. position:absolute;
  11180. left:0px;
  11181. top:0px;
  11182. width:65px;
  11183. height:22px;
  11184. background:inherit;
  11185. background-color:rgba(255, 255, 255, 0);
  11186. border:none;
  11187. border-radius:0px;
  11188. -moz-box-shadow:none;
  11189. -webkit-box-shadow:none;
  11190. box-shadow:none;
  11191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11192. font-weight:400;
  11193. font-style:normal;
  11194. font-size:16px;
  11195. }
  11196. #u70508 {
  11197. border-width:0px;
  11198. position:absolute;
  11199. left:30px;
  11200. top:852px;
  11201. width:65px;
  11202. height:22px;
  11203. display:flex;
  11204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11205. font-weight:400;
  11206. font-style:normal;
  11207. font-size:16px;
  11208. }
  11209. #u70508 .text {
  11210. position:absolute;
  11211. align-self:flex-start;
  11212. padding:0px 0px 0px 0px;
  11213. box-sizing:border-box;
  11214. width:100%;
  11215. }
  11216. #u70508_text {
  11217. border-width:0px;
  11218. white-space:nowrap;
  11219. text-transform:none;
  11220. }
  11221. #u70509_div {
  11222. border-width:0px;
  11223. position:absolute;
  11224. left:0px;
  11225. top:0px;
  11226. width:65px;
  11227. height:22px;
  11228. background:inherit;
  11229. background-color:rgba(255, 255, 255, 0);
  11230. border:none;
  11231. border-radius:0px;
  11232. -moz-box-shadow:none;
  11233. -webkit-box-shadow:none;
  11234. box-shadow:none;
  11235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11236. font-weight:400;
  11237. font-style:normal;
  11238. font-size:16px;
  11239. }
  11240. #u70509 {
  11241. border-width:0px;
  11242. position:absolute;
  11243. left:30px;
  11244. top:810px;
  11245. width:65px;
  11246. height:22px;
  11247. display:flex;
  11248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11249. font-weight:400;
  11250. font-style:normal;
  11251. font-size:16px;
  11252. }
  11253. #u70509 .text {
  11254. position:absolute;
  11255. align-self:flex-start;
  11256. padding:0px 0px 0px 0px;
  11257. box-sizing:border-box;
  11258. width:100%;
  11259. }
  11260. #u70509_text {
  11261. border-width:0px;
  11262. white-space:nowrap;
  11263. text-transform:none;
  11264. }
  11265. #u70510_div {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:0px;
  11269. top:0px;
  11270. width:65px;
  11271. height:22px;
  11272. background:inherit;
  11273. background-color:rgba(255, 255, 255, 0);
  11274. border:none;
  11275. border-radius:0px;
  11276. -moz-box-shadow:none;
  11277. -webkit-box-shadow:none;
  11278. box-shadow:none;
  11279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11280. font-weight:400;
  11281. font-style:normal;
  11282. font-size:16px;
  11283. }
  11284. #u70510 {
  11285. border-width:0px;
  11286. position:absolute;
  11287. left:30px;
  11288. top:894px;
  11289. width:65px;
  11290. height:22px;
  11291. display:flex;
  11292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11293. font-weight:400;
  11294. font-style:normal;
  11295. font-size:16px;
  11296. }
  11297. #u70510 .text {
  11298. position:absolute;
  11299. align-self:flex-start;
  11300. padding:0px 0px 0px 0px;
  11301. box-sizing:border-box;
  11302. width:100%;
  11303. }
  11304. #u70510_text {
  11305. border-width:0px;
  11306. white-space:nowrap;
  11307. text-transform:none;
  11308. }
  11309. #u70511_div {
  11310. border-width:0px;
  11311. position:absolute;
  11312. left:0px;
  11313. top:0px;
  11314. width:65px;
  11315. height:22px;
  11316. background:inherit;
  11317. background-color:rgba(255, 255, 255, 0);
  11318. border:none;
  11319. border-radius:0px;
  11320. -moz-box-shadow:none;
  11321. -webkit-box-shadow:none;
  11322. box-shadow:none;
  11323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11324. font-weight:400;
  11325. font-style:normal;
  11326. font-size:16px;
  11327. }
  11328. #u70511 {
  11329. border-width:0px;
  11330. position:absolute;
  11331. left:30px;
  11332. top:936px;
  11333. width:65px;
  11334. height:22px;
  11335. display:flex;
  11336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11337. font-weight:400;
  11338. font-style:normal;
  11339. font-size:16px;
  11340. }
  11341. #u70511 .text {
  11342. position:absolute;
  11343. align-self:flex-start;
  11344. padding:0px 0px 0px 0px;
  11345. box-sizing:border-box;
  11346. width:100%;
  11347. }
  11348. #u70511_text {
  11349. border-width:0px;
  11350. white-space:nowrap;
  11351. text-transform:none;
  11352. }
  11353. #u70512_img {
  11354. border-width:0px;
  11355. position:absolute;
  11356. left:0px;
  11357. top:0px;
  11358. width:201px;
  11359. height:2px;
  11360. }
  11361. #u70512 {
  11362. border-width:0px;
  11363. position:absolute;
  11364. left:0px;
  11365. top:1018px;
  11366. width:200px;
  11367. height:1px;
  11368. display:flex;
  11369. }
  11370. #u70512 .text {
  11371. position:absolute;
  11372. align-self:center;
  11373. padding:2px 2px 2px 2px;
  11374. box-sizing:border-box;
  11375. width:100%;
  11376. }
  11377. #u70512_text {
  11378. border-width:0px;
  11379. word-wrap:break-word;
  11380. text-transform:none;
  11381. visibility:hidden;
  11382. }
  11383. #u70513_div {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:0px;
  11387. top:0px;
  11388. width:65px;
  11389. height:22px;
  11390. background:inherit;
  11391. background-color:rgba(255, 255, 255, 0);
  11392. border:none;
  11393. border-radius:0px;
  11394. -moz-box-shadow:none;
  11395. -webkit-box-shadow:none;
  11396. box-shadow:none;
  11397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11398. font-weight:400;
  11399. font-style:normal;
  11400. font-size:16px;
  11401. }
  11402. #u70513 {
  11403. border-width:0px;
  11404. position:absolute;
  11405. left:30px;
  11406. top:1075px;
  11407. width:65px;
  11408. height:22px;
  11409. display:flex;
  11410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11411. font-weight:400;
  11412. font-style:normal;
  11413. font-size:16px;
  11414. }
  11415. #u70513 .text {
  11416. position:absolute;
  11417. align-self:flex-start;
  11418. padding:0px 0px 0px 0px;
  11419. box-sizing:border-box;
  11420. width:100%;
  11421. }
  11422. #u70513_text {
  11423. border-width:0px;
  11424. white-space:nowrap;
  11425. text-transform:none;
  11426. }
  11427. #u70514_div {
  11428. border-width:0px;
  11429. position:absolute;
  11430. left:0px;
  11431. top:0px;
  11432. width:49px;
  11433. height:17px;
  11434. background:inherit;
  11435. background-color:rgba(255, 255, 255, 0);
  11436. border:none;
  11437. border-radius:0px;
  11438. -moz-box-shadow:none;
  11439. -webkit-box-shadow:none;
  11440. box-shadow:none;
  11441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11442. font-weight:400;
  11443. font-style:normal;
  11444. font-size:12px;
  11445. color:#AAAAAA;
  11446. }
  11447. #u70514 {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:30px;
  11451. top:1039px;
  11452. width:49px;
  11453. height:17px;
  11454. display:flex;
  11455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11456. font-weight:400;
  11457. font-style:normal;
  11458. font-size:12px;
  11459. color:#AAAAAA;
  11460. }
  11461. #u70514 .text {
  11462. position:absolute;
  11463. align-self:flex-start;
  11464. padding:0px 0px 0px 0px;
  11465. box-sizing:border-box;
  11466. width:100%;
  11467. }
  11468. #u70514_text {
  11469. border-width:0px;
  11470. white-space:nowrap;
  11471. text-transform:none;
  11472. }
  11473. #u70515_div {
  11474. border-width:0px;
  11475. position:absolute;
  11476. left:0px;
  11477. top:0px;
  11478. width:65px;
  11479. height:22px;
  11480. background:inherit;
  11481. background-color:rgba(255, 255, 255, 0);
  11482. border:none;
  11483. border-radius:0px;
  11484. -moz-box-shadow:none;
  11485. -webkit-box-shadow:none;
  11486. box-shadow:none;
  11487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11488. font-weight:400;
  11489. font-style:normal;
  11490. font-size:16px;
  11491. }
  11492. #u70515 {
  11493. border-width:0px;
  11494. position:absolute;
  11495. left:30px;
  11496. top:1117px;
  11497. width:65px;
  11498. height:22px;
  11499. display:flex;
  11500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11501. font-weight:400;
  11502. font-style:normal;
  11503. font-size:16px;
  11504. }
  11505. #u70515 .text {
  11506. position:absolute;
  11507. align-self:flex-start;
  11508. padding:0px 0px 0px 0px;
  11509. box-sizing:border-box;
  11510. width:100%;
  11511. }
  11512. #u70515_text {
  11513. border-width:0px;
  11514. white-space:nowrap;
  11515. text-transform:none;
  11516. }
  11517. #u70516_div {
  11518. border-width:0px;
  11519. position:absolute;
  11520. left:0px;
  11521. top:0px;
  11522. width:65px;
  11523. height:22px;
  11524. background:inherit;
  11525. background-color:rgba(255, 255, 255, 0);
  11526. border:none;
  11527. border-radius:0px;
  11528. -moz-box-shadow:none;
  11529. -webkit-box-shadow:none;
  11530. box-shadow:none;
  11531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11532. font-weight:400;
  11533. font-style:normal;
  11534. font-size:16px;
  11535. }
  11536. #u70516 {
  11537. border-width:0px;
  11538. position:absolute;
  11539. left:30px;
  11540. top:1201px;
  11541. width:65px;
  11542. height:22px;
  11543. display:flex;
  11544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11545. font-weight:400;
  11546. font-style:normal;
  11547. font-size:16px;
  11548. }
  11549. #u70516 .text {
  11550. position:absolute;
  11551. align-self:flex-start;
  11552. padding:0px 0px 0px 0px;
  11553. box-sizing:border-box;
  11554. width:100%;
  11555. }
  11556. #u70516_text {
  11557. border-width:0px;
  11558. white-space:nowrap;
  11559. text-transform:none;
  11560. }
  11561. #u70517_div {
  11562. border-width:0px;
  11563. position:absolute;
  11564. left:0px;
  11565. top:0px;
  11566. width:65px;
  11567. height:22px;
  11568. background:inherit;
  11569. background-color:rgba(255, 255, 255, 0);
  11570. border:none;
  11571. border-radius:0px;
  11572. -moz-box-shadow:none;
  11573. -webkit-box-shadow:none;
  11574. box-shadow:none;
  11575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11576. font-weight:400;
  11577. font-style:normal;
  11578. font-size:16px;
  11579. }
  11580. #u70517 {
  11581. border-width:0px;
  11582. position:absolute;
  11583. left:30px;
  11584. top:1159px;
  11585. width:65px;
  11586. height:22px;
  11587. display:flex;
  11588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11589. font-weight:400;
  11590. font-style:normal;
  11591. font-size:16px;
  11592. }
  11593. #u70517 .text {
  11594. position:absolute;
  11595. align-self:flex-start;
  11596. padding:0px 0px 0px 0px;
  11597. box-sizing:border-box;
  11598. width:100%;
  11599. }
  11600. #u70517_text {
  11601. border-width:0px;
  11602. white-space:nowrap;
  11603. text-transform:none;
  11604. }
  11605. #u70518_div {
  11606. border-width:0px;
  11607. position:absolute;
  11608. left:0px;
  11609. top:0px;
  11610. width:65px;
  11611. height:22px;
  11612. background:inherit;
  11613. background-color:rgba(255, 255, 255, 0);
  11614. border:none;
  11615. border-radius:0px;
  11616. -moz-box-shadow:none;
  11617. -webkit-box-shadow:none;
  11618. box-shadow:none;
  11619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11620. font-weight:400;
  11621. font-style:normal;
  11622. font-size:16px;
  11623. }
  11624. #u70518 {
  11625. border-width:0px;
  11626. position:absolute;
  11627. left:30px;
  11628. top:1243px;
  11629. width:65px;
  11630. height:22px;
  11631. display:flex;
  11632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11633. font-weight:400;
  11634. font-style:normal;
  11635. font-size:16px;
  11636. }
  11637. #u70518 .text {
  11638. position:absolute;
  11639. align-self:flex-start;
  11640. padding:0px 0px 0px 0px;
  11641. box-sizing:border-box;
  11642. width:100%;
  11643. }
  11644. #u70518_text {
  11645. border-width:0px;
  11646. white-space:nowrap;
  11647. text-transform:none;
  11648. }
  11649. #u70519_div {
  11650. border-width:0px;
  11651. position:absolute;
  11652. left:0px;
  11653. top:0px;
  11654. width:65px;
  11655. height:22px;
  11656. background:inherit;
  11657. background-color:rgba(255, 255, 255, 0);
  11658. border:none;
  11659. border-radius:0px;
  11660. -moz-box-shadow:none;
  11661. -webkit-box-shadow:none;
  11662. box-shadow:none;
  11663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11664. font-weight:400;
  11665. font-style:normal;
  11666. font-size:16px;
  11667. }
  11668. #u70519 {
  11669. border-width:0px;
  11670. position:absolute;
  11671. left:30px;
  11672. top:978px;
  11673. width:65px;
  11674. height:22px;
  11675. display:flex;
  11676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11677. font-weight:400;
  11678. font-style:normal;
  11679. font-size:16px;
  11680. }
  11681. #u70519 .text {
  11682. position:absolute;
  11683. align-self:flex-start;
  11684. padding:0px 0px 0px 0px;
  11685. box-sizing:border-box;
  11686. width:100%;
  11687. }
  11688. #u70519_text {
  11689. border-width:0px;
  11690. white-space:nowrap;
  11691. text-transform:none;
  11692. }
  11693. #u70520_div {
  11694. border-width:0px;
  11695. position:absolute;
  11696. left:0px;
  11697. top:0px;
  11698. width:65px;
  11699. height:22px;
  11700. background:inherit;
  11701. background-color:rgba(255, 255, 255, 0);
  11702. border:none;
  11703. border-radius:0px;
  11704. -moz-box-shadow:none;
  11705. -webkit-box-shadow:none;
  11706. box-shadow:none;
  11707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11708. font-weight:400;
  11709. font-style:normal;
  11710. font-size:16px;
  11711. }
  11712. #u70520 {
  11713. border-width:0px;
  11714. position:absolute;
  11715. left:30px;
  11716. top:622px;
  11717. width:65px;
  11718. height:22px;
  11719. display:flex;
  11720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11721. font-weight:400;
  11722. font-style:normal;
  11723. font-size:16px;
  11724. }
  11725. #u70520 .text {
  11726. position:absolute;
  11727. align-self:flex-start;
  11728. padding:0px 0px 0px 0px;
  11729. box-sizing:border-box;
  11730. width:100%;
  11731. }
  11732. #u70520_text {
  11733. border-width:0px;
  11734. white-space:nowrap;
  11735. text-transform:none;
  11736. }
  11737. #u70521 {
  11738. border-width:0px;
  11739. position:absolute;
  11740. left:0px;
  11741. top:0px;
  11742. width:0px;
  11743. height:0px;
  11744. }
  11745. #u70522_div {
  11746. border-width:0px;
  11747. position:absolute;
  11748. left:0px;
  11749. top:0px;
  11750. width:600px;
  11751. height:287px;
  11752. background:inherit;
  11753. background-color:rgba(255, 255, 255, 1);
  11754. box-sizing:border-box;
  11755. border-width:1px;
  11756. border-style:solid;
  11757. border-color:rgba(121, 121, 121, 1);
  11758. border-radius:0px;
  11759. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11760. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11761. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  11762. color:#1890FF;
  11763. }
  11764. #u70522 {
  11765. border-width:0px;
  11766. position:absolute;
  11767. left:633px;
  11768. top:2006px;
  11769. width:600px;
  11770. height:287px;
  11771. display:flex;
  11772. color:#1890FF;
  11773. }
  11774. #u70522 .text {
  11775. position:absolute;
  11776. align-self:center;
  11777. padding:2px 2px 2px 2px;
  11778. box-sizing:border-box;
  11779. width:100%;
  11780. }
  11781. #u70522_text {
  11782. border-width:0px;
  11783. word-wrap:break-word;
  11784. text-transform:none;
  11785. visibility:hidden;
  11786. }
  11787. #u70523_div {
  11788. border-width:0px;
  11789. position:absolute;
  11790. left:0px;
  11791. top:0px;
  11792. width:73px;
  11793. height:30px;
  11794. background:inherit;
  11795. background-color:rgba(255, 255, 255, 0);
  11796. border:none;
  11797. border-radius:0px;
  11798. -moz-box-shadow:none;
  11799. -webkit-box-shadow:none;
  11800. box-shadow:none;
  11801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11802. font-weight:400;
  11803. font-style:normal;
  11804. font-size:18px;
  11805. color:#000000;
  11806. line-height:30px;
  11807. }
  11808. #u70523 {
  11809. border-width:0px;
  11810. position:absolute;
  11811. left:669px;
  11812. top:2038px;
  11813. width:73px;
  11814. height:30px;
  11815. display:flex;
  11816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11817. font-weight:400;
  11818. font-style:normal;
  11819. font-size:18px;
  11820. color:#000000;
  11821. line-height:30px;
  11822. }
  11823. #u70523 .text {
  11824. position:absolute;
  11825. align-self:flex-start;
  11826. padding:0px 0px 0px 0px;
  11827. box-sizing:border-box;
  11828. width:100%;
  11829. }
  11830. #u70523_text {
  11831. border-width:0px;
  11832. white-space:nowrap;
  11833. text-transform:none;
  11834. }
  11835. #u70524 {
  11836. border-width:0px;
  11837. position:absolute;
  11838. left:0px;
  11839. top:0px;
  11840. width:0px;
  11841. height:0px;
  11842. }
  11843. #u70525_div {
  11844. border-width:0px;
  11845. position:absolute;
  11846. left:0px;
  11847. top:0px;
  11848. width:40px;
  11849. height:40px;
  11850. background:inherit;
  11851. background-color:rgba(255, 255, 255, 0);
  11852. border:none;
  11853. border-top:0px;
  11854. border-right:0px;
  11855. border-bottom:0px;
  11856. border-radius:0px;
  11857. border-top-left-radius:0px;
  11858. border-bottom-left-radius:0px;
  11859. -moz-box-shadow:none;
  11860. -webkit-box-shadow:none;
  11861. box-shadow:none;
  11862. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11863. font-weight:500;
  11864. font-style:normal;
  11865. font-size:18px;
  11866. text-align:center;
  11867. }
  11868. #u70525 {
  11869. border-width:0px;
  11870. position:absolute;
  11871. left:1193px;
  11872. top:2006px;
  11873. width:40px;
  11874. height:40px;
  11875. display:flex;
  11876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11877. font-weight:500;
  11878. font-style:normal;
  11879. font-size:18px;
  11880. text-align:center;
  11881. }
  11882. #u70525 .text {
  11883. position:absolute;
  11884. align-self:center;
  11885. padding:5px 10px 5px 0px;
  11886. box-sizing:border-box;
  11887. width:100%;
  11888. }
  11889. #u70525_text {
  11890. border-width:0px;
  11891. word-wrap:break-word;
  11892. text-transform:none;
  11893. }
  11894. #u70526_img {
  11895. border-width:0px;
  11896. position:absolute;
  11897. left:0px;
  11898. top:0px;
  11899. width:13px;
  11900. height:13px;
  11901. }
  11902. #u70526 {
  11903. border-width:0px;
  11904. position:absolute;
  11905. left:1180px;
  11906. top:2024px;
  11907. width:13px;
  11908. height:13px;
  11909. display:flex;
  11910. }
  11911. #u70526 .text {
  11912. position:absolute;
  11913. align-self:center;
  11914. padding:2px 2px 2px 2px;
  11915. box-sizing:border-box;
  11916. width:100%;
  11917. }
  11918. #u70526_text {
  11919. border-width:0px;
  11920. word-wrap:break-word;
  11921. text-transform:none;
  11922. visibility:hidden;
  11923. }
  11924. #u70527 {
  11925. border-width:0px;
  11926. position:absolute;
  11927. left:0px;
  11928. top:0px;
  11929. width:0px;
  11930. height:0px;
  11931. }
  11932. #u70528_div {
  11933. border-width:0px;
  11934. position:absolute;
  11935. left:0px;
  11936. top:0px;
  11937. width:600px;
  11938. height:60px;
  11939. background:inherit;
  11940. background-color:rgba(255, 255, 255, 1);
  11941. box-sizing:border-box;
  11942. border-width:1px;
  11943. border-style:solid;
  11944. border-color:rgba(215, 215, 215, 1);
  11945. border-radius:0px;
  11946. -moz-box-shadow:none;
  11947. -webkit-box-shadow:none;
  11948. box-shadow:none;
  11949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11950. font-weight:400;
  11951. font-style:normal;
  11952. font-size:14px;
  11953. color:#AAAAAA;
  11954. text-align:center;
  11955. line-height:30px;
  11956. }
  11957. #u70528 {
  11958. border-width:0px;
  11959. position:absolute;
  11960. left:633px;
  11961. top:2233px;
  11962. width:600px;
  11963. height:60px;
  11964. display:flex;
  11965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11966. font-weight:400;
  11967. font-style:normal;
  11968. font-size:14px;
  11969. color:#AAAAAA;
  11970. text-align:center;
  11971. line-height:30px;
  11972. }
  11973. #u70528 .text {
  11974. position:absolute;
  11975. align-self:center;
  11976. padding:5px 10px 5px 10px;
  11977. box-sizing:border-box;
  11978. width:100%;
  11979. }
  11980. #u70528_text {
  11981. border-width:0px;
  11982. word-wrap:break-word;
  11983. text-transform:none;
  11984. visibility:hidden;
  11985. }
  11986. #u70529_div {
  11987. border-width:0px;
  11988. position:absolute;
  11989. left:0px;
  11990. top:0px;
  11991. width:80px;
  11992. height:30px;
  11993. background:inherit;
  11994. background-color:rgba(24, 144, 255, 1);
  11995. border:none;
  11996. border-radius:4px;
  11997. -moz-box-shadow:none;
  11998. -webkit-box-shadow:none;
  11999. box-shadow:none;
  12000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12001. font-weight:400;
  12002. font-style:normal;
  12003. font-size:14px;
  12004. color:#FFFFFF;
  12005. }
  12006. #u70529 {
  12007. border-width:0px;
  12008. position:absolute;
  12009. left:1108px;
  12010. top:2248px;
  12011. width:80px;
  12012. height:30px;
  12013. display:flex;
  12014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12015. font-weight:400;
  12016. font-style:normal;
  12017. font-size:14px;
  12018. color:#FFFFFF;
  12019. }
  12020. #u70529 .text {
  12021. position:absolute;
  12022. align-self:center;
  12023. padding:2px 2px 2px 2px;
  12024. box-sizing:border-box;
  12025. width:100%;
  12026. }
  12027. #u70529_text {
  12028. border-width:0px;
  12029. word-wrap:break-word;
  12030. text-transform:none;
  12031. }
  12032. #u70530_div {
  12033. border-width:0px;
  12034. position:absolute;
  12035. left:0px;
  12036. top:0px;
  12037. width:80px;
  12038. height:30px;
  12039. background:inherit;
  12040. background-color:rgba(255, 255, 255, 1);
  12041. box-sizing:border-box;
  12042. border-width:1px;
  12043. border-style:solid;
  12044. border-color:rgba(170, 170, 170, 1);
  12045. border-radius:4px;
  12046. -moz-box-shadow:none;
  12047. -webkit-box-shadow:none;
  12048. box-shadow:none;
  12049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12050. font-weight:400;
  12051. font-style:normal;
  12052. font-size:14px;
  12053. }
  12054. #u70530 {
  12055. border-width:0px;
  12056. position:absolute;
  12057. left:1009px;
  12058. top:2248px;
  12059. width:80px;
  12060. height:30px;
  12061. display:flex;
  12062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12063. font-weight:400;
  12064. font-style:normal;
  12065. font-size:14px;
  12066. }
  12067. #u70530 .text {
  12068. position:absolute;
  12069. align-self:center;
  12070. padding:2px 2px 2px 2px;
  12071. box-sizing:border-box;
  12072. width:100%;
  12073. }
  12074. #u70530_text {
  12075. border-width:0px;
  12076. word-wrap:break-word;
  12077. text-transform:none;
  12078. }
  12079. #u70531_div {
  12080. border-width:0px;
  12081. position:absolute;
  12082. left:0px;
  12083. top:0px;
  12084. width:109px;
  12085. height:30px;
  12086. background:inherit;
  12087. background-color:rgba(255, 255, 255, 0);
  12088. border:none;
  12089. border-radius:0px;
  12090. -moz-box-shadow:none;
  12091. -webkit-box-shadow:none;
  12092. box-shadow:none;
  12093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12094. font-weight:400;
  12095. font-style:normal;
  12096. font-size:18px;
  12097. color:#000000;
  12098. line-height:30px;
  12099. }
  12100. #u70531 {
  12101. border-width:0px;
  12102. position:absolute;
  12103. left:688px;
  12104. top:2103px;
  12105. width:109px;
  12106. height:30px;
  12107. display:flex;
  12108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12109. font-weight:400;
  12110. font-style:normal;
  12111. font-size:18px;
  12112. color:#000000;
  12113. line-height:30px;
  12114. }
  12115. #u70531 .text {
  12116. position:absolute;
  12117. align-self:flex-start;
  12118. padding:0px 0px 0px 0px;
  12119. box-sizing:border-box;
  12120. width:100%;
  12121. }
  12122. #u70531_text {
  12123. border-width:0px;
  12124. white-space:nowrap;
  12125. text-transform:none;
  12126. }
  12127. #u70532 {
  12128. border-width:0px;
  12129. position:absolute;
  12130. left:0px;
  12131. top:0px;
  12132. width:0px;
  12133. height:0px;
  12134. }
  12135. #u70533_div {
  12136. border-width:0px;
  12137. position:absolute;
  12138. left:0px;
  12139. top:0px;
  12140. width:490px;
  12141. height:40px;
  12142. background:inherit;
  12143. background-color:rgba(255, 255, 255, 1);
  12144. box-sizing:border-box;
  12145. border-width:1px;
  12146. border-style:solid;
  12147. border-color:rgba(215, 215, 215, 1);
  12148. border-radius:4px;
  12149. -moz-box-shadow:none;
  12150. -webkit-box-shadow:none;
  12151. box-shadow:none;
  12152. font-size:14px;
  12153. }
  12154. #u70533 {
  12155. border-width:0px;
  12156. position:absolute;
  12157. left:688px;
  12158. top:2143px;
  12159. width:490px;
  12160. height:40px;
  12161. display:flex;
  12162. font-size:14px;
  12163. }
  12164. #u70533 .text {
  12165. position:absolute;
  12166. align-self:center;
  12167. padding:2px 2px 2px 2px;
  12168. box-sizing:border-box;
  12169. width:100%;
  12170. }
  12171. #u70533_text {
  12172. border-width:0px;
  12173. word-wrap:break-word;
  12174. text-transform:none;
  12175. visibility:hidden;
  12176. }
  12177. #u70534_input {
  12178. position:absolute;
  12179. left:0px;
  12180. top:0px;
  12181. width:462px;
  12182. height:31px;
  12183. padding:2px 2px 2px 2px;
  12184. font-family:'ArialMT', 'Arial', sans-serif;
  12185. font-weight:400;
  12186. font-style:normal;
  12187. font-size:14px;
  12188. letter-spacing:normal;
  12189. color:#AAAAAA;
  12190. vertical-align:none;
  12191. text-align:left;
  12192. text-transform:none;
  12193. background-color:transparent;
  12194. border-color:transparent;
  12195. }
  12196. #u70534_input.disabled {
  12197. position:absolute;
  12198. left:0px;
  12199. top:0px;
  12200. width:462px;
  12201. height:31px;
  12202. padding:2px 2px 2px 2px;
  12203. font-family:'ArialMT', 'Arial', sans-serif;
  12204. font-weight:400;
  12205. font-style:normal;
  12206. font-size:14px;
  12207. letter-spacing:normal;
  12208. color:#AAAAAA;
  12209. vertical-align:none;
  12210. text-align:left;
  12211. text-transform:none;
  12212. background-color:transparent;
  12213. border-color:transparent;
  12214. }
  12215. #u70534_div {
  12216. border-width:0px;
  12217. position:absolute;
  12218. left:0px;
  12219. top:0px;
  12220. width:462px;
  12221. height:31px;
  12222. background:inherit;
  12223. background-color:rgba(255, 255, 255, 1);
  12224. border:none;
  12225. border-radius:0px;
  12226. -moz-box-shadow:none;
  12227. -webkit-box-shadow:none;
  12228. box-shadow:none;
  12229. font-size:14px;
  12230. color:#AAAAAA;
  12231. }
  12232. #u70534 {
  12233. border-width:0px;
  12234. position:absolute;
  12235. left:702px;
  12236. top:2148px;
  12237. width:462px;
  12238. height:31px;
  12239. display:flex;
  12240. font-size:14px;
  12241. color:#AAAAAA;
  12242. }
  12243. #u70534 .text {
  12244. position:absolute;
  12245. align-self:flex-start;
  12246. padding:2px 2px 2px 2px;
  12247. box-sizing:border-box;
  12248. width:100%;
  12249. }
  12250. #u70534_div.disabled {
  12251. border-width:0px;
  12252. position:absolute;
  12253. left:0px;
  12254. top:0px;
  12255. width:462px;
  12256. height:31px;
  12257. background:inherit;
  12258. background-color:rgba(240, 240, 240, 1);
  12259. border:none;
  12260. border-radius:0px;
  12261. -moz-box-shadow:none;
  12262. -webkit-box-shadow:none;
  12263. box-shadow:none;
  12264. font-size:14px;
  12265. color:#AAAAAA;
  12266. }
  12267. #u70534.disabled {
  12268. }
  12269. .u70534_input_option {
  12270. font-size:14px;
  12271. }
  12272. #u70535 {
  12273. border-width:0px;
  12274. position:absolute;
  12275. left:0px;
  12276. top:0px;
  12277. width:0px;
  12278. height:0px;
  12279. }
  12280. #u70536_div {
  12281. border-width:0px;
  12282. position:absolute;
  12283. left:0px;
  12284. top:0px;
  12285. width:100px;
  12286. height:140px;
  12287. background:inherit;
  12288. background-color:rgba(255, 255, 255, 1);
  12289. box-sizing:border-box;
  12290. border-width:1px;
  12291. border-style:solid;
  12292. border-color:rgba(242, 242, 242, 1);
  12293. border-radius:4px;
  12294. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12295. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12296. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12298. font-weight:400;
  12299. font-style:normal;
  12300. font-size:14px;
  12301. text-align:left;
  12302. }
  12303. #u70536 {
  12304. border-width:0px;
  12305. position:absolute;
  12306. left:1452px;
  12307. top:312px;
  12308. width:100px;
  12309. height:140px;
  12310. display:flex;
  12311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12312. font-weight:400;
  12313. font-style:normal;
  12314. font-size:14px;
  12315. text-align:left;
  12316. }
  12317. #u70536 .text {
  12318. position:absolute;
  12319. align-self:center;
  12320. padding:2px 2px 2px 2px;
  12321. box-sizing:border-box;
  12322. width:100%;
  12323. }
  12324. #u70536_text {
  12325. border-width:0px;
  12326. word-wrap:break-word;
  12327. text-transform:none;
  12328. visibility:hidden;
  12329. }
  12330. #u70537_div {
  12331. border-width:0px;
  12332. position:absolute;
  12333. left:0px;
  12334. top:0px;
  12335. width:85px;
  12336. height:40px;
  12337. background:inherit;
  12338. background-color:rgba(255, 255, 255, 1);
  12339. border:none;
  12340. border-left:0px;
  12341. border-top:0px;
  12342. border-right:0px;
  12343. border-radius:0px;
  12344. border-bottom-right-radius:0px;
  12345. border-bottom-left-radius:0px;
  12346. -moz-box-shadow:none;
  12347. -webkit-box-shadow:none;
  12348. box-shadow:none;
  12349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12350. font-weight:400;
  12351. font-style:normal;
  12352. font-size:14px;
  12353. }
  12354. #u70537 {
  12355. border-width:0px;
  12356. position:absolute;
  12357. left:1459px;
  12358. top:402px;
  12359. width:85px;
  12360. height:40px;
  12361. display:flex;
  12362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12363. font-weight:400;
  12364. font-style:normal;
  12365. font-size:14px;
  12366. }
  12367. #u70537 .text {
  12368. position:absolute;
  12369. align-self:center;
  12370. padding:2px 2px 2px 2px;
  12371. box-sizing:border-box;
  12372. width:100%;
  12373. }
  12374. #u70537_text {
  12375. border-width:0px;
  12376. word-wrap:break-word;
  12377. text-transform:none;
  12378. }
  12379. #u70538_div {
  12380. border-width:0px;
  12381. position:absolute;
  12382. left:0px;
  12383. top:0px;
  12384. width:85px;
  12385. height:40px;
  12386. background:inherit;
  12387. background-color:rgba(255, 255, 255, 1);
  12388. box-sizing:border-box;
  12389. border-width:1px;
  12390. border-style:solid;
  12391. border-color:rgba(215, 215, 215, 1);
  12392. border-left:0px;
  12393. border-top:0px;
  12394. border-right:0px;
  12395. border-radius:0px;
  12396. border-bottom-right-radius:0px;
  12397. border-bottom-left-radius:0px;
  12398. -moz-box-shadow:none;
  12399. -webkit-box-shadow:none;
  12400. box-shadow:none;
  12401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12402. font-weight:400;
  12403. font-style:normal;
  12404. font-size:14px;
  12405. }
  12406. #u70538 {
  12407. border-width:0px;
  12408. position:absolute;
  12409. left:1459px;
  12410. top:362px;
  12411. width:85px;
  12412. height:40px;
  12413. display:flex;
  12414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12415. font-weight:400;
  12416. font-style:normal;
  12417. font-size:14px;
  12418. }
  12419. #u70538 .text {
  12420. position:absolute;
  12421. align-self:center;
  12422. padding:2px 2px 2px 2px;
  12423. box-sizing:border-box;
  12424. width:100%;
  12425. }
  12426. #u70538_text {
  12427. border-width:0px;
  12428. word-wrap:break-word;
  12429. text-transform:none;
  12430. }
  12431. #u70539_div {
  12432. border-width:0px;
  12433. position:absolute;
  12434. left:0px;
  12435. top:0px;
  12436. width:85px;
  12437. height:40px;
  12438. background:inherit;
  12439. background-color:rgba(255, 255, 255, 1);
  12440. box-sizing:border-box;
  12441. border-width:1px;
  12442. border-style:solid;
  12443. border-color:rgba(215, 215, 215, 1);
  12444. border-left:0px;
  12445. border-top:0px;
  12446. border-right:0px;
  12447. border-radius:0px;
  12448. border-bottom-right-radius:0px;
  12449. border-bottom-left-radius:0px;
  12450. -moz-box-shadow:none;
  12451. -webkit-box-shadow:none;
  12452. box-shadow:none;
  12453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12454. font-weight:400;
  12455. font-style:normal;
  12456. font-size:14px;
  12457. }
  12458. #u70539 {
  12459. border-width:0px;
  12460. position:absolute;
  12461. left:1459px;
  12462. top:322px;
  12463. width:85px;
  12464. height:40px;
  12465. display:flex;
  12466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12467. font-weight:400;
  12468. font-style:normal;
  12469. font-size:14px;
  12470. }
  12471. #u70539 .text {
  12472. position:absolute;
  12473. align-self:center;
  12474. padding:2px 2px 2px 2px;
  12475. box-sizing:border-box;
  12476. width:100%;
  12477. }
  12478. #u70539_text {
  12479. border-width:0px;
  12480. word-wrap:break-word;
  12481. text-transform:none;
  12482. }
  12483. #u70540 {
  12484. border-width:0px;
  12485. position:absolute;
  12486. left:0px;
  12487. top:0px;
  12488. width:0px;
  12489. height:0px;
  12490. }
  12491. #u70541 {
  12492. border-width:0px;
  12493. position:absolute;
  12494. left:0px;
  12495. top:0px;
  12496. width:0px;
  12497. height:0px;
  12498. }
  12499. #u70542_div {
  12500. border-width:0px;
  12501. position:absolute;
  12502. left:0px;
  12503. top:0px;
  12504. width:380px;
  12505. height:164px;
  12506. background:inherit;
  12507. background-color:rgba(255, 255, 255, 1);
  12508. border:none;
  12509. border-radius:4px;
  12510. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12511. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12512. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12513. font-family:'Microsoft YaHei', sans-serif;
  12514. font-weight:400;
  12515. font-style:normal;
  12516. }
  12517. #u70542 {
  12518. border-width:0px;
  12519. position:absolute;
  12520. left:1083px;
  12521. top:470px;
  12522. width:380px;
  12523. height:164px;
  12524. display:flex;
  12525. font-family:'Microsoft YaHei', sans-serif;
  12526. font-weight:400;
  12527. font-style:normal;
  12528. }
  12529. #u70542 .text {
  12530. position:absolute;
  12531. align-self:center;
  12532. padding:2px 2px 2px 2px;
  12533. box-sizing:border-box;
  12534. width:100%;
  12535. }
  12536. #u70542_text {
  12537. border-width:0px;
  12538. word-wrap:break-word;
  12539. text-transform:none;
  12540. visibility:hidden;
  12541. }
  12542. #u70543_div {
  12543. border-width:0px;
  12544. position:absolute;
  12545. left:0px;
  12546. top:0px;
  12547. width:299px;
  12548. height:44px;
  12549. background:inherit;
  12550. background-color:rgba(255, 255, 255, 0);
  12551. border:none;
  12552. border-radius:0px;
  12553. -moz-box-shadow:none;
  12554. -webkit-box-shadow:none;
  12555. box-shadow:none;
  12556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12557. font-weight:400;
  12558. font-style:normal;
  12559. font-size:14px;
  12560. color:#666666;
  12561. line-height:22px;
  12562. }
  12563. #u70543 {
  12564. border-width:0px;
  12565. position:absolute;
  12566. left:1143px;
  12567. top:525px;
  12568. width:299px;
  12569. height:44px;
  12570. display:flex;
  12571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12572. font-weight:400;
  12573. font-style:normal;
  12574. font-size:14px;
  12575. color:#666666;
  12576. line-height:22px;
  12577. }
  12578. #u70543 .text {
  12579. position:absolute;
  12580. align-self:flex-start;
  12581. padding:0px 0px 0px 0px;
  12582. box-sizing:border-box;
  12583. width:100%;
  12584. }
  12585. #u70543_text {
  12586. border-width:0px;
  12587. word-wrap:break-word;
  12588. text-transform:none;
  12589. }
  12590. #u70544_div {
  12591. border-width:0px;
  12592. position:absolute;
  12593. left:0px;
  12594. top:0px;
  12595. width:73px;
  12596. height:21px;
  12597. background:inherit;
  12598. background-color:rgba(255, 255, 255, 0);
  12599. border:none;
  12600. border-radius:0px;
  12601. -moz-box-shadow:none;
  12602. -webkit-box-shadow:none;
  12603. box-shadow:none;
  12604. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12605. font-weight:500;
  12606. font-style:normal;
  12607. font-size:18px;
  12608. color:#000000;
  12609. line-height:22px;
  12610. }
  12611. #u70544 {
  12612. border-width:0px;
  12613. position:absolute;
  12614. left:1143px;
  12615. top:495px;
  12616. width:73px;
  12617. height:21px;
  12618. display:flex;
  12619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12620. font-weight:500;
  12621. font-style:normal;
  12622. font-size:18px;
  12623. color:#000000;
  12624. line-height:22px;
  12625. }
  12626. #u70544 .text {
  12627. position:absolute;
  12628. align-self:flex-start;
  12629. padding:0px 0px 0px 0px;
  12630. box-sizing:border-box;
  12631. width:100%;
  12632. }
  12633. #u70544_text {
  12634. border-width:0px;
  12635. white-space:nowrap;
  12636. text-transform:none;
  12637. }
  12638. #u70545_div {
  12639. border-width:0px;
  12640. position:absolute;
  12641. left:0px;
  12642. top:0px;
  12643. width:61px;
  12644. height:32px;
  12645. background:inherit;
  12646. background-color:rgba(24, 144, 255, 1);
  12647. border:none;
  12648. border-radius:4px;
  12649. -moz-box-shadow:none;
  12650. -webkit-box-shadow:none;
  12651. box-shadow:none;
  12652. font-family:'Microsoft YaHei', sans-serif;
  12653. font-weight:400;
  12654. font-style:normal;
  12655. font-size:14px;
  12656. color:#FFFFFF;
  12657. }
  12658. #u70545 {
  12659. border-width:0px;
  12660. position:absolute;
  12661. left:1385px;
  12662. top:585px;
  12663. width:61px;
  12664. height:32px;
  12665. display:flex;
  12666. font-family:'Microsoft YaHei', sans-serif;
  12667. font-weight:400;
  12668. font-style:normal;
  12669. font-size:14px;
  12670. color:#FFFFFF;
  12671. }
  12672. #u70545 .text {
  12673. position:absolute;
  12674. align-self:center;
  12675. padding:2px 16px 2px 16px;
  12676. box-sizing:border-box;
  12677. width:100%;
  12678. }
  12679. #u70545_text {
  12680. border-width:0px;
  12681. white-space:nowrap;
  12682. text-transform:none;
  12683. }
  12684. #u70546_img {
  12685. border-width:0px;
  12686. position:absolute;
  12687. left:0px;
  12688. top:0px;
  12689. width:20px;
  12690. height:20px;
  12691. }
  12692. #u70546 {
  12693. border-width:0px;
  12694. position:absolute;
  12695. left:1112px;
  12696. top:499px;
  12697. width:20px;
  12698. height:20px;
  12699. display:flex;
  12700. }
  12701. #u70546 .text {
  12702. position:absolute;
  12703. align-self:center;
  12704. padding:2px 2px 2px 2px;
  12705. box-sizing:border-box;
  12706. width:100%;
  12707. }
  12708. #u70546_text {
  12709. border-width:0px;
  12710. word-wrap:break-word;
  12711. text-transform:none;
  12712. visibility:hidden;
  12713. }
  12714. #u70547_div {
  12715. border-width:0px;
  12716. position:absolute;
  12717. left:0px;
  12718. top:0px;
  12719. width:79px;
  12720. height:30px;
  12721. background:inherit;
  12722. background-color:rgba(255, 255, 255, 1);
  12723. box-sizing:border-box;
  12724. border-width:1px;
  12725. border-style:solid;
  12726. border-color:rgba(170, 170, 170, 1);
  12727. border-radius:4px;
  12728. -moz-box-shadow:none;
  12729. -webkit-box-shadow:none;
  12730. box-shadow:none;
  12731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12732. font-weight:400;
  12733. font-style:normal;
  12734. font-size:12px;
  12735. color:#555555;
  12736. }
  12737. #u70547 {
  12738. border-width:0px;
  12739. position:absolute;
  12740. left:1499px;
  12741. top:66px;
  12742. width:79px;
  12743. height:30px;
  12744. display:flex;
  12745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12746. font-weight:400;
  12747. font-style:normal;
  12748. font-size:12px;
  12749. color:#555555;
  12750. }
  12751. #u70547 .text {
  12752. position:absolute;
  12753. align-self:center;
  12754. padding:5px 15px 5px 15px;
  12755. box-sizing:border-box;
  12756. width:100%;
  12757. }
  12758. #u70547_text {
  12759. border-width:0px;
  12760. white-space:nowrap;
  12761. text-transform:none;
  12762. }
  12763. #u70548 {
  12764. border-width:0px;
  12765. position:absolute;
  12766. left:0px;
  12767. top:0px;
  12768. width:0px;
  12769. height:0px;
  12770. }
  12771. #u70549_div {
  12772. border-width:0px;
  12773. position:absolute;
  12774. left:0px;
  12775. top:0px;
  12776. width:100px;
  12777. height:100px;
  12778. background:inherit;
  12779. background-color:rgba(255, 255, 255, 1);
  12780. box-sizing:border-box;
  12781. border-width:1px;
  12782. border-style:solid;
  12783. border-color:rgba(242, 242, 242, 1);
  12784. border-radius:4px;
  12785. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12786. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12787. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  12788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12789. font-weight:400;
  12790. font-style:normal;
  12791. font-size:14px;
  12792. text-align:left;
  12793. }
  12794. #u70549 {
  12795. border-width:0px;
  12796. position:absolute;
  12797. left:1473px;
  12798. top:94px;
  12799. width:100px;
  12800. height:100px;
  12801. display:flex;
  12802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12803. font-weight:400;
  12804. font-style:normal;
  12805. font-size:14px;
  12806. text-align:left;
  12807. }
  12808. #u70549 .text {
  12809. position:absolute;
  12810. align-self:center;
  12811. padding:2px 2px 2px 2px;
  12812. box-sizing:border-box;
  12813. width:100%;
  12814. }
  12815. #u70549_text {
  12816. border-width:0px;
  12817. word-wrap:break-word;
  12818. text-transform:none;
  12819. visibility:hidden;
  12820. }
  12821. #u70550_div {
  12822. border-width:0px;
  12823. position:absolute;
  12824. left:0px;
  12825. top:0px;
  12826. width:85px;
  12827. height:40px;
  12828. background:inherit;
  12829. background-color:rgba(255, 255, 255, 1);
  12830. border:none;
  12831. border-left:0px;
  12832. border-top:0px;
  12833. border-right:0px;
  12834. border-radius:0px;
  12835. border-bottom-right-radius:0px;
  12836. border-bottom-left-radius:0px;
  12837. -moz-box-shadow:none;
  12838. -webkit-box-shadow:none;
  12839. box-shadow:none;
  12840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12841. font-weight:400;
  12842. font-style:normal;
  12843. font-size:14px;
  12844. }
  12845. #u70550 {
  12846. border-width:0px;
  12847. position:absolute;
  12848. left:1480px;
  12849. top:144px;
  12850. width:85px;
  12851. height:40px;
  12852. display:flex;
  12853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12854. font-weight:400;
  12855. font-style:normal;
  12856. font-size:14px;
  12857. }
  12858. #u70550 .text {
  12859. position:absolute;
  12860. align-self:center;
  12861. padding:2px 2px 2px 2px;
  12862. box-sizing:border-box;
  12863. width:100%;
  12864. }
  12865. #u70550_text {
  12866. border-width:0px;
  12867. word-wrap:break-word;
  12868. text-transform:none;
  12869. }
  12870. #u70551_div {
  12871. border-width:0px;
  12872. position:absolute;
  12873. left:0px;
  12874. top:0px;
  12875. width:85px;
  12876. height:40px;
  12877. background:inherit;
  12878. background-color:rgba(255, 255, 255, 1);
  12879. box-sizing:border-box;
  12880. border-width:1px;
  12881. border-style:solid;
  12882. border-color:rgba(215, 215, 215, 1);
  12883. border-left:0px;
  12884. border-top:0px;
  12885. border-right:0px;
  12886. border-radius:0px;
  12887. border-bottom-right-radius:0px;
  12888. border-bottom-left-radius:0px;
  12889. -moz-box-shadow:none;
  12890. -webkit-box-shadow:none;
  12891. box-shadow:none;
  12892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12893. font-weight:400;
  12894. font-style:normal;
  12895. font-size:14px;
  12896. }
  12897. #u70551 {
  12898. border-width:0px;
  12899. position:absolute;
  12900. left:1480px;
  12901. top:104px;
  12902. width:85px;
  12903. height:40px;
  12904. display:flex;
  12905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12906. font-weight:400;
  12907. font-style:normal;
  12908. font-size:14px;
  12909. }
  12910. #u70551 .text {
  12911. position:absolute;
  12912. align-self:center;
  12913. padding:2px 2px 2px 2px;
  12914. box-sizing:border-box;
  12915. width:100%;
  12916. }
  12917. #u70551_text {
  12918. border-width:0px;
  12919. word-wrap:break-word;
  12920. text-transform:none;
  12921. }
  12922. #u70552 {
  12923. border-width:0px;
  12924. position:absolute;
  12925. left:0px;
  12926. top:0px;
  12927. width:0px;
  12928. height:0px;
  12929. }
  12930. #u70553 {
  12931. border-width:0px;
  12932. position:absolute;
  12933. left:0px;
  12934. top:0px;
  12935. width:0px;
  12936. height:0px;
  12937. }
  12938. #u70554_div {
  12939. border-width:0px;
  12940. position:absolute;
  12941. left:0px;
  12942. top:0px;
  12943. width:380px;
  12944. height:164px;
  12945. background:inherit;
  12946. background-color:rgba(255, 255, 255, 1);
  12947. border:none;
  12948. border-radius:4px;
  12949. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12950. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12951. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12952. font-family:'Microsoft YaHei', sans-serif;
  12953. font-weight:400;
  12954. font-style:normal;
  12955. }
  12956. #u70554 {
  12957. border-width:0px;
  12958. position:absolute;
  12959. left:656px;
  12960. top:477px;
  12961. width:380px;
  12962. height:164px;
  12963. display:flex;
  12964. font-family:'Microsoft YaHei', sans-serif;
  12965. font-weight:400;
  12966. font-style:normal;
  12967. }
  12968. #u70554 .text {
  12969. position:absolute;
  12970. align-self:center;
  12971. padding:2px 2px 2px 2px;
  12972. box-sizing:border-box;
  12973. width:100%;
  12974. }
  12975. #u70554_text {
  12976. border-width:0px;
  12977. word-wrap:break-word;
  12978. text-transform:none;
  12979. visibility:hidden;
  12980. }
  12981. #u70555_div {
  12982. border-width:0px;
  12983. position:absolute;
  12984. left:0px;
  12985. top:0px;
  12986. width:299px;
  12987. height:22px;
  12988. background:inherit;
  12989. background-color:rgba(255, 255, 255, 0);
  12990. border:none;
  12991. border-radius:0px;
  12992. -moz-box-shadow:none;
  12993. -webkit-box-shadow:none;
  12994. box-shadow:none;
  12995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12996. font-weight:400;
  12997. font-style:normal;
  12998. font-size:14px;
  12999. color:#666666;
  13000. line-height:22px;
  13001. }
  13002. #u70555 {
  13003. border-width:0px;
  13004. position:absolute;
  13005. left:716px;
  13006. top:532px;
  13007. width:299px;
  13008. height:22px;
  13009. display:flex;
  13010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13011. font-weight:400;
  13012. font-style:normal;
  13013. font-size:14px;
  13014. color:#666666;
  13015. line-height:22px;
  13016. }
  13017. #u70555 .text {
  13018. position:absolute;
  13019. align-self:flex-start;
  13020. padding:0px 0px 0px 0px;
  13021. box-sizing:border-box;
  13022. width:100%;
  13023. }
  13024. #u70555_text {
  13025. border-width:0px;
  13026. word-wrap:break-word;
  13027. text-transform:none;
  13028. }
  13029. #u70556_div {
  13030. border-width:0px;
  13031. position:absolute;
  13032. left:0px;
  13033. top:0px;
  13034. width:73px;
  13035. height:21px;
  13036. background:inherit;
  13037. background-color:rgba(255, 255, 255, 0);
  13038. border:none;
  13039. border-radius:0px;
  13040. -moz-box-shadow:none;
  13041. -webkit-box-shadow:none;
  13042. box-shadow:none;
  13043. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13044. font-weight:500;
  13045. font-style:normal;
  13046. font-size:18px;
  13047. color:#000000;
  13048. line-height:22px;
  13049. }
  13050. #u70556 {
  13051. border-width:0px;
  13052. position:absolute;
  13053. left:716px;
  13054. top:502px;
  13055. width:73px;
  13056. height:21px;
  13057. display:flex;
  13058. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13059. font-weight:500;
  13060. font-style:normal;
  13061. font-size:18px;
  13062. color:#000000;
  13063. line-height:22px;
  13064. }
  13065. #u70556 .text {
  13066. position:absolute;
  13067. align-self:flex-start;
  13068. padding:0px 0px 0px 0px;
  13069. box-sizing:border-box;
  13070. width:100%;
  13071. }
  13072. #u70556_text {
  13073. border-width:0px;
  13074. white-space:nowrap;
  13075. text-transform:none;
  13076. }
  13077. #u70557_div {
  13078. border-width:0px;
  13079. position:absolute;
  13080. left:0px;
  13081. top:0px;
  13082. width:61px;
  13083. height:32px;
  13084. background:inherit;
  13085. background-color:rgba(24, 144, 255, 1);
  13086. border:none;
  13087. border-radius:4px;
  13088. -moz-box-shadow:none;
  13089. -webkit-box-shadow:none;
  13090. box-shadow:none;
  13091. font-family:'Microsoft YaHei', sans-serif;
  13092. font-weight:400;
  13093. font-style:normal;
  13094. font-size:14px;
  13095. color:#FFFFFF;
  13096. }
  13097. #u70557 {
  13098. border-width:0px;
  13099. position:absolute;
  13100. left:958px;
  13101. top:592px;
  13102. width:61px;
  13103. height:32px;
  13104. display:flex;
  13105. font-family:'Microsoft YaHei', sans-serif;
  13106. font-weight:400;
  13107. font-style:normal;
  13108. font-size:14px;
  13109. color:#FFFFFF;
  13110. }
  13111. #u70557 .text {
  13112. position:absolute;
  13113. align-self:center;
  13114. padding:2px 16px 2px 16px;
  13115. box-sizing:border-box;
  13116. width:100%;
  13117. }
  13118. #u70557_text {
  13119. border-width:0px;
  13120. white-space:nowrap;
  13121. text-transform:none;
  13122. }
  13123. #u70558_img {
  13124. border-width:0px;
  13125. position:absolute;
  13126. left:0px;
  13127. top:0px;
  13128. width:20px;
  13129. height:20px;
  13130. }
  13131. #u70558 {
  13132. border-width:0px;
  13133. position:absolute;
  13134. left:685px;
  13135. top:506px;
  13136. width:20px;
  13137. height:20px;
  13138. display:flex;
  13139. }
  13140. #u70558 .text {
  13141. position:absolute;
  13142. align-self:center;
  13143. padding:2px 2px 2px 2px;
  13144. box-sizing:border-box;
  13145. width:100%;
  13146. }
  13147. #u70558_text {
  13148. border-width:0px;
  13149. word-wrap:break-word;
  13150. text-transform:none;
  13151. visibility:hidden;
  13152. }