styles.css 135 KB

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