styles.css 124 KB

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