styles.css 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3279px;
  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. #u29915_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. #u29915 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u29915 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u29915_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u29916_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. #u29916 {
  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. #u29916 .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. #u29916_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u29917_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. #u29917 {
  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. #u29917 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u29917_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u29918 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u29919_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u29919 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u29919 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u29919_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u29920_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. #u29920 {
  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. #u29920 .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. #u29920_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u29921_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. #u29921 {
  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. #u29921 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u29921_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u29922 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u29923_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. #u29923_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. #u29923_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. #u29923 {
  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. #u29923 .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. #u29923_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. #u29923.disabled {
  356. }
  357. .u29923_input_option {
  358. font-size:14px;
  359. }
  360. #u29924_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u29924 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u29924 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u29924_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u29925_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. #u29925 {
  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. #u29925 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u29925_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u29926_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. #u29926 {
  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. #u29926 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u29926_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u29927 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u29928_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. #u29928 {
  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. #u29928 .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. #u29928_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u29929_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u29929 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u29929 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u29929_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u29930 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u29931_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. #u29931 {
  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. #u29931 .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. #u29931_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u29932_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u29932 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u29932 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u29932_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u29933 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u29934_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. #u29934 {
  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. #u29934 .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. #u29934_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u29935_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u29935 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u29935 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u29935_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u29936 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u29937_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. #u29937 {
  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. #u29937 .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. #u29937_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u29938_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u29938 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u29938 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u29938_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u29939 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u29940_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. #u29940 {
  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. #u29940 .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. #u29940_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u29941_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u29941 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u29941 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u29941_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u29942 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u29943_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. #u29943 {
  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. #u29943 .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. #u29943_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u29944_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u29944 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u29944 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u29944_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u29945 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u29946_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. #u29946 {
  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. #u29946 .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. #u29946_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u29947_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u29947 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u29947 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u29947_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u29948 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u29949_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. #u29949 {
  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. #u29949 .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. #u29949_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u29950_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u29950 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u29950 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u29950_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u29951 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u29952_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. #u29952 {
  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. #u29952 .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. #u29952_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u29953_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u29953 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u29953 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u29953_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u29954 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u29955_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. #u29955 {
  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. #u29955 .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. #u29955_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u29956_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u29956 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u29956 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u29956_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u29957_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. #u29957 {
  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. #u29957 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u29957_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u29958_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u29958 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u29958 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u29958_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u29959_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. #u29959 {
  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. #u29959 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u29959_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u29960_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u29960 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u29960 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u29960_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u29961 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u29962_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. #u29962 {
  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. #u29962 .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. #u29962_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u29963_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u29963 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u29963 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u29963_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u29964 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u29965_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. #u29965 {
  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. #u29965 .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. #u29965_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u29966_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u29966 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u29966 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u29966_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u29967_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u29967 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u29967 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u29967_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u29968_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:109px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(224, 231, 247, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1690. font-weight:500;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u29968 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:350px;
  1698. top:50px;
  1699. width:109px;
  1700. height:50px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1703. font-weight:500;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u29968 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u29968_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u29969 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:351px;
  1723. top:160px;
  1724. width:1218px;
  1725. height:220px;
  1726. }
  1727. #u29970_img {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:50px;
  1733. height:38px;
  1734. }
  1735. #u29970 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:50px;
  1741. height:38px;
  1742. display:flex;
  1743. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:12px;
  1747. color:#FFFFFF;
  1748. }
  1749. #u29970 .text {
  1750. position:absolute;
  1751. align-self:center;
  1752. padding:2px 2px 2px 0px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u29970_text {
  1757. border-width:0px;
  1758. word-wrap:break-word;
  1759. text-transform:none;
  1760. }
  1761. #u29971_img {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:150px;
  1767. height:38px;
  1768. }
  1769. #u29971 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:50px;
  1773. top:0px;
  1774. width:150px;
  1775. height:38px;
  1776. display:flex;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:12px;
  1781. color:#FFFFFF;
  1782. }
  1783. #u29971 .text {
  1784. position:absolute;
  1785. align-self:center;
  1786. padding:2px 2px 2px 0px;
  1787. box-sizing:border-box;
  1788. width:100%;
  1789. }
  1790. #u29971_text {
  1791. border-width:0px;
  1792. word-wrap:break-word;
  1793. text-transform:none;
  1794. }
  1795. #u29972_img {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:150px;
  1801. height:38px;
  1802. }
  1803. #u29972 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:200px;
  1807. top:0px;
  1808. width:150px;
  1809. height:38px;
  1810. display:flex;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. color:#FFFFFF;
  1816. }
  1817. #u29972 .text {
  1818. position:absolute;
  1819. align-self:center;
  1820. padding:2px 2px 2px 0px;
  1821. box-sizing:border-box;
  1822. width:100%;
  1823. }
  1824. #u29972_text {
  1825. border-width:0px;
  1826. word-wrap:break-word;
  1827. text-transform:none;
  1828. }
  1829. #u29973_img {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:150px;
  1835. height:38px;
  1836. }
  1837. #u29973 {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:350px;
  1841. top:0px;
  1842. width:150px;
  1843. height:38px;
  1844. display:flex;
  1845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1846. font-weight:400;
  1847. font-style:normal;
  1848. font-size:12px;
  1849. color:#FFFFFF;
  1850. }
  1851. #u29973 .text {
  1852. position:absolute;
  1853. align-self:center;
  1854. padding:2px 2px 2px 0px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u29973_text {
  1859. border-width:0px;
  1860. word-wrap:break-word;
  1861. text-transform:none;
  1862. }
  1863. #u29974_img {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:150px;
  1869. height:38px;
  1870. }
  1871. #u29974 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:500px;
  1875. top:0px;
  1876. width:150px;
  1877. height:38px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:12px;
  1883. color:#FFFFFF;
  1884. }
  1885. #u29974 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 0px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u29974_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. }
  1897. #u29975_img {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:135px;
  1903. height:38px;
  1904. }
  1905. #u29975 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:650px;
  1909. top:0px;
  1910. width:135px;
  1911. height:38px;
  1912. display:flex;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:12px;
  1917. color:#FFFFFF;
  1918. }
  1919. #u29975 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:2px 2px 2px 0px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u29975_text {
  1927. border-width:0px;
  1928. word-wrap:break-word;
  1929. text-transform:none;
  1930. }
  1931. #u29976_img {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:135px;
  1937. height:38px;
  1938. }
  1939. #u29976 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:785px;
  1943. top:0px;
  1944. width:135px;
  1945. height:38px;
  1946. display:flex;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:12px;
  1951. color:#FFFFFF;
  1952. }
  1953. #u29976 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 0px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u29976_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u29977_img {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:150px;
  1971. height:38px;
  1972. }
  1973. #u29977 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:920px;
  1977. top:0px;
  1978. width:150px;
  1979. height:38px;
  1980. display:flex;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:12px;
  1985. color:#FFFFFF;
  1986. }
  1987. #u29977 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:2px 2px 2px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u29977_text {
  1995. border-width:0px;
  1996. word-wrap:break-word;
  1997. text-transform:none;
  1998. }
  1999. #u29978_img {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:148px;
  2005. height:38px;
  2006. }
  2007. #u29978 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:1070px;
  2011. top:0px;
  2012. width:148px;
  2013. height:38px;
  2014. display:flex;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:12px;
  2019. color:#FFFFFF;
  2020. }
  2021. #u29978 .text {
  2022. position:absolute;
  2023. align-self:center;
  2024. padding:2px 2px 2px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u29978_text {
  2029. border-width:0px;
  2030. word-wrap:break-word;
  2031. text-transform:none;
  2032. }
  2033. #u29979_img {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:50px;
  2039. height:39px;
  2040. }
  2041. #u29979 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:38px;
  2046. width:50px;
  2047. height:39px;
  2048. display:flex;
  2049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:12px;
  2053. }
  2054. #u29979 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:2px 2px 2px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u29979_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. }
  2066. #u29980_img {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:150px;
  2072. height:39px;
  2073. }
  2074. #u29980 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:50px;
  2078. top:38px;
  2079. width:150px;
  2080. height:39px;
  2081. display:flex;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:12px;
  2086. color:#AAAAAA;
  2087. }
  2088. #u29980 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:2px 2px 2px 0px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u29980_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. visibility:hidden;
  2100. }
  2101. #u29981_img {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:150px;
  2107. height:39px;
  2108. }
  2109. #u29981 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:200px;
  2113. top:38px;
  2114. width:150px;
  2115. height:39px;
  2116. display:flex;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:12px;
  2121. color:#AAAAAA;
  2122. }
  2123. #u29981 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u29981_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u29982_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:150px;
  2142. height:39px;
  2143. }
  2144. #u29982 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:350px;
  2148. top:38px;
  2149. width:150px;
  2150. height:39px;
  2151. display:flex;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:12px;
  2156. color:#333333;
  2157. }
  2158. #u29982 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u29982_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. }
  2170. #u29983_img {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:150px;
  2176. height:39px;
  2177. }
  2178. #u29983 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:500px;
  2182. top:38px;
  2183. width:150px;
  2184. height:39px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:12px;
  2190. }
  2191. #u29983 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u29983_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. }
  2203. #u29984_img {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:135px;
  2209. height:39px;
  2210. }
  2211. #u29984 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:650px;
  2215. top:38px;
  2216. width:135px;
  2217. height:39px;
  2218. display:flex;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. }
  2224. #u29984 .text {
  2225. position:absolute;
  2226. align-self:center;
  2227. padding:2px 2px 2px 0px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u29984_text {
  2232. border-width:0px;
  2233. word-wrap:break-word;
  2234. text-transform:none;
  2235. }
  2236. #u29985_img {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:135px;
  2242. height:39px;
  2243. }
  2244. #u29985 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:785px;
  2248. top:38px;
  2249. width:135px;
  2250. height:39px;
  2251. display:flex;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:12px;
  2256. }
  2257. #u29985 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u29985_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. visibility:hidden;
  2269. }
  2270. #u29986_img {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:150px;
  2276. height:39px;
  2277. }
  2278. #u29986 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:920px;
  2282. top:38px;
  2283. width:150px;
  2284. height:39px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. }
  2291. #u29986 .text {
  2292. position:absolute;
  2293. align-self:center;
  2294. padding:2px 2px 2px 0px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u29986_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. }
  2303. #u29987_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:148px;
  2309. height:39px;
  2310. }
  2311. #u29987 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:1070px;
  2315. top:38px;
  2316. width:148px;
  2317. height:39px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:12px;
  2323. color:#298FFF;
  2324. }
  2325. #u29987 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 0px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u29987_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. }
  2337. #u29988_img {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:50px;
  2343. height:38px;
  2344. }
  2345. #u29988 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:77px;
  2350. width:50px;
  2351. height:38px;
  2352. display:flex;
  2353. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:12px;
  2357. color:#606266;
  2358. }
  2359. #u29988 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u29988_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. }
  2371. #u29989_img {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:150px;
  2377. height:38px;
  2378. }
  2379. #u29989 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:50px;
  2383. top:77px;
  2384. width:150px;
  2385. height:38px;
  2386. display:flex;
  2387. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:12px;
  2391. color:#606266;
  2392. }
  2393. #u29989 .text {
  2394. position:absolute;
  2395. align-self:center;
  2396. padding:2px 2px 2px 0px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u29989_text {
  2401. border-width:0px;
  2402. word-wrap:break-word;
  2403. text-transform:none;
  2404. visibility:hidden;
  2405. }
  2406. #u29990_img {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:150px;
  2412. height:38px;
  2413. }
  2414. #u29990 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:200px;
  2418. top:77px;
  2419. width:150px;
  2420. height:38px;
  2421. display:flex;
  2422. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:12px;
  2426. color:#606266;
  2427. }
  2428. #u29990 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 2px 2px 0px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u29990_text {
  2436. border-width:0px;
  2437. word-wrap:break-word;
  2438. text-transform:none;
  2439. visibility:hidden;
  2440. }
  2441. #u29991_img {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:150px;
  2447. height:38px;
  2448. }
  2449. #u29991 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:350px;
  2453. top:77px;
  2454. width:150px;
  2455. height:38px;
  2456. display:flex;
  2457. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:12px;
  2461. color:#606266;
  2462. }
  2463. #u29991 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 0px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u29991_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u29992_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:150px;
  2482. height:38px;
  2483. }
  2484. #u29992 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:500px;
  2488. top:77px;
  2489. width:150px;
  2490. height:38px;
  2491. display:flex;
  2492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. color:#606266;
  2497. }
  2498. #u29992 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u29992_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u29993_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:135px;
  2517. height:38px;
  2518. }
  2519. #u29993 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:650px;
  2523. top:77px;
  2524. width:135px;
  2525. height:38px;
  2526. display:flex;
  2527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. color:#606266;
  2532. }
  2533. #u29993 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u29993_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. visibility:hidden;
  2545. }
  2546. #u29994_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:135px;
  2552. height:38px;
  2553. }
  2554. #u29994 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:785px;
  2558. top:77px;
  2559. width:135px;
  2560. height:38px;
  2561. display:flex;
  2562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:12px;
  2566. color:#606266;
  2567. }
  2568. #u29994 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 0px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u29994_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u29995_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:150px;
  2587. height:38px;
  2588. }
  2589. #u29995 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:920px;
  2593. top:77px;
  2594. width:150px;
  2595. height:38px;
  2596. display:flex;
  2597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. color:#606266;
  2602. }
  2603. #u29995 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 0px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u29995_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u29996_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:148px;
  2622. height:38px;
  2623. }
  2624. #u29996 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:1070px;
  2628. top:77px;
  2629. width:148px;
  2630. height:38px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:12px;
  2636. color:#298FFF;
  2637. }
  2638. #u29996 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u29996_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u29997_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:50px;
  2657. height:35px;
  2658. }
  2659. #u29997 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:115px;
  2664. width:50px;
  2665. height:35px;
  2666. display:flex;
  2667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:12px;
  2671. color:#606266;
  2672. }
  2673. #u29997 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u29997_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. }
  2685. #u29998_img {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:150px;
  2691. height:35px;
  2692. }
  2693. #u29998 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:50px;
  2697. top:115px;
  2698. width:150px;
  2699. height:35px;
  2700. display:flex;
  2701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:12px;
  2705. color:#606266;
  2706. }
  2707. #u29998 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 0px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u29998_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u29999_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:150px;
  2726. height:35px;
  2727. }
  2728. #u29999 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:200px;
  2732. top:115px;
  2733. width:150px;
  2734. height:35px;
  2735. display:flex;
  2736. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. color:#606266;
  2741. }
  2742. #u29999 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u29999_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u30000_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:150px;
  2761. height:35px;
  2762. }
  2763. #u30000 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:350px;
  2767. top:115px;
  2768. width:150px;
  2769. height:35px;
  2770. display:flex;
  2771. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:12px;
  2775. color:#606266;
  2776. }
  2777. #u30000 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u30000_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. visibility:hidden;
  2789. }
  2790. #u30001_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:150px;
  2796. height:35px;
  2797. }
  2798. #u30001 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:500px;
  2802. top:115px;
  2803. width:150px;
  2804. height:35px;
  2805. display:flex;
  2806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:12px;
  2810. color:#606266;
  2811. }
  2812. #u30001 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 0px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u30001_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u30002_img {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:135px;
  2831. height:35px;
  2832. }
  2833. #u30002 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:650px;
  2837. top:115px;
  2838. width:135px;
  2839. height:35px;
  2840. display:flex;
  2841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:12px;
  2845. color:#606266;
  2846. }
  2847. #u30002 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u30002_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. visibility:hidden;
  2859. }
  2860. #u30003_img {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:135px;
  2866. height:35px;
  2867. }
  2868. #u30003 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:785px;
  2872. top:115px;
  2873. width:135px;
  2874. height:35px;
  2875. display:flex;
  2876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:12px;
  2880. color:#606266;
  2881. }
  2882. #u30003 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u30003_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u30004_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:150px;
  2901. height:35px;
  2902. }
  2903. #u30004 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:920px;
  2907. top:115px;
  2908. width:150px;
  2909. height:35px;
  2910. display:flex;
  2911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:12px;
  2915. color:#606266;
  2916. }
  2917. #u30004 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 0px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u30004_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u30005_img {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:148px;
  2936. height:35px;
  2937. }
  2938. #u30005 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:1070px;
  2942. top:115px;
  2943. width:148px;
  2944. height:35px;
  2945. display:flex;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:12px;
  2950. color:#02A7F0;
  2951. }
  2952. #u30005 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 0px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u30005_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u30006_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:50px;
  2971. height:36px;
  2972. }
  2973. #u30006 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:150px;
  2978. width:50px;
  2979. height:36px;
  2980. display:flex;
  2981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. color:#606266;
  2986. }
  2987. #u30006 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u30006_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. }
  2999. #u30007_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:150px;
  3005. height:36px;
  3006. }
  3007. #u30007 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:50px;
  3011. top:150px;
  3012. width:150px;
  3013. height:36px;
  3014. display:flex;
  3015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. color:#606266;
  3020. }
  3021. #u30007 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u30007_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u30008_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:150px;
  3040. height:36px;
  3041. }
  3042. #u30008 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:200px;
  3046. top:150px;
  3047. width:150px;
  3048. height:36px;
  3049. display:flex;
  3050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:12px;
  3054. color:#606266;
  3055. }
  3056. #u30008 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u30008_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u30009_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:150px;
  3075. height:36px;
  3076. }
  3077. #u30009 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:350px;
  3081. top:150px;
  3082. width:150px;
  3083. height:36px;
  3084. display:flex;
  3085. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. color:#606266;
  3090. }
  3091. #u30009 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u30009_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u30010_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:150px;
  3110. height:36px;
  3111. }
  3112. #u30010 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:500px;
  3116. top:150px;
  3117. width:150px;
  3118. height:36px;
  3119. display:flex;
  3120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#606266;
  3125. }
  3126. #u30010 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u30010_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u30011_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:135px;
  3145. height:36px;
  3146. }
  3147. #u30011 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:650px;
  3151. top:150px;
  3152. width:135px;
  3153. height:36px;
  3154. display:flex;
  3155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:12px;
  3159. color:#606266;
  3160. }
  3161. #u30011 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 0px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u30011_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u30012_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:135px;
  3180. height:36px;
  3181. }
  3182. #u30012 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:785px;
  3186. top:150px;
  3187. width:135px;
  3188. height:36px;
  3189. display:flex;
  3190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. color:#606266;
  3195. }
  3196. #u30012 .text {
  3197. position:absolute;
  3198. align-self:center;
  3199. padding:2px 2px 2px 0px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u30012_text {
  3204. border-width:0px;
  3205. word-wrap:break-word;
  3206. text-transform:none;
  3207. visibility:hidden;
  3208. }
  3209. #u30013_img {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:150px;
  3215. height:36px;
  3216. }
  3217. #u30013 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:920px;
  3221. top:150px;
  3222. width:150px;
  3223. height:36px;
  3224. display:flex;
  3225. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:12px;
  3229. color:#606266;
  3230. }
  3231. #u30013 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 0px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u30013_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u30014_img {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:148px;
  3250. height:36px;
  3251. }
  3252. #u30014 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:1070px;
  3256. top:150px;
  3257. width:148px;
  3258. height:36px;
  3259. display:flex;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:12px;
  3264. color:#02A7F0;
  3265. }
  3266. #u30014 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 0px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u30014_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. visibility:hidden;
  3278. }
  3279. #u30015_img {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:50px;
  3285. height:34px;
  3286. }
  3287. #u30015 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:186px;
  3292. width:50px;
  3293. height:34px;
  3294. display:flex;
  3295. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:12px;
  3299. color:#606266;
  3300. }
  3301. #u30015 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u30015_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u30016_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:150px;
  3320. height:34px;
  3321. }
  3322. #u30016 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:50px;
  3326. top:186px;
  3327. width:150px;
  3328. height:34px;
  3329. display:flex;
  3330. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:12px;
  3334. color:#606266;
  3335. }
  3336. #u30016 .text {
  3337. position:absolute;
  3338. align-self:center;
  3339. padding:2px 2px 2px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u30016_text {
  3344. border-width:0px;
  3345. word-wrap:break-word;
  3346. text-transform:none;
  3347. visibility:hidden;
  3348. }
  3349. #u30017_img {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:150px;
  3355. height:34px;
  3356. }
  3357. #u30017 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:200px;
  3361. top:186px;
  3362. width:150px;
  3363. height:34px;
  3364. display:flex;
  3365. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:12px;
  3369. color:#606266;
  3370. }
  3371. #u30017 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 2px 2px 0px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u30017_text {
  3379. border-width:0px;
  3380. word-wrap:break-word;
  3381. text-transform:none;
  3382. visibility:hidden;
  3383. }
  3384. #u30018_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:150px;
  3390. height:34px;
  3391. }
  3392. #u30018 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:350px;
  3396. top:186px;
  3397. width:150px;
  3398. height:34px;
  3399. display:flex;
  3400. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:12px;
  3404. color:#606266;
  3405. }
  3406. #u30018 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 0px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u30018_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u30019_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:150px;
  3425. height:34px;
  3426. }
  3427. #u30019 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:500px;
  3431. top:186px;
  3432. width:150px;
  3433. height:34px;
  3434. display:flex;
  3435. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. color:#606266;
  3440. }
  3441. #u30019 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u30019_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u30020_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:135px;
  3460. height:34px;
  3461. }
  3462. #u30020 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:650px;
  3466. top:186px;
  3467. width:135px;
  3468. height:34px;
  3469. display:flex;
  3470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:12px;
  3474. color:#606266;
  3475. }
  3476. #u30020 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 0px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u30020_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u30021_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:135px;
  3495. height:34px;
  3496. }
  3497. #u30021 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:785px;
  3501. top:186px;
  3502. width:135px;
  3503. height:34px;
  3504. display:flex;
  3505. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:12px;
  3509. color:#606266;
  3510. }
  3511. #u30021 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u30021_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u30022_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:150px;
  3530. height:34px;
  3531. }
  3532. #u30022 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:920px;
  3536. top:186px;
  3537. width:150px;
  3538. height:34px;
  3539. display:flex;
  3540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. font-size:12px;
  3544. color:#606266;
  3545. }
  3546. #u30022 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 0px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u30022_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u30023_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:148px;
  3565. height:34px;
  3566. }
  3567. #u30023 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:1070px;
  3571. top:186px;
  3572. width:148px;
  3573. height:34px;
  3574. display:flex;
  3575. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:12px;
  3579. color:#606266;
  3580. }
  3581. #u30023 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 0px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u30023_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u30024_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:55px;
  3600. height:30px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 1);
  3603. box-sizing:border-box;
  3604. border-width:1px;
  3605. border-style:solid;
  3606. border-color:rgba(170, 170, 170, 1);
  3607. border-radius:4px;
  3608. -moz-box-shadow:none;
  3609. -webkit-box-shadow:none;
  3610. box-shadow:none;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:12px;
  3615. color:#555555;
  3616. }
  3617. #u30024 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:1514px;
  3621. top:60px;
  3622. width:55px;
  3623. height:30px;
  3624. display:flex;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:12px;
  3629. color:#555555;
  3630. }
  3631. #u30024 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:5px 15px 5px 15px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u30024_text {
  3639. border-width:0px;
  3640. white-space:nowrap;
  3641. text-transform:none;
  3642. }
  3643. #u30025 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:0px;
  3649. height:0px;
  3650. }
  3651. #u30026_div {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:59px;
  3657. height:30px;
  3658. background:inherit;
  3659. background-color:rgba(41, 143, 255, 1);
  3660. border:none;
  3661. border-radius:4px;
  3662. -moz-box-shadow:none;
  3663. -webkit-box-shadow:none;
  3664. box-shadow:none;
  3665. font-family:'Microsoft YaHei', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:14px;
  3669. color:#FFFFFF;
  3670. }
  3671. #u30026 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:950px;
  3675. top:110px;
  3676. width:59px;
  3677. height:30px;
  3678. display:flex;
  3679. font-family:'Microsoft YaHei', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:14px;
  3683. color:#FFFFFF;
  3684. }
  3685. #u30026 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:5px 15px 5px 15px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u30026_text {
  3693. border-width:0px;
  3694. white-space:nowrap;
  3695. text-transform:none;
  3696. }
  3697. #u30027_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:55px;
  3703. height:30px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 1);
  3706. box-sizing:border-box;
  3707. border-width:1px;
  3708. border-style:solid;
  3709. border-color:rgba(170, 170, 170, 1);
  3710. border-radius:4px;
  3711. -moz-box-shadow:none;
  3712. -webkit-box-shadow:none;
  3713. box-shadow:none;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#555555;
  3719. }
  3720. #u30027 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:1019px;
  3724. top:110px;
  3725. width:55px;
  3726. height:30px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:12px;
  3732. color:#555555;
  3733. }
  3734. #u30027 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:5px 15px 5px 15px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u30027_text {
  3742. border-width:0px;
  3743. white-space:nowrap;
  3744. text-transform:none;
  3745. }
  3746. #u30028 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:0px;
  3752. height:0px;
  3753. }
  3754. #u30029_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:140px;
  3760. height:30px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 1);
  3763. box-sizing:border-box;
  3764. border-width:1px;
  3765. border-style:solid;
  3766. border-color:rgba(201, 201, 201, 1);
  3767. border-radius:4px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'Microsoft YaHei', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:14px;
  3775. color:#CCCCCC;
  3776. text-align:left;
  3777. }
  3778. #u30029 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:650px;
  3782. top:110px;
  3783. width:140px;
  3784. height:30px;
  3785. display:flex;
  3786. font-family:'Microsoft YaHei', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:14px;
  3790. color:#CCCCCC;
  3791. text-align:left;
  3792. }
  3793. #u30029 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 8px 2px 8px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u30029_text {
  3801. border-width:0px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. visibility:hidden;
  3805. }
  3806. #u30030_input {
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:127px;
  3811. height:25px;
  3812. padding:2px 2px 2px 2px;
  3813. font-family:'Microsoft YaHei', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:10px;
  3817. letter-spacing:normal;
  3818. color:#000000;
  3819. vertical-align:none;
  3820. text-align:left;
  3821. text-transform:none;
  3822. background-color:transparent;
  3823. border-color:transparent;
  3824. }
  3825. #u30030_input.disabled {
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:127px;
  3830. height:25px;
  3831. padding:2px 2px 2px 2px;
  3832. font-family:'Microsoft YaHei', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:10px;
  3836. letter-spacing:normal;
  3837. color:#000000;
  3838. vertical-align:none;
  3839. text-align:left;
  3840. text-transform:none;
  3841. background-color:transparent;
  3842. border-color:transparent;
  3843. }
  3844. #u30030_div {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:127px;
  3850. height:25px;
  3851. background:inherit;
  3852. background-color:rgba(255, 255, 255, 1);
  3853. border:none;
  3854. border-radius:0px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-family:'Microsoft YaHei', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:10px;
  3862. }
  3863. #u30030 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:658px;
  3867. top:111px;
  3868. width:127px;
  3869. height:25px;
  3870. display:flex;
  3871. font-family:'Microsoft YaHei', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:10px;
  3875. }
  3876. #u30030 .text {
  3877. position:absolute;
  3878. align-self:center;
  3879. padding:2px 2px 2px 2px;
  3880. box-sizing:border-box;
  3881. width:100%;
  3882. }
  3883. #u30030_div.disabled {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:127px;
  3889. height:25px;
  3890. background:inherit;
  3891. background-color:rgba(240, 240, 240, 1);
  3892. border:none;
  3893. border-radius:0px;
  3894. -moz-box-shadow:none;
  3895. -webkit-box-shadow:none;
  3896. box-shadow:none;
  3897. font-family:'Microsoft YaHei', sans-serif;
  3898. font-weight:400;
  3899. font-style:normal;
  3900. font-size:10px;
  3901. }
  3902. #u30030.disabled {
  3903. }
  3904. #u30031_div {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:1237px;
  3910. height:560px;
  3911. background:inherit;
  3912. background-color:rgba(255, 255, 255, 0);
  3913. border:none;
  3914. border-radius:0px;
  3915. -moz-box-shadow:none;
  3916. -webkit-box-shadow:none;
  3917. box-shadow:none;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:18px;
  3922. color:#D9001B;
  3923. line-height:40px;
  3924. }
  3925. #u30031 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:535px;
  3929. top:-750px;
  3930. width:1237px;
  3931. height:560px;
  3932. display:flex;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:18px;
  3937. color:#D9001B;
  3938. line-height:40px;
  3939. }
  3940. #u30031 .text {
  3941. position:absolute;
  3942. align-self:flex-start;
  3943. padding:0px 0px 0px 0px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u30031_text {
  3948. border-width:0px;
  3949. white-space:nowrap;
  3950. text-transform:none;
  3951. }
  3952. #u30032 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:0px;
  3958. height:0px;
  3959. }
  3960. #u30033_div {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:800px;
  3966. height:1200px;
  3967. background:inherit;
  3968. background-color:rgba(255, 255, 255, 1);
  3969. box-sizing:border-box;
  3970. border-width:1px;
  3971. border-style:solid;
  3972. border-color:rgba(215, 215, 215, 1);
  3973. border-radius:0px;
  3974. -moz-box-shadow:none;
  3975. -webkit-box-shadow:none;
  3976. box-shadow:none;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:14px;
  3981. color:#AAAAAA;
  3982. text-align:center;
  3983. line-height:30px;
  3984. }
  3985. #u30033 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:2479px;
  3989. top:50px;
  3990. width:800px;
  3991. height:1200px;
  3992. display:flex;
  3993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:14px;
  3997. color:#AAAAAA;
  3998. text-align:center;
  3999. line-height:30px;
  4000. }
  4001. #u30033 .text {
  4002. position:absolute;
  4003. align-self:center;
  4004. padding:5px 10px 5px 10px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u30033_text {
  4009. border-width:0px;
  4010. word-wrap:break-word;
  4011. text-transform:none;
  4012. visibility:hidden;
  4013. }
  4014. #u30034_div {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:736px;
  4020. height:60px;
  4021. background:inherit;
  4022. background-color:rgba(242, 242, 242, 1);
  4023. border:none;
  4024. border-radius:4px;
  4025. -moz-box-shadow:none;
  4026. -webkit-box-shadow:none;
  4027. box-shadow:none;
  4028. font-size:11px;
  4029. }
  4030. #u30034 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:2499px;
  4034. top:113px;
  4035. width:736px;
  4036. height:60px;
  4037. display:flex;
  4038. font-size:11px;
  4039. }
  4040. #u30034 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 2px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u30034_text {
  4048. border-width:0px;
  4049. word-wrap:break-word;
  4050. text-transform:none;
  4051. visibility:hidden;
  4052. }
  4053. #u30035_div {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:155px;
  4059. height:35px;
  4060. background:inherit;
  4061. background-color:rgba(255, 255, 255, 0);
  4062. border:none;
  4063. border-top:0px;
  4064. border-right:0px;
  4065. border-bottom:0px;
  4066. border-radius:0px;
  4067. border-top-left-radius:0px;
  4068. border-bottom-left-radius:0px;
  4069. -moz-box-shadow:none;
  4070. -webkit-box-shadow:none;
  4071. box-shadow:none;
  4072. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4073. font-weight:500;
  4074. font-style:normal;
  4075. font-size:18px;
  4076. }
  4077. #u30035 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:2499px;
  4081. top:68px;
  4082. width:155px;
  4083. height:35px;
  4084. display:flex;
  4085. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4086. font-weight:500;
  4087. font-style:normal;
  4088. font-size:18px;
  4089. }
  4090. #u30035 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:5px 10px 5px 0px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u30035_text {
  4098. border-width:0px;
  4099. white-space:nowrap;
  4100. text-transform:none;
  4101. }
  4102. #u30036_div {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:740px;
  4108. height:40px;
  4109. background:inherit;
  4110. background-color:rgba(255, 255, 128, 0.0980392156862745);
  4111. border:none;
  4112. border-radius:6px;
  4113. -moz-box-shadow:none;
  4114. -webkit-box-shadow:none;
  4115. box-shadow:none;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:12px;
  4120. color:#F59A23;
  4121. text-align:left;
  4122. }
  4123. #u30036 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:2499px;
  4127. top:173px;
  4128. width:740px;
  4129. height:40px;
  4130. display:flex;
  4131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:12px;
  4135. color:#F59A23;
  4136. text-align:left;
  4137. }
  4138. #u30036 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 2px 2px 10px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u30036_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. }
  4150. #u30037 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:0px;
  4156. height:0px;
  4157. }
  4158. #u30038 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:0px;
  4164. height:0px;
  4165. }
  4166. #u30039_div {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:552px;
  4172. height:100px;
  4173. background:inherit;
  4174. background-color:rgba(255, 255, 255, 1);
  4175. box-sizing:border-box;
  4176. border-width:1px;
  4177. border-style:solid;
  4178. border-color:rgba(215, 215, 215, 1);
  4179. border-radius:4px;
  4180. -moz-box-shadow:none;
  4181. -webkit-box-shadow:none;
  4182. box-shadow:none;
  4183. font-size:11px;
  4184. }
  4185. #u30039 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:2647px;
  4189. top:449px;
  4190. width:552px;
  4191. height:100px;
  4192. display:flex;
  4193. font-size:11px;
  4194. }
  4195. #u30039 .text {
  4196. position:absolute;
  4197. align-self:center;
  4198. padding:2px 2px 2px 2px;
  4199. box-sizing:border-box;
  4200. width:100%;
  4201. }
  4202. #u30039_text {
  4203. border-width:0px;
  4204. word-wrap:break-word;
  4205. text-transform:none;
  4206. visibility:hidden;
  4207. }
  4208. #u30040_input {
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:515px;
  4213. height:80px;
  4214. padding:2px 2px 2px 2px;
  4215. font-family:'ArialMT', 'Arial', sans-serif;
  4216. font-weight:400;
  4217. font-style:normal;
  4218. font-size:13px;
  4219. letter-spacing:normal;
  4220. color:#000000;
  4221. vertical-align:none;
  4222. text-align:left;
  4223. text-transform:none;
  4224. background-color:transparent;
  4225. border-color:transparent;
  4226. resize:none;
  4227. }
  4228. #u30040_input.disabled {
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:515px;
  4233. height:80px;
  4234. padding:2px 2px 2px 2px;
  4235. font-family:'ArialMT', 'Arial', sans-serif;
  4236. font-weight:400;
  4237. font-style:normal;
  4238. font-size:13px;
  4239. letter-spacing:normal;
  4240. color:#000000;
  4241. vertical-align:none;
  4242. text-align:left;
  4243. text-transform:none;
  4244. background-color:transparent;
  4245. border-color:transparent;
  4246. resize:none;
  4247. }
  4248. #u30040_div {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:515px;
  4254. height:80px;
  4255. background:inherit;
  4256. background-color:rgba(255, 255, 255, 1);
  4257. border:none;
  4258. border-radius:0px;
  4259. -moz-box-shadow:none;
  4260. -webkit-box-shadow:none;
  4261. box-shadow:none;
  4262. }
  4263. #u30040 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:2666px;
  4267. top:459px;
  4268. width:515px;
  4269. height:80px;
  4270. display:flex;
  4271. }
  4272. #u30040 .text {
  4273. position:absolute;
  4274. align-self:flex-start;
  4275. padding:2px 2px 2px 2px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u30040_div.disabled {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:515px;
  4285. height:80px;
  4286. background:inherit;
  4287. background-color:rgba(240, 240, 240, 1);
  4288. border:none;
  4289. border-radius:0px;
  4290. -moz-box-shadow:none;
  4291. -webkit-box-shadow:none;
  4292. box-shadow:none;
  4293. }
  4294. #u30040.disabled {
  4295. }
  4296. #u30041_div {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:56px;
  4302. height:14px;
  4303. background:inherit;
  4304. background-color:rgba(242, 242, 242, 1);
  4305. border:none;
  4306. border-radius:19px;
  4307. -moz-box-shadow:none;
  4308. -webkit-box-shadow:none;
  4309. box-shadow:none;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:10px;
  4314. color:#7F7F7F;
  4315. }
  4316. #u30041 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:3136px;
  4320. top:530px;
  4321. width:56px;
  4322. height:14px;
  4323. display:flex;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:10px;
  4328. color:#7F7F7F;
  4329. }
  4330. #u30041 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:0px 0px 0px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u30041_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. }
  4342. #u30042_div {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:78px;
  4348. height:30px;
  4349. background:inherit;
  4350. background-color:rgba(255, 255, 255, 0);
  4351. border:none;
  4352. border-top:0px;
  4353. border-right:0px;
  4354. border-bottom:0px;
  4355. border-radius:0px;
  4356. border-top-left-radius:0px;
  4357. border-bottom-left-radius:0px;
  4358. -moz-box-shadow:none;
  4359. -webkit-box-shadow:none;
  4360. box-shadow:none;
  4361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4362. font-weight:400;
  4363. font-style:normal;
  4364. font-size:14px;
  4365. color:#7F7F7F;
  4366. text-align:right;
  4367. }
  4368. #u30042 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:2568px;
  4372. top:354px;
  4373. width:78px;
  4374. height:30px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:14px;
  4380. color:#7F7F7F;
  4381. text-align:right;
  4382. }
  4383. #u30042 .text {
  4384. position:absolute;
  4385. align-self:center;
  4386. padding:5px 0px 5px 0px;
  4387. box-sizing:border-box;
  4388. width:100%;
  4389. }
  4390. #u30042_text {
  4391. border-width:0px;
  4392. white-space:nowrap;
  4393. text-transform:none;
  4394. }
  4395. #u30043 {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:0px;
  4401. height:0px;
  4402. }
  4403. #u30044_div {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:553px;
  4409. height:40px;
  4410. background:inherit;
  4411. background-color:rgba(255, 255, 255, 1);
  4412. box-sizing:border-box;
  4413. border-width:1px;
  4414. border-style:solid;
  4415. border-color:rgba(215, 215, 215, 1);
  4416. border-radius:4px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-size:11px;
  4421. }
  4422. #u30044 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:2646px;
  4426. top:349px;
  4427. width:553px;
  4428. height:40px;
  4429. display:flex;
  4430. font-size:11px;
  4431. }
  4432. #u30044 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 2px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u30044_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. visibility:hidden;
  4444. }
  4445. #u30045_input {
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:502px;
  4450. height:25px;
  4451. padding:2px 2px 2px 2px;
  4452. font-family:'ArialMT', 'Arial', sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:13px;
  4456. letter-spacing:normal;
  4457. color:#000000;
  4458. vertical-align:none;
  4459. text-align:left;
  4460. text-transform:none;
  4461. background-color:transparent;
  4462. border-color:transparent;
  4463. }
  4464. #u30045_input.disabled {
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:502px;
  4469. height:25px;
  4470. padding:2px 2px 2px 2px;
  4471. font-family:'ArialMT', 'Arial', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:13px;
  4475. letter-spacing:normal;
  4476. color:#000000;
  4477. vertical-align:none;
  4478. text-align:left;
  4479. text-transform:none;
  4480. background-color:transparent;
  4481. border-color:transparent;
  4482. }
  4483. #u30045_div {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:502px;
  4489. height:25px;
  4490. background:inherit;
  4491. background-color:rgba(255, 255, 255, 1);
  4492. border:none;
  4493. border-radius:0px;
  4494. -moz-box-shadow:none;
  4495. -webkit-box-shadow:none;
  4496. box-shadow:none;
  4497. }
  4498. #u30045 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:2671px;
  4502. top:357px;
  4503. width:502px;
  4504. height:25px;
  4505. display:flex;
  4506. }
  4507. #u30045 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 2px 2px 2px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u30045_div.disabled {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:502px;
  4520. height:25px;
  4521. background:inherit;
  4522. background-color:rgba(240, 240, 240, 1);
  4523. border:none;
  4524. border-radius:0px;
  4525. -moz-box-shadow:none;
  4526. -webkit-box-shadow:none;
  4527. box-shadow:none;
  4528. }
  4529. #u30045.disabled {
  4530. }
  4531. #u30046 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:0px;
  4537. height:0px;
  4538. }
  4539. #u30047_div {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:800px;
  4545. height:50px;
  4546. background:inherit;
  4547. background-color:rgba(255, 255, 255, 1);
  4548. box-sizing:border-box;
  4549. border-width:1px;
  4550. border-style:solid;
  4551. border-color:rgba(215, 215, 215, 1);
  4552. border-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:14px;
  4560. color:#AAAAAA;
  4561. text-align:center;
  4562. line-height:30px;
  4563. }
  4564. #u30047 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:2479px;
  4568. top:1200px;
  4569. width:800px;
  4570. height:50px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:14px;
  4576. color:#AAAAAA;
  4577. text-align:center;
  4578. line-height:30px;
  4579. }
  4580. #u30047 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:5px 10px 5px 10px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u30047_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. visibility:hidden;
  4592. }
  4593. #u30048_div {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:80px;
  4599. height:30px;
  4600. background:inherit;
  4601. background-color:rgba(24, 144, 255, 1);
  4602. border:none;
  4603. border-radius:4px;
  4604. -moz-box-shadow:none;
  4605. -webkit-box-shadow:none;
  4606. box-shadow:none;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:14px;
  4611. color:#FFFFFF;
  4612. }
  4613. #u30048 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:3179px;
  4617. top:1210px;
  4618. width:80px;
  4619. height:30px;
  4620. display:flex;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:14px;
  4625. color:#FFFFFF;
  4626. }
  4627. #u30048 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:2px 2px 2px 2px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u30048_text {
  4635. border-width:0px;
  4636. word-wrap:break-word;
  4637. text-transform:none;
  4638. }
  4639. #u30049_div {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:80px;
  4645. height:30px;
  4646. background:inherit;
  4647. background-color:rgba(255, 255, 255, 1);
  4648. box-sizing:border-box;
  4649. border-width:1px;
  4650. border-style:solid;
  4651. border-color:rgba(170, 170, 170, 1);
  4652. border-radius:4px;
  4653. -moz-box-shadow:none;
  4654. -webkit-box-shadow:none;
  4655. box-shadow:none;
  4656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:14px;
  4660. }
  4661. #u30049 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:3079px;
  4665. top:1210px;
  4666. width:80px;
  4667. height:30px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:14px;
  4673. }
  4674. #u30049 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 2px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u30049_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. }
  4686. #u30050_div {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:71px;
  4692. height:30px;
  4693. background:inherit;
  4694. background-color:rgba(255, 255, 255, 0);
  4695. border:none;
  4696. border-top:0px;
  4697. border-right:0px;
  4698. border-bottom:0px;
  4699. border-radius:0px;
  4700. border-top-left-radius:0px;
  4701. border-bottom-left-radius:0px;
  4702. -moz-box-shadow:none;
  4703. -webkit-box-shadow:none;
  4704. box-shadow:none;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. color:#7F7F7F;
  4710. }
  4711. #u30050 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:2520px;
  4715. top:129px;
  4716. width:71px;
  4717. height:30px;
  4718. display:flex;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:14px;
  4723. color:#7F7F7F;
  4724. }
  4725. #u30050 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:5px 0px 5px 0px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u30050_text {
  4733. border-width:0px;
  4734. white-space:nowrap;
  4735. text-transform:none;
  4736. }
  4737. #u30051_div {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:155px;
  4743. height:30px;
  4744. background:inherit;
  4745. background-color:rgba(255, 255, 255, 0);
  4746. border:none;
  4747. border-top:0px;
  4748. border-right:0px;
  4749. border-bottom:0px;
  4750. border-radius:0px;
  4751. border-top-left-radius:0px;
  4752. border-bottom-left-radius:0px;
  4753. -moz-box-shadow:none;
  4754. -webkit-box-shadow:none;
  4755. box-shadow:none;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. }
  4761. #u30051 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:2599px;
  4765. top:129px;
  4766. width:155px;
  4767. height:30px;
  4768. display:flex;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:14px;
  4773. }
  4774. #u30051 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:5px 0px 5px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u30051_text {
  4782. border-width:0px;
  4783. white-space:nowrap;
  4784. text-transform:none;
  4785. }
  4786. #u30052_div {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:71px;
  4792. height:30px;
  4793. background:inherit;
  4794. background-color:rgba(255, 255, 255, 0);
  4795. border:none;
  4796. border-top:0px;
  4797. border-right:0px;
  4798. border-bottom:0px;
  4799. border-radius:0px;
  4800. border-top-left-radius:0px;
  4801. border-bottom-left-radius:0px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:14px;
  4809. color:#7F7F7F;
  4810. }
  4811. #u30052 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:2923px;
  4815. top:129px;
  4816. width:71px;
  4817. height:30px;
  4818. display:flex;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. color:#7F7F7F;
  4824. }
  4825. #u30052 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:5px 0px 5px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u30052_text {
  4833. border-width:0px;
  4834. white-space:nowrap;
  4835. text-transform:none;
  4836. }
  4837. #u30053_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:57px;
  4843. height:30px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 0);
  4846. border:none;
  4847. border-top:0px;
  4848. border-right:0px;
  4849. border-bottom:0px;
  4850. border-radius:0px;
  4851. border-top-left-radius:0px;
  4852. border-bottom-left-radius:0px;
  4853. -moz-box-shadow:none;
  4854. -webkit-box-shadow:none;
  4855. box-shadow:none;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:14px;
  4860. }
  4861. #u30053 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:3002px;
  4865. top:129px;
  4866. width:57px;
  4867. height:30px;
  4868. display:flex;
  4869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:14px;
  4873. }
  4874. #u30053 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:5px 0px 5px 0px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u30053_text {
  4882. border-width:0px;
  4883. white-space:nowrap;
  4884. text-transform:none;
  4885. }
  4886. #u30054_div {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:78px;
  4892. height:30px;
  4893. background:inherit;
  4894. background-color:rgba(255, 255, 255, 0);
  4895. border:none;
  4896. border-top:0px;
  4897. border-right:0px;
  4898. border-bottom:0px;
  4899. border-radius:0px;
  4900. border-top-left-radius:0px;
  4901. border-bottom-left-radius:0px;
  4902. -moz-box-shadow:none;
  4903. -webkit-box-shadow:none;
  4904. box-shadow:none;
  4905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. font-size:14px;
  4909. color:#7F7F7F;
  4910. }
  4911. #u30054 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:2569px;
  4915. top:404px;
  4916. width:78px;
  4917. height:30px;
  4918. display:flex;
  4919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:14px;
  4923. color:#7F7F7F;
  4924. }
  4925. #u30054 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:5px 0px 5px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u30054_text {
  4933. border-width:0px;
  4934. white-space:nowrap;
  4935. text-transform:none;
  4936. }
  4937. #u30055 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:0px;
  4943. height:0px;
  4944. }
  4945. #u30056_div {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:553px;
  4951. height:40px;
  4952. background:inherit;
  4953. background-color:rgba(255, 255, 255, 1);
  4954. box-sizing:border-box;
  4955. border-width:1px;
  4956. border-style:solid;
  4957. border-color:rgba(215, 215, 215, 1);
  4958. border-radius:4px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. font-size:11px;
  4963. }
  4964. #u30056 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:2647px;
  4968. top:399px;
  4969. width:553px;
  4970. height:40px;
  4971. display:flex;
  4972. font-size:11px;
  4973. }
  4974. #u30056 .text {
  4975. position:absolute;
  4976. align-self:center;
  4977. padding:2px 2px 2px 2px;
  4978. box-sizing:border-box;
  4979. width:100%;
  4980. }
  4981. #u30056_text {
  4982. border-width:0px;
  4983. word-wrap:break-word;
  4984. text-transform:none;
  4985. visibility:hidden;
  4986. }
  4987. #u30057_input {
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:502px;
  4992. height:25px;
  4993. padding:2px 2px 2px 2px;
  4994. font-family:'ArialMT', 'Arial', sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. font-size:13px;
  4998. letter-spacing:normal;
  4999. color:#000000;
  5000. vertical-align:none;
  5001. text-align:left;
  5002. text-transform:none;
  5003. background-color:transparent;
  5004. border-color:transparent;
  5005. }
  5006. #u30057_input.disabled {
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:502px;
  5011. height:25px;
  5012. padding:2px 2px 2px 2px;
  5013. font-family:'ArialMT', 'Arial', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:13px;
  5017. letter-spacing:normal;
  5018. color:#000000;
  5019. vertical-align:none;
  5020. text-align:left;
  5021. text-transform:none;
  5022. background-color:transparent;
  5023. border-color:transparent;
  5024. }
  5025. #u30057_div {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:502px;
  5031. height:25px;
  5032. background:inherit;
  5033. background-color:rgba(255, 255, 255, 1);
  5034. border:none;
  5035. border-radius:0px;
  5036. -moz-box-shadow:none;
  5037. -webkit-box-shadow:none;
  5038. box-shadow:none;
  5039. }
  5040. #u30057 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:2672px;
  5044. top:407px;
  5045. width:502px;
  5046. height:25px;
  5047. display:flex;
  5048. }
  5049. #u30057 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u30057_div.disabled {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:502px;
  5062. height:25px;
  5063. background:inherit;
  5064. background-color:rgba(240, 240, 240, 1);
  5065. border:none;
  5066. border-radius:0px;
  5067. -moz-box-shadow:none;
  5068. -webkit-box-shadow:none;
  5069. box-shadow:none;
  5070. }
  5071. #u30057.disabled {
  5072. }
  5073. #u30058_div {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:71px;
  5079. height:30px;
  5080. background:inherit;
  5081. background-color:rgba(255, 255, 255, 0);
  5082. border:none;
  5083. border-top:0px;
  5084. border-right:0px;
  5085. border-bottom:0px;
  5086. border-radius:0px;
  5087. border-top-left-radius:0px;
  5088. border-bottom-left-radius:0px;
  5089. -moz-box-shadow:none;
  5090. -webkit-box-shadow:none;
  5091. box-shadow:none;
  5092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:14px;
  5096. color:#7F7F7F;
  5097. }
  5098. #u30058 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:2576px;
  5102. top:449px;
  5103. width:71px;
  5104. height:30px;
  5105. display:flex;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:14px;
  5110. color:#7F7F7F;
  5111. }
  5112. #u30058 .text {
  5113. position:absolute;
  5114. align-self:center;
  5115. padding:5px 0px 5px 0px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u30058_text {
  5120. border-width:0px;
  5121. white-space:nowrap;
  5122. text-transform:none;
  5123. }
  5124. #u30059_div {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:40px;
  5130. height:40px;
  5131. background:inherit;
  5132. background-color:rgba(255, 255, 255, 0);
  5133. border:none;
  5134. border-top:0px;
  5135. border-right:0px;
  5136. border-bottom:0px;
  5137. border-radius:0px;
  5138. border-top-left-radius:0px;
  5139. border-bottom-left-radius:0px;
  5140. -moz-box-shadow:none;
  5141. -webkit-box-shadow:none;
  5142. box-shadow:none;
  5143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5144. font-weight:500;
  5145. font-style:normal;
  5146. font-size:18px;
  5147. text-align:center;
  5148. }
  5149. #u30059 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:3239px;
  5153. top:50px;
  5154. width:40px;
  5155. height:40px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5158. font-weight:500;
  5159. font-style:normal;
  5160. font-size:18px;
  5161. text-align:center;
  5162. }
  5163. #u30059 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:5px 10px 5px 0px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u30059_text {
  5171. border-width:0px;
  5172. word-wrap:break-word;
  5173. text-transform:none;
  5174. }
  5175. #u30060_div {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:106px;
  5181. height:30px;
  5182. background:inherit;
  5183. background-color:rgba(255, 255, 255, 0);
  5184. border:none;
  5185. border-top:0px;
  5186. border-right:0px;
  5187. border-bottom:0px;
  5188. border-radius:0px;
  5189. border-top-left-radius:0px;
  5190. border-bottom-left-radius:0px;
  5191. -moz-box-shadow:none;
  5192. -webkit-box-shadow:none;
  5193. box-shadow:none;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:14px;
  5198. color:#7F7F7F;
  5199. }
  5200. #u30060 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:2540px;
  5204. top:304px;
  5205. width:106px;
  5206. height:30px;
  5207. display:flex;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:14px;
  5212. color:#7F7F7F;
  5213. }
  5214. #u30060 .text {
  5215. position:absolute;
  5216. align-self:center;
  5217. padding:5px 0px 5px 0px;
  5218. box-sizing:border-box;
  5219. width:100%;
  5220. }
  5221. #u30060_text {
  5222. border-width:0px;
  5223. white-space:nowrap;
  5224. text-transform:none;
  5225. }
  5226. #u30061_div {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:78px;
  5232. height:30px;
  5233. background:inherit;
  5234. background-color:rgba(255, 255, 255, 0);
  5235. border:none;
  5236. border-top:0px;
  5237. border-right:0px;
  5238. border-bottom:0px;
  5239. border-radius:0px;
  5240. border-top-left-radius:0px;
  5241. border-bottom-left-radius:0px;
  5242. -moz-box-shadow:none;
  5243. -webkit-box-shadow:none;
  5244. box-shadow:none;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. color:#7F7F7F;
  5250. }
  5251. #u30061 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:2560px;
  5255. top:618px;
  5256. width:78px;
  5257. height:30px;
  5258. display:flex;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. color:#7F7F7F;
  5264. }
  5265. #u30061 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:5px 0px 5px 0px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u30061_text {
  5273. border-width:0px;
  5274. white-space:nowrap;
  5275. text-transform:none;
  5276. }
  5277. #u30062 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:0px;
  5283. height:0px;
  5284. }
  5285. #u30063_div {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:553px;
  5291. height:40px;
  5292. background:inherit;
  5293. background-color:rgba(255, 255, 255, 1);
  5294. box-sizing:border-box;
  5295. border-width:1px;
  5296. border-style:solid;
  5297. border-color:rgba(215, 215, 215, 1);
  5298. border-radius:4px;
  5299. -moz-box-shadow:none;
  5300. -webkit-box-shadow:none;
  5301. box-shadow:none;
  5302. font-size:11px;
  5303. }
  5304. #u30063 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:2646px;
  5308. top:613px;
  5309. width:553px;
  5310. height:40px;
  5311. display:flex;
  5312. font-size:11px;
  5313. }
  5314. #u30063 .text {
  5315. position:absolute;
  5316. align-self:center;
  5317. padding:2px 2px 2px 2px;
  5318. box-sizing:border-box;
  5319. width:100%;
  5320. }
  5321. #u30063_text {
  5322. border-width:0px;
  5323. word-wrap:break-word;
  5324. text-transform:none;
  5325. visibility:hidden;
  5326. }
  5327. #u30064_input {
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:534px;
  5332. height:31px;
  5333. padding:2px 2px 2px 2px;
  5334. font-family:'ArialMT', 'Arial', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:11px;
  5338. letter-spacing:normal;
  5339. color:#AAAAAA;
  5340. vertical-align:none;
  5341. text-align:left;
  5342. text-transform:none;
  5343. background-color:transparent;
  5344. border-color:transparent;
  5345. }
  5346. #u30064_input.disabled {
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:534px;
  5351. height:31px;
  5352. padding:2px 2px 2px 2px;
  5353. font-family:'ArialMT', 'Arial', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:11px;
  5357. letter-spacing:normal;
  5358. color:#AAAAAA;
  5359. vertical-align:none;
  5360. text-align:left;
  5361. text-transform:none;
  5362. background-color:transparent;
  5363. border-color:transparent;
  5364. }
  5365. #u30064_div {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:534px;
  5371. height:31px;
  5372. background:inherit;
  5373. background-color:rgba(255, 255, 255, 1);
  5374. border:none;
  5375. border-radius:0px;
  5376. -moz-box-shadow:none;
  5377. -webkit-box-shadow:none;
  5378. box-shadow:none;
  5379. font-size:11px;
  5380. color:#AAAAAA;
  5381. }
  5382. #u30064 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:2658px;
  5386. top:617px;
  5387. width:534px;
  5388. height:31px;
  5389. display:flex;
  5390. font-size:11px;
  5391. color:#AAAAAA;
  5392. }
  5393. #u30064 .text {
  5394. position:absolute;
  5395. align-self:flex-start;
  5396. padding:2px 2px 2px 2px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u30064_div.disabled {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:534px;
  5406. height:31px;
  5407. background:inherit;
  5408. background-color:rgba(240, 240, 240, 1);
  5409. border:none;
  5410. border-radius:0px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-size:11px;
  5415. color:#AAAAAA;
  5416. }
  5417. #u30064.disabled {
  5418. }
  5419. .u30064_input_option {
  5420. font-size:11px;
  5421. }
  5422. #u30065_div {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:85px;
  5428. height:30px;
  5429. background:inherit;
  5430. background-color:rgba(255, 255, 255, 0);
  5431. border:none;
  5432. border-top:0px;
  5433. border-right:0px;
  5434. border-bottom:0px;
  5435. border-radius:0px;
  5436. border-top-left-radius:0px;
  5437. border-bottom-left-radius:0px;
  5438. -moz-box-shadow:none;
  5439. -webkit-box-shadow:none;
  5440. box-shadow:none;
  5441. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5442. font-weight:500;
  5443. font-style:normal;
  5444. font-size:14px;
  5445. }
  5446. #u30065 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:2526px;
  5450. top:569px;
  5451. width:85px;
  5452. height:30px;
  5453. display:flex;
  5454. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5455. font-weight:500;
  5456. font-style:normal;
  5457. font-size:14px;
  5458. }
  5459. #u30065 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:5px 0px 5px 0px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u30065_text {
  5467. border-width:0px;
  5468. white-space:nowrap;
  5469. text-transform:none;
  5470. }
  5471. #u30066_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:78px;
  5477. height:30px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 0);
  5480. border:none;
  5481. border-top:0px;
  5482. border-right:0px;
  5483. border-bottom:0px;
  5484. border-radius:0px;
  5485. border-top-left-radius:0px;
  5486. border-bottom-left-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:14px;
  5494. color:#7F7F7F;
  5495. }
  5496. #u30066 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:2560px;
  5500. top:668px;
  5501. width:78px;
  5502. height:30px;
  5503. display:flex;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:14px;
  5508. color:#7F7F7F;
  5509. }
  5510. #u30066 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:5px 0px 5px 0px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u30066_text {
  5518. border-width:0px;
  5519. white-space:nowrap;
  5520. text-transform:none;
  5521. }
  5522. #u30067 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:0px;
  5528. height:0px;
  5529. }
  5530. #u30068_div {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:553px;
  5536. height:40px;
  5537. background:inherit;
  5538. background-color:rgba(255, 255, 255, 1);
  5539. box-sizing:border-box;
  5540. border-width:1px;
  5541. border-style:solid;
  5542. border-color:rgba(215, 215, 215, 1);
  5543. border-radius:4px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-size:11px;
  5548. }
  5549. #u30068 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:2646px;
  5553. top:663px;
  5554. width:553px;
  5555. height:40px;
  5556. display:flex;
  5557. font-size:11px;
  5558. }
  5559. #u30068 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:2px 2px 2px 2px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u30068_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. visibility:hidden;
  5571. }
  5572. #u30069_input {
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:534px;
  5577. height:31px;
  5578. padding:2px 2px 2px 2px;
  5579. font-family:'ArialMT', 'Arial', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:11px;
  5583. letter-spacing:normal;
  5584. color:#AAAAAA;
  5585. vertical-align:none;
  5586. text-align:left;
  5587. text-transform:none;
  5588. background-color:transparent;
  5589. border-color:transparent;
  5590. }
  5591. #u30069_input.disabled {
  5592. position:absolute;
  5593. left:0px;
  5594. top:0px;
  5595. width:534px;
  5596. height:31px;
  5597. padding:2px 2px 2px 2px;
  5598. font-family:'ArialMT', 'Arial', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. font-size:11px;
  5602. letter-spacing:normal;
  5603. color:#AAAAAA;
  5604. vertical-align:none;
  5605. text-align:left;
  5606. text-transform:none;
  5607. background-color:transparent;
  5608. border-color:transparent;
  5609. }
  5610. #u30069_div {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:534px;
  5616. height:31px;
  5617. background:inherit;
  5618. background-color:rgba(255, 255, 255, 1);
  5619. border:none;
  5620. border-radius:0px;
  5621. -moz-box-shadow:none;
  5622. -webkit-box-shadow:none;
  5623. box-shadow:none;
  5624. font-size:11px;
  5625. color:#AAAAAA;
  5626. }
  5627. #u30069 {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:2658px;
  5631. top:667px;
  5632. width:534px;
  5633. height:31px;
  5634. display:flex;
  5635. font-size:11px;
  5636. color:#AAAAAA;
  5637. }
  5638. #u30069 .text {
  5639. position:absolute;
  5640. align-self:flex-start;
  5641. padding:2px 2px 2px 2px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u30069_div.disabled {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:534px;
  5651. height:31px;
  5652. background:inherit;
  5653. background-color:rgba(240, 240, 240, 1);
  5654. border:none;
  5655. border-radius:0px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. font-size:11px;
  5660. color:#AAAAAA;
  5661. }
  5662. #u30069.disabled {
  5663. }
  5664. .u30069_input_option {
  5665. font-size:11px;
  5666. }
  5667. #u30070 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:0px;
  5673. height:0px;
  5674. }
  5675. #u30071_div {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:553px;
  5681. height:40px;
  5682. background:inherit;
  5683. background-color:rgba(255, 255, 255, 1);
  5684. box-sizing:border-box;
  5685. border-width:1px;
  5686. border-style:solid;
  5687. border-color:rgba(215, 215, 215, 1);
  5688. border-radius:4px;
  5689. -moz-box-shadow:none;
  5690. -webkit-box-shadow:none;
  5691. box-shadow:none;
  5692. font-size:11px;
  5693. }
  5694. #u30071 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:2646px;
  5698. top:299px;
  5699. width:553px;
  5700. height:40px;
  5701. display:flex;
  5702. font-size:11px;
  5703. }
  5704. #u30071 .text {
  5705. position:absolute;
  5706. align-self:center;
  5707. padding:2px 2px 2px 2px;
  5708. box-sizing:border-box;
  5709. width:100%;
  5710. }
  5711. #u30071_text {
  5712. border-width:0px;
  5713. word-wrap:break-word;
  5714. text-transform:none;
  5715. visibility:hidden;
  5716. }
  5717. #u30072_input {
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:534px;
  5722. height:31px;
  5723. padding:2px 2px 2px 2px;
  5724. font-family:'ArialMT', 'Arial', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:11px;
  5728. letter-spacing:normal;
  5729. color:#AAAAAA;
  5730. vertical-align:none;
  5731. text-align:left;
  5732. text-transform:none;
  5733. background-color:transparent;
  5734. border-color:transparent;
  5735. }
  5736. #u30072_input.disabled {
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:534px;
  5741. height:31px;
  5742. padding:2px 2px 2px 2px;
  5743. font-family:'ArialMT', 'Arial', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:11px;
  5747. letter-spacing:normal;
  5748. color:#AAAAAA;
  5749. vertical-align:none;
  5750. text-align:left;
  5751. text-transform:none;
  5752. background-color:transparent;
  5753. border-color:transparent;
  5754. }
  5755. #u30072_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:534px;
  5761. height:31px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 1);
  5764. border:none;
  5765. border-radius:0px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-size:11px;
  5770. color:#AAAAAA;
  5771. }
  5772. #u30072 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:2658px;
  5776. top:303px;
  5777. width:534px;
  5778. height:31px;
  5779. display:flex;
  5780. font-size:11px;
  5781. color:#AAAAAA;
  5782. }
  5783. #u30072 .text {
  5784. position:absolute;
  5785. align-self:flex-start;
  5786. padding:2px 2px 2px 2px;
  5787. box-sizing:border-box;
  5788. width:100%;
  5789. }
  5790. #u30072_div.disabled {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:534px;
  5796. height:31px;
  5797. background:inherit;
  5798. background-color:rgba(240, 240, 240, 1);
  5799. border:none;
  5800. border-radius:0px;
  5801. -moz-box-shadow:none;
  5802. -webkit-box-shadow:none;
  5803. box-shadow:none;
  5804. font-size:11px;
  5805. color:#AAAAAA;
  5806. }
  5807. #u30072.disabled {
  5808. }
  5809. .u30072_input_option {
  5810. font-size:11px;
  5811. }
  5812. #u30073_div {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:106px;
  5818. height:30px;
  5819. background:inherit;
  5820. background-color:rgba(255, 255, 255, 0);
  5821. border:none;
  5822. border-top:0px;
  5823. border-right:0px;
  5824. border-bottom:0px;
  5825. border-radius:0px;
  5826. border-top-left-radius:0px;
  5827. border-bottom-left-radius:0px;
  5828. -moz-box-shadow:none;
  5829. -webkit-box-shadow:none;
  5830. box-shadow:none;
  5831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:14px;
  5835. color:#7F7F7F;
  5836. }
  5837. #u30073 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:2540px;
  5841. top:249px;
  5842. width:106px;
  5843. height:30px;
  5844. display:flex;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. font-size:14px;
  5849. color:#7F7F7F;
  5850. }
  5851. #u30073 .text {
  5852. position:absolute;
  5853. align-self:center;
  5854. padding:5px 0px 5px 0px;
  5855. box-sizing:border-box;
  5856. width:100%;
  5857. }
  5858. #u30073_text {
  5859. border-width:0px;
  5860. white-space:nowrap;
  5861. text-transform:none;
  5862. }
  5863. #u30074 label {
  5864. left:0px;
  5865. width:100%;
  5866. }
  5867. #u30074_img {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:4px;
  5872. width:12px;
  5873. height:12px;
  5874. }
  5875. #u30074 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:2647px;
  5879. top:254px;
  5880. width:140px;
  5881. height:20px;
  5882. display:flex;
  5883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:14px;
  5887. }
  5888. #u30074 .text {
  5889. position:absolute;
  5890. align-self:center;
  5891. padding:0px 2px 0px 2px;
  5892. box-sizing:border-box;
  5893. }
  5894. #u30074_img.selected {
  5895. }
  5896. #u30074.selected {
  5897. }
  5898. #u30074_img.disabled {
  5899. }
  5900. #u30074.disabled {
  5901. }
  5902. #u30074_img.selectedDisabled {
  5903. }
  5904. #u30074.selectedDisabled {
  5905. }
  5906. #u30074_text {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:14px;
  5910. top:0px;
  5911. width:124px;
  5912. word-wrap:break-word;
  5913. text-transform:none;
  5914. }
  5915. #u30074_input {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:0px;
  5919. top:0px;
  5920. width:0px;
  5921. height:0px;
  5922. opacity:0;
  5923. }
  5924. #u30075 label {
  5925. left:0px;
  5926. width:100%;
  5927. }
  5928. #u30075_img {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:4px;
  5933. width:12px;
  5934. height:12px;
  5935. }
  5936. #u30075 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:2807px;
  5940. top:254px;
  5941. width:140px;
  5942. height:20px;
  5943. display:flex;
  5944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:14px;
  5948. }
  5949. #u30075 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:0px 2px 0px 2px;
  5953. box-sizing:border-box;
  5954. }
  5955. #u30075_img.selected {
  5956. }
  5957. #u30075.selected {
  5958. }
  5959. #u30075_img.disabled {
  5960. }
  5961. #u30075.disabled {
  5962. }
  5963. #u30075_img.selectedDisabled {
  5964. }
  5965. #u30075.selectedDisabled {
  5966. }
  5967. #u30075_text {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:14px;
  5971. top:0px;
  5972. width:124px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. }
  5976. #u30075_input {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:0px;
  5982. height:0px;
  5983. opacity:0;
  5984. }
  5985. #u30076_div {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:416px;
  5991. height:30px;
  5992. background:inherit;
  5993. background-color:rgba(255, 255, 255, 0);
  5994. border:none;
  5995. border-top:0px;
  5996. border-right:0px;
  5997. border-bottom:0px;
  5998. border-radius:0px;
  5999. border-top-left-radius:0px;
  6000. border-bottom-left-radius:0px;
  6001. -moz-box-shadow:none;
  6002. -webkit-box-shadow:none;
  6003. box-shadow:none;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:14px;
  6008. color:#D9001B;
  6009. }
  6010. #u30076 {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:2646px;
  6014. top:580px;
  6015. width:416px;
  6016. height:30px;
  6017. display:flex;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:14px;
  6022. color:#D9001B;
  6023. }
  6024. #u30076 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:5px 0px 5px 0px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u30076_text {
  6032. border-width:0px;
  6033. white-space:nowrap;
  6034. text-transform:none;
  6035. }
  6036. #u30077 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:0px;
  6042. height:0px;
  6043. }
  6044. #u30078_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:140px;
  6050. height:30px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 1);
  6053. box-sizing:border-box;
  6054. border-width:1px;
  6055. border-style:solid;
  6056. border-color:rgba(201, 201, 201, 1);
  6057. border-radius:4px;
  6058. -moz-box-shadow:none;
  6059. -webkit-box-shadow:none;
  6060. box-shadow:none;
  6061. font-family:'Microsoft YaHei', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:14px;
  6065. color:#CCCCCC;
  6066. text-align:left;
  6067. }
  6068. #u30078 {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:800px;
  6072. top:110px;
  6073. width:140px;
  6074. height:30px;
  6075. display:flex;
  6076. font-family:'Microsoft YaHei', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:14px;
  6080. color:#CCCCCC;
  6081. text-align:left;
  6082. }
  6083. #u30078 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:2px 8px 2px 8px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u30078_text {
  6091. border-width:0px;
  6092. word-wrap:break-word;
  6093. text-transform:none;
  6094. visibility:hidden;
  6095. }
  6096. #u30079_input {
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:127px;
  6101. height:25px;
  6102. padding:2px 2px 2px 2px;
  6103. font-family:'Microsoft YaHei', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:10px;
  6107. letter-spacing:normal;
  6108. color:#000000;
  6109. vertical-align:none;
  6110. text-align:left;
  6111. text-transform:none;
  6112. background-color:transparent;
  6113. border-color:transparent;
  6114. }
  6115. #u30079_input.disabled {
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:127px;
  6120. height:25px;
  6121. padding:2px 2px 2px 2px;
  6122. font-family:'Microsoft YaHei', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:10px;
  6126. letter-spacing:normal;
  6127. color:#000000;
  6128. vertical-align:none;
  6129. text-align:left;
  6130. text-transform:none;
  6131. background-color:transparent;
  6132. border-color:transparent;
  6133. }
  6134. #u30079_div {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:127px;
  6140. height:25px;
  6141. background:inherit;
  6142. background-color:rgba(255, 255, 255, 1);
  6143. border:none;
  6144. border-radius:0px;
  6145. -moz-box-shadow:none;
  6146. -webkit-box-shadow:none;
  6147. box-shadow:none;
  6148. font-family:'Microsoft YaHei', sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. font-size:10px;
  6152. }
  6153. #u30079 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:808px;
  6157. top:111px;
  6158. width:127px;
  6159. height:25px;
  6160. display:flex;
  6161. font-family:'Microsoft YaHei', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:10px;
  6165. }
  6166. #u30079 .text {
  6167. position:absolute;
  6168. align-self:center;
  6169. padding:2px 2px 2px 2px;
  6170. box-sizing:border-box;
  6171. width:100%;
  6172. }
  6173. #u30079_div.disabled {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:127px;
  6179. height:25px;
  6180. background:inherit;
  6181. background-color:rgba(240, 240, 240, 1);
  6182. border:none;
  6183. border-radius:0px;
  6184. -moz-box-shadow:none;
  6185. -webkit-box-shadow:none;
  6186. box-shadow:none;
  6187. font-family:'Microsoft YaHei', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:10px;
  6191. }
  6192. #u30079.disabled {
  6193. }
  6194. #u30080 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:0px;
  6200. height:0px;
  6201. }
  6202. #u30081_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:140px;
  6208. height:30px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. box-sizing:border-box;
  6212. border-width:1px;
  6213. border-style:solid;
  6214. border-color:rgba(215, 215, 215, 1);
  6215. border-radius:4px;
  6216. -moz-box-shadow:none;
  6217. -webkit-box-shadow:none;
  6218. box-shadow:none;
  6219. font-size:11px;
  6220. }
  6221. #u30081 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:350px;
  6225. top:110px;
  6226. width:140px;
  6227. height:30px;
  6228. display:flex;
  6229. font-size:11px;
  6230. }
  6231. #u30081 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:2px 2px 2px 2px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u30081_text {
  6239. border-width:0px;
  6240. word-wrap:break-word;
  6241. text-transform:none;
  6242. visibility:hidden;
  6243. }
  6244. #u30082_input {
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:125px;
  6249. height:23px;
  6250. padding:2px 2px 2px 2px;
  6251. font-family:'ArialMT', 'Arial', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:11px;
  6255. letter-spacing:normal;
  6256. color:#AAAAAA;
  6257. vertical-align:none;
  6258. text-align:left;
  6259. text-transform:none;
  6260. background-color:transparent;
  6261. border-color:transparent;
  6262. }
  6263. #u30082_input.disabled {
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:125px;
  6268. height:23px;
  6269. padding:2px 2px 2px 2px;
  6270. font-family:'ArialMT', 'Arial', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:11px;
  6274. letter-spacing:normal;
  6275. color:#AAAAAA;
  6276. vertical-align:none;
  6277. text-align:left;
  6278. text-transform:none;
  6279. background-color:transparent;
  6280. border-color:transparent;
  6281. }
  6282. #u30082_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:125px;
  6288. height:23px;
  6289. background:inherit;
  6290. background-color:rgba(255, 255, 255, 1);
  6291. border:none;
  6292. border-radius:0px;
  6293. -moz-box-shadow:none;
  6294. -webkit-box-shadow:none;
  6295. box-shadow:none;
  6296. font-size:11px;
  6297. color:#AAAAAA;
  6298. }
  6299. #u30082 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:356px;
  6303. top:112px;
  6304. width:125px;
  6305. height:23px;
  6306. display:flex;
  6307. font-size:11px;
  6308. color:#AAAAAA;
  6309. }
  6310. #u30082 .text {
  6311. position:absolute;
  6312. align-self:flex-start;
  6313. padding:2px 2px 2px 2px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u30082_div.disabled {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:125px;
  6323. height:23px;
  6324. background:inherit;
  6325. background-color:rgba(240, 240, 240, 1);
  6326. border:none;
  6327. border-radius:0px;
  6328. -moz-box-shadow:none;
  6329. -webkit-box-shadow:none;
  6330. box-shadow:none;
  6331. font-size:11px;
  6332. color:#AAAAAA;
  6333. }
  6334. #u30082.disabled {
  6335. }
  6336. .u30082_input_option {
  6337. font-size:11px;
  6338. }
  6339. #u30083 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:0px;
  6345. height:0px;
  6346. }
  6347. #u30084_div {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:140px;
  6353. height:30px;
  6354. background:inherit;
  6355. background-color:rgba(255, 255, 255, 1);
  6356. box-sizing:border-box;
  6357. border-width:1px;
  6358. border-style:solid;
  6359. border-color:rgba(215, 215, 215, 1);
  6360. border-radius:4px;
  6361. -moz-box-shadow:none;
  6362. -webkit-box-shadow:none;
  6363. box-shadow:none;
  6364. font-size:11px;
  6365. }
  6366. #u30084 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:500px;
  6370. top:110px;
  6371. width:140px;
  6372. height:30px;
  6373. display:flex;
  6374. font-size:11px;
  6375. }
  6376. #u30084 .text {
  6377. position:absolute;
  6378. align-self:center;
  6379. padding:2px 2px 2px 2px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u30084_text {
  6384. border-width:0px;
  6385. word-wrap:break-word;
  6386. text-transform:none;
  6387. visibility:hidden;
  6388. }
  6389. #u30085_input {
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:125px;
  6394. height:23px;
  6395. padding:2px 2px 2px 2px;
  6396. font-family:'ArialMT', 'Arial', sans-serif;
  6397. font-weight:400;
  6398. font-style:normal;
  6399. font-size:11px;
  6400. letter-spacing:normal;
  6401. color:#AAAAAA;
  6402. vertical-align:none;
  6403. text-align:left;
  6404. text-transform:none;
  6405. background-color:transparent;
  6406. border-color:transparent;
  6407. }
  6408. #u30085_input.disabled {
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:125px;
  6413. height:23px;
  6414. padding:2px 2px 2px 2px;
  6415. font-family:'ArialMT', 'Arial', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:11px;
  6419. letter-spacing:normal;
  6420. color:#AAAAAA;
  6421. vertical-align:none;
  6422. text-align:left;
  6423. text-transform:none;
  6424. background-color:transparent;
  6425. border-color:transparent;
  6426. }
  6427. #u30085_div {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:125px;
  6433. height:23px;
  6434. background:inherit;
  6435. background-color:rgba(255, 255, 255, 1);
  6436. border:none;
  6437. border-radius:0px;
  6438. -moz-box-shadow:none;
  6439. -webkit-box-shadow:none;
  6440. box-shadow:none;
  6441. font-size:11px;
  6442. color:#AAAAAA;
  6443. }
  6444. #u30085 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:506px;
  6448. top:112px;
  6449. width:125px;
  6450. height:23px;
  6451. display:flex;
  6452. font-size:11px;
  6453. color:#AAAAAA;
  6454. }
  6455. #u30085 .text {
  6456. position:absolute;
  6457. align-self:flex-start;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u30085_div.disabled {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:125px;
  6468. height:23px;
  6469. background:inherit;
  6470. background-color:rgba(240, 240, 240, 1);
  6471. border:none;
  6472. border-radius:0px;
  6473. -moz-box-shadow:none;
  6474. -webkit-box-shadow:none;
  6475. box-shadow:none;
  6476. font-size:11px;
  6477. color:#AAAAAA;
  6478. }
  6479. #u30085.disabled {
  6480. }
  6481. .u30085_input_option {
  6482. font-size:11px;
  6483. }
  6484. #u30086 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:0px;
  6490. height:0px;
  6491. }
  6492. #u30087_div {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:200px;
  6498. height:1180px;
  6499. background:inherit;
  6500. background-color:rgba(255, 255, 255, 1);
  6501. border:none;
  6502. border-radius:0px;
  6503. -moz-box-shadow:none;
  6504. -webkit-box-shadow:none;
  6505. box-shadow:none;
  6506. }
  6507. #u30087 {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:120px;
  6511. top:50px;
  6512. width:200px;
  6513. height:1180px;
  6514. display:flex;
  6515. }
  6516. #u30087 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 2px 2px 2px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u30087_text {
  6524. border-width:0px;
  6525. word-wrap:break-word;
  6526. text-transform:none;
  6527. visibility:hidden;
  6528. }
  6529. #u30088_div {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:200px;
  6535. height:60px;
  6536. background:inherit;
  6537. background-color:rgba(224, 231, 247, 1);
  6538. border:none;
  6539. border-radius:0px;
  6540. -moz-box-shadow:none;
  6541. -webkit-box-shadow:none;
  6542. box-shadow:none;
  6543. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6544. font-weight:500;
  6545. font-style:normal;
  6546. font-size:18px;
  6547. }
  6548. #u30088 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:120px;
  6552. top:50px;
  6553. width:200px;
  6554. height:60px;
  6555. display:flex;
  6556. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6557. font-weight:500;
  6558. font-style:normal;
  6559. font-size:18px;
  6560. }
  6561. #u30088 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:0px 0px 0px 20px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u30088_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. }
  6573. #u30089_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:97px;
  6579. height:22px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 0);
  6582. border:none;
  6583. border-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:16px;
  6591. }
  6592. #u30089 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:146px;
  6596. top:167px;
  6597. width:97px;
  6598. height:22px;
  6599. display:flex;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:16px;
  6604. }
  6605. #u30089 .text {
  6606. position:absolute;
  6607. align-self:flex-start;
  6608. padding:0px 0px 0px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u30089_text {
  6613. border-width:0px;
  6614. white-space:nowrap;
  6615. text-transform:none;
  6616. }
  6617. #u30090_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:97px;
  6623. height:22px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border:none;
  6627. border-radius:0px;
  6628. -moz-box-shadow:none;
  6629. -webkit-box-shadow:none;
  6630. box-shadow:none;
  6631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6632. font-weight:400;
  6633. font-style:normal;
  6634. font-size:16px;
  6635. }
  6636. #u30090 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:146px;
  6640. top:209px;
  6641. width:97px;
  6642. height:22px;
  6643. display:flex;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:16px;
  6648. }
  6649. #u30090 .text {
  6650. position:absolute;
  6651. align-self:flex-start;
  6652. padding:0px 0px 0px 0px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u30090_text {
  6657. border-width:0px;
  6658. white-space:nowrap;
  6659. text-transform:none;
  6660. }
  6661. #u30091_div {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:73px;
  6667. height:17px;
  6668. background:inherit;
  6669. background-color:rgba(255, 255, 255, 0);
  6670. border:none;
  6671. border-radius:0px;
  6672. -moz-box-shadow:none;
  6673. -webkit-box-shadow:none;
  6674. box-shadow:none;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:12px;
  6679. color:#AAAAAA;
  6680. }
  6681. #u30091 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:146px;
  6685. top:130px;
  6686. width:73px;
  6687. height:17px;
  6688. display:flex;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:12px;
  6693. color:#AAAAAA;
  6694. }
  6695. #u30091 .text {
  6696. position:absolute;
  6697. align-self:flex-start;
  6698. padding:0px 0px 0px 0px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u30091_text {
  6703. border-width:0px;
  6704. white-space:nowrap;
  6705. text-transform:none;
  6706. }
  6707. #u30092_div {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:73px;
  6713. height:17px;
  6714. background:inherit;
  6715. background-color:rgba(255, 255, 255, 0);
  6716. border:none;
  6717. border-radius:0px;
  6718. -moz-box-shadow:none;
  6719. -webkit-box-shadow:none;
  6720. box-shadow:none;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:12px;
  6725. color:#AAAAAA;
  6726. }
  6727. #u30092 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:146px;
  6731. top:397px;
  6732. width:73px;
  6733. height:17px;
  6734. display:flex;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:12px;
  6739. color:#AAAAAA;
  6740. }
  6741. #u30092 .text {
  6742. position:absolute;
  6743. align-self:flex-start;
  6744. padding:0px 0px 0px 0px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u30092_text {
  6749. border-width:0px;
  6750. white-space:nowrap;
  6751. text-transform:none;
  6752. }
  6753. #u30093_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:201px;
  6759. height:2px;
  6760. }
  6761. #u30093 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:120px;
  6765. top:375px;
  6766. width:200px;
  6767. height:1px;
  6768. display:flex;
  6769. }
  6770. #u30093 .text {
  6771. position:absolute;
  6772. align-self:center;
  6773. padding:2px 2px 2px 2px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u30093_text {
  6778. border-width:0px;
  6779. word-wrap:break-word;
  6780. text-transform:none;
  6781. visibility:hidden;
  6782. }
  6783. #u30094_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:97px;
  6789. height:22px;
  6790. background:inherit;
  6791. background-color:rgba(255, 255, 255, 0);
  6792. border:none;
  6793. border-radius:0px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:16px;
  6801. }
  6802. #u30094 {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:146px;
  6806. top:435px;
  6807. width:97px;
  6808. height:22px;
  6809. display:flex;
  6810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6811. font-weight:400;
  6812. font-style:normal;
  6813. font-size:16px;
  6814. }
  6815. #u30094 .text {
  6816. position:absolute;
  6817. align-self:flex-start;
  6818. padding:0px 0px 0px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u30094_text {
  6823. border-width:0px;
  6824. white-space:nowrap;
  6825. text-transform:none;
  6826. }
  6827. #u30095_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:97px;
  6833. height:22px;
  6834. background:inherit;
  6835. background-color:rgba(255, 255, 255, 0);
  6836. border:none;
  6837. border-radius:0px;
  6838. -moz-box-shadow:none;
  6839. -webkit-box-shadow:none;
  6840. box-shadow:none;
  6841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:16px;
  6845. }
  6846. #u30095 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:146px;
  6850. top:477px;
  6851. width:97px;
  6852. height:22px;
  6853. display:flex;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:16px;
  6858. }
  6859. #u30095 .text {
  6860. position:absolute;
  6861. align-self:flex-start;
  6862. padding:0px 0px 0px 0px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u30095_text {
  6867. border-width:0px;
  6868. white-space:nowrap;
  6869. text-transform:none;
  6870. }
  6871. #u30096_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:97px;
  6877. height:22px;
  6878. background:inherit;
  6879. background-color:rgba(255, 255, 255, 0);
  6880. border:none;
  6881. border-radius:0px;
  6882. -moz-box-shadow:none;
  6883. -webkit-box-shadow:none;
  6884. box-shadow:none;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:16px;
  6889. }
  6890. #u30096 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:146px;
  6894. top:251px;
  6895. width:97px;
  6896. height:22px;
  6897. display:flex;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:16px;
  6902. }
  6903. #u30096 .text {
  6904. position:absolute;
  6905. align-self:flex-start;
  6906. padding:0px 0px 0px 0px;
  6907. box-sizing:border-box;
  6908. width:100%;
  6909. }
  6910. #u30096_text {
  6911. border-width:0px;
  6912. white-space:nowrap;
  6913. text-transform:none;
  6914. }
  6915. #u30097_div {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:97px;
  6921. height:22px;
  6922. background:inherit;
  6923. background-color:rgba(255, 255, 255, 0);
  6924. border:none;
  6925. border-radius:0px;
  6926. -moz-box-shadow:none;
  6927. -webkit-box-shadow:none;
  6928. box-shadow:none;
  6929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6930. font-weight:400;
  6931. font-style:normal;
  6932. font-size:16px;
  6933. }
  6934. #u30097 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:146px;
  6938. top:293px;
  6939. width:97px;
  6940. height:22px;
  6941. display:flex;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:16px;
  6946. }
  6947. #u30097 .text {
  6948. position:absolute;
  6949. align-self:flex-start;
  6950. padding:0px 0px 0px 0px;
  6951. box-sizing:border-box;
  6952. width:100%;
  6953. }
  6954. #u30097_text {
  6955. border-width:0px;
  6956. white-space:nowrap;
  6957. text-transform:none;
  6958. }
  6959. #u30098_div {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:97px;
  6965. height:22px;
  6966. background:inherit;
  6967. background-color:rgba(255, 255, 255, 0);
  6968. border:none;
  6969. border-radius:0px;
  6970. -moz-box-shadow:none;
  6971. -webkit-box-shadow:none;
  6972. box-shadow:none;
  6973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6974. font-weight:400;
  6975. font-style:normal;
  6976. font-size:16px;
  6977. }
  6978. #u30098 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:146px;
  6982. top:519px;
  6983. width:97px;
  6984. height:22px;
  6985. display:flex;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:16px;
  6990. }
  6991. #u30098 .text {
  6992. position:absolute;
  6993. align-self:flex-start;
  6994. padding:0px 0px 0px 0px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u30098_text {
  6999. border-width:0px;
  7000. white-space:nowrap;
  7001. text-transform:none;
  7002. }
  7003. #u30099_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:97px;
  7009. height:22px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 0);
  7012. border:none;
  7013. border-radius:0px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:16px;
  7021. }
  7022. #u30099 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:146px;
  7026. top:561px;
  7027. width:97px;
  7028. height:22px;
  7029. display:flex;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:16px;
  7034. }
  7035. #u30099 .text {
  7036. position:absolute;
  7037. align-self:flex-start;
  7038. padding:0px 0px 0px 0px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u30099_text {
  7043. border-width:0px;
  7044. white-space:nowrap;
  7045. text-transform:none;
  7046. }
  7047. #u30100_div {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:122px;
  7053. height:22px;
  7054. background:inherit;
  7055. background-color:rgba(255, 255, 255, 0);
  7056. border:none;
  7057. border-radius:0px;
  7058. -moz-box-shadow:none;
  7059. -webkit-box-shadow:none;
  7060. box-shadow:none;
  7061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. font-size:16px;
  7065. }
  7066. #u30100 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:146px;
  7070. top:603px;
  7071. width:122px;
  7072. height:22px;
  7073. display:flex;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:16px;
  7078. }
  7079. #u30100 .text {
  7080. position:absolute;
  7081. align-self:flex-start;
  7082. padding:0px 0px 0px 0px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u30100_text {
  7087. border-width:0px;
  7088. white-space:nowrap;
  7089. text-transform:none;
  7090. }
  7091. #u30101_div {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:49px;
  7097. height:17px;
  7098. background:inherit;
  7099. background-color:rgba(255, 255, 255, 0);
  7100. border:none;
  7101. border-radius:0px;
  7102. -moz-box-shadow:none;
  7103. -webkit-box-shadow:none;
  7104. box-shadow:none;
  7105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:12px;
  7109. color:#AAAAAA;
  7110. }
  7111. #u30101 {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:146px;
  7115. top:809px;
  7116. width:49px;
  7117. height:17px;
  7118. display:flex;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:12px;
  7123. color:#AAAAAA;
  7124. }
  7125. #u30101 .text {
  7126. position:absolute;
  7127. align-self:flex-start;
  7128. padding:0px 0px 0px 0px;
  7129. box-sizing:border-box;
  7130. width:100%;
  7131. }
  7132. #u30101_text {
  7133. border-width:0px;
  7134. white-space:nowrap;
  7135. text-transform:none;
  7136. }
  7137. #u30102_img {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:201px;
  7143. height:2px;
  7144. }
  7145. #u30102 {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:120px;
  7149. top:787px;
  7150. width:200px;
  7151. height:1px;
  7152. display:flex;
  7153. }
  7154. #u30102 .text {
  7155. position:absolute;
  7156. align-self:center;
  7157. padding:2px 2px 2px 2px;
  7158. box-sizing:border-box;
  7159. width:100%;
  7160. }
  7161. #u30102_text {
  7162. border-width:0px;
  7163. word-wrap:break-word;
  7164. text-transform:none;
  7165. visibility:hidden;
  7166. }
  7167. #u30103_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:97px;
  7173. height:22px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 0);
  7176. border:none;
  7177. border-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7182. font-weight:400;
  7183. font-style:normal;
  7184. font-size:16px;
  7185. }
  7186. #u30103 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:146px;
  7190. top:847px;
  7191. width:97px;
  7192. height:22px;
  7193. display:flex;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:16px;
  7198. }
  7199. #u30103 .text {
  7200. position:absolute;
  7201. align-self:flex-start;
  7202. padding:0px 0px 0px 0px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u30103_text {
  7207. border-width:0px;
  7208. white-space:nowrap;
  7209. text-transform:none;
  7210. }
  7211. #u30104_div {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:97px;
  7217. height:22px;
  7218. background:inherit;
  7219. background-color:rgba(255, 255, 255, 0);
  7220. border:none;
  7221. border-radius:0px;
  7222. -moz-box-shadow:none;
  7223. -webkit-box-shadow:none;
  7224. box-shadow:none;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:16px;
  7229. }
  7230. #u30104 {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:146px;
  7234. top:889px;
  7235. width:97px;
  7236. height:22px;
  7237. display:flex;
  7238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7239. font-weight:400;
  7240. font-style:normal;
  7241. font-size:16px;
  7242. }
  7243. #u30104 .text {
  7244. position:absolute;
  7245. align-self:flex-start;
  7246. padding:0px 0px 0px 0px;
  7247. box-sizing:border-box;
  7248. width:100%;
  7249. }
  7250. #u30104_text {
  7251. border-width:0px;
  7252. white-space:nowrap;
  7253. text-transform:none;
  7254. }
  7255. #u30105_div {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:0px;
  7259. top:0px;
  7260. width:97px;
  7261. height:22px;
  7262. background:inherit;
  7263. background-color:rgba(255, 255, 255, 0);
  7264. border:none;
  7265. border-radius:0px;
  7266. -moz-box-shadow:none;
  7267. -webkit-box-shadow:none;
  7268. box-shadow:none;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:16px;
  7273. }
  7274. #u30105 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:146px;
  7278. top:335px;
  7279. width:97px;
  7280. height:22px;
  7281. display:flex;
  7282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:16px;
  7286. }
  7287. #u30105 .text {
  7288. position:absolute;
  7289. align-self:flex-start;
  7290. padding:0px 0px 0px 0px;
  7291. box-sizing:border-box;
  7292. width:100%;
  7293. }
  7294. #u30105_text {
  7295. border-width:0px;
  7296. white-space:nowrap;
  7297. text-transform:none;
  7298. }
  7299. #u30106_div {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:97px;
  7305. height:22px;
  7306. background:inherit;
  7307. background-color:rgba(255, 255, 255, 0);
  7308. border:none;
  7309. border-radius:0px;
  7310. -moz-box-shadow:none;
  7311. -webkit-box-shadow:none;
  7312. box-shadow:none;
  7313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7314. font-weight:400;
  7315. font-style:normal;
  7316. font-size:16px;
  7317. }
  7318. #u30106 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:146px;
  7322. top:931px;
  7323. width:97px;
  7324. height:22px;
  7325. display:flex;
  7326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7327. font-weight:400;
  7328. font-style:normal;
  7329. font-size:16px;
  7330. }
  7331. #u30106 .text {
  7332. position:absolute;
  7333. align-self:flex-start;
  7334. padding:0px 0px 0px 0px;
  7335. box-sizing:border-box;
  7336. width:100%;
  7337. }
  7338. #u30106_text {
  7339. border-width:0px;
  7340. white-space:nowrap;
  7341. text-transform:none;
  7342. }
  7343. #u30107_div {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:0px;
  7347. top:0px;
  7348. width:49px;
  7349. height:17px;
  7350. background:inherit;
  7351. background-color:rgba(255, 255, 255, 0);
  7352. border:none;
  7353. border-radius:0px;
  7354. -moz-box-shadow:none;
  7355. -webkit-box-shadow:none;
  7356. box-shadow:none;
  7357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7358. font-weight:400;
  7359. font-style:normal;
  7360. font-size:12px;
  7361. color:#AAAAAA;
  7362. }
  7363. #u30107 {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:146px;
  7367. top:995px;
  7368. width:49px;
  7369. height:17px;
  7370. display:flex;
  7371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:12px;
  7375. color:#AAAAAA;
  7376. }
  7377. #u30107 .text {
  7378. position:absolute;
  7379. align-self:flex-start;
  7380. padding:0px 0px 0px 0px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u30107_text {
  7385. border-width:0px;
  7386. white-space:nowrap;
  7387. text-transform:none;
  7388. }
  7389. #u30108_img {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:0px;
  7393. top:0px;
  7394. width:201px;
  7395. height:2px;
  7396. }
  7397. #u30108 {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:120px;
  7401. top:973px;
  7402. width:200px;
  7403. height:1px;
  7404. display:flex;
  7405. }
  7406. #u30108 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:2px 2px 2px 2px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u30108_text {
  7414. border-width:0px;
  7415. word-wrap:break-word;
  7416. text-transform:none;
  7417. visibility:hidden;
  7418. }
  7419. #u30109_div {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:97px;
  7425. height:22px;
  7426. background:inherit;
  7427. background-color:rgba(255, 255, 255, 0);
  7428. border:none;
  7429. border-radius:0px;
  7430. -moz-box-shadow:none;
  7431. -webkit-box-shadow:none;
  7432. box-shadow:none;
  7433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:16px;
  7437. }
  7438. #u30109 {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:146px;
  7442. top:1033px;
  7443. width:97px;
  7444. height:22px;
  7445. display:flex;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:16px;
  7450. }
  7451. #u30109 .text {
  7452. position:absolute;
  7453. align-self:flex-start;
  7454. padding:0px 0px 0px 0px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u30109_text {
  7459. border-width:0px;
  7460. white-space:nowrap;
  7461. text-transform:none;
  7462. }
  7463. #u30110_div {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:73px;
  7469. height:17px;
  7470. background:inherit;
  7471. background-color:rgba(255, 255, 255, 0);
  7472. border:none;
  7473. border-radius:0px;
  7474. -moz-box-shadow:none;
  7475. -webkit-box-shadow:none;
  7476. box-shadow:none;
  7477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7478. font-weight:400;
  7479. font-style:normal;
  7480. font-size:12px;
  7481. color:#AAAAAA;
  7482. }
  7483. #u30110 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:146px;
  7487. top:667px;
  7488. width:73px;
  7489. height:17px;
  7490. display:flex;
  7491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:12px;
  7495. color:#AAAAAA;
  7496. }
  7497. #u30110 .text {
  7498. position:absolute;
  7499. align-self:flex-start;
  7500. padding:0px 0px 0px 0px;
  7501. box-sizing:border-box;
  7502. width:100%;
  7503. }
  7504. #u30110_text {
  7505. border-width:0px;
  7506. white-space:nowrap;
  7507. text-transform:none;
  7508. }
  7509. #u30111_img {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:0px;
  7514. width:201px;
  7515. height:2px;
  7516. }
  7517. #u30111 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:120px;
  7521. top:645px;
  7522. width:200px;
  7523. height:1px;
  7524. display:flex;
  7525. }
  7526. #u30111 .text {
  7527. position:absolute;
  7528. align-self:center;
  7529. padding:2px 2px 2px 2px;
  7530. box-sizing:border-box;
  7531. width:100%;
  7532. }
  7533. #u30111_text {
  7534. border-width:0px;
  7535. word-wrap:break-word;
  7536. text-transform:none;
  7537. visibility:hidden;
  7538. }
  7539. #u30112_div {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:0px;
  7543. top:0px;
  7544. width:97px;
  7545. height:22px;
  7546. background:inherit;
  7547. background-color:rgba(255, 255, 255, 0);
  7548. border:none;
  7549. border-radius:0px;
  7550. -moz-box-shadow:none;
  7551. -webkit-box-shadow:none;
  7552. box-shadow:none;
  7553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:16px;
  7557. }
  7558. #u30112 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:146px;
  7562. top:705px;
  7563. width:97px;
  7564. height:22px;
  7565. display:flex;
  7566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:16px;
  7570. }
  7571. #u30112 .text {
  7572. position:absolute;
  7573. align-self:flex-start;
  7574. padding:0px 0px 0px 0px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u30112_text {
  7579. border-width:0px;
  7580. white-space:nowrap;
  7581. text-transform:none;
  7582. }
  7583. #u30113_div {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:97px;
  7589. height:22px;
  7590. background:inherit;
  7591. background-color:rgba(255, 255, 255, 0);
  7592. border:none;
  7593. border-radius:0px;
  7594. -moz-box-shadow:none;
  7595. -webkit-box-shadow:none;
  7596. box-shadow:none;
  7597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:16px;
  7601. }
  7602. #u30113 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:146px;
  7606. top:747px;
  7607. width:97px;
  7608. height:22px;
  7609. display:flex;
  7610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:16px;
  7614. }
  7615. #u30113 .text {
  7616. position:absolute;
  7617. align-self:flex-start;
  7618. padding:0px 0px 0px 0px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u30113_text {
  7623. border-width:0px;
  7624. white-space:nowrap;
  7625. text-transform:none;
  7626. }