styles.css 124 KB

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