styles.css 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-97px;
  6. width:2347px;
  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. #u18951 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u18952_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:60px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u18952 {
  52. border-width:0px;
  53. position:absolute;
  54. left:97px;
  55. top:73px;
  56. width:800px;
  57. height:60px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u18952 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u18952_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u18953_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:47px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u18953 {
  105. border-width:0px;
  106. position:absolute;
  107. left:128px;
  108. top:86px;
  109. width:47px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u18953 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u18953_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u18954_div {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:800px;
  137. height:1069px;
  138. background:inherit;
  139. background-color:rgba(255, 255, 255, 1);
  140. box-sizing:border-box;
  141. border-width:1px;
  142. border-style:solid;
  143. border-color:rgba(242, 242, 242, 1);
  144. border-radius:0px;
  145. filter:drop-shadow(none);
  146. transition:none;
  147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  148. font-weight:400;
  149. font-style:normal;
  150. font-size:14px;
  151. color:#AAAAAA;
  152. text-align:center;
  153. line-height:30px;
  154. }
  155. #u18954 {
  156. border-width:0px;
  157. position:absolute;
  158. left:97px;
  159. top:133px;
  160. width:800px;
  161. height:1069px;
  162. display:flex;
  163. transition:none;
  164. transform-origin:50% 50%;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:14px;
  169. color:#AAAAAA;
  170. text-align:center;
  171. line-height:30px;
  172. }
  173. #u18954 .text {
  174. position:absolute;
  175. align-self:center;
  176. padding:5px 10px 5px 10px;
  177. box-sizing:border-box;
  178. width:100%;
  179. }
  180. #u18954_text {
  181. border-width:0px;
  182. word-wrap:break-word;
  183. text-transform:none;
  184. visibility:hidden;
  185. }
  186. #u18955 {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:0px;
  192. height:0px;
  193. }
  194. #u18956_div {
  195. border-width:0px;
  196. position:absolute;
  197. left:0px;
  198. top:0px;
  199. width:800px;
  200. height:60px;
  201. background:inherit;
  202. background-color:rgba(255, 255, 255, 1);
  203. box-sizing:border-box;
  204. border-width:1px;
  205. border-style:solid;
  206. border-color:rgba(215, 215, 215, 1);
  207. border-radius:0px;
  208. filter:drop-shadow(none);
  209. transition:none;
  210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  211. font-weight:400;
  212. font-style:normal;
  213. font-size:14px;
  214. color:#AAAAAA;
  215. text-align:center;
  216. line-height:30px;
  217. }
  218. #u18956 {
  219. border-width:0px;
  220. position:absolute;
  221. left:97px;
  222. top:1142px;
  223. width:800px;
  224. height:60px;
  225. display:flex;
  226. transition:none;
  227. transform-origin:50% 50%;
  228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  229. font-weight:400;
  230. font-style:normal;
  231. font-size:14px;
  232. color:#AAAAAA;
  233. text-align:center;
  234. line-height:30px;
  235. }
  236. #u18956 .text {
  237. position:absolute;
  238. align-self:center;
  239. padding:5px 10px 5px 10px;
  240. box-sizing:border-box;
  241. width:100%;
  242. }
  243. #u18956_text {
  244. border-width:0px;
  245. word-wrap:break-word;
  246. text-transform:none;
  247. visibility:hidden;
  248. }
  249. #u18957 {
  250. border-width:0px;
  251. position:absolute;
  252. left:777px;
  253. top:1157px;
  254. width:80px;
  255. height:30px;
  256. display:flex;
  257. transition:none;
  258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  259. font-weight:400;
  260. font-style:normal;
  261. font-size:14px;
  262. color:#FFFFFF;
  263. }
  264. #u18957 .text {
  265. position:absolute;
  266. align-self:center;
  267. padding:2px 2px 2px 2px;
  268. box-sizing:border-box;
  269. width:100%;
  270. }
  271. #u18957_img {
  272. border-width:0px;
  273. position:absolute;
  274. left:0px;
  275. top:0px;
  276. width:80px;
  277. height:30px;
  278. }
  279. #u18957_text {
  280. border-width:0px;
  281. word-wrap:break-word;
  282. text-transform:none;
  283. }
  284. #u18958_div {
  285. border-width:0px;
  286. position:absolute;
  287. left:0px;
  288. top:0px;
  289. width:80px;
  290. height:30px;
  291. background:inherit;
  292. background-color:rgba(255, 255, 255, 1);
  293. box-sizing:border-box;
  294. border-width:1px;
  295. border-style:solid;
  296. border-color:rgba(170, 170, 170, 1);
  297. border-radius:4px;
  298. filter:drop-shadow(none);
  299. transition:none;
  300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  301. font-weight:400;
  302. font-style:normal;
  303. font-size:14px;
  304. }
  305. #u18958 {
  306. border-width:0px;
  307. position:absolute;
  308. left:687px;
  309. top:1157px;
  310. width:80px;
  311. height:30px;
  312. display:flex;
  313. transition:none;
  314. transform-origin:50% 50%;
  315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  316. font-weight:400;
  317. font-style:normal;
  318. font-size:14px;
  319. }
  320. #u18958 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u18958_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. }
  332. #u18959_div {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:40px;
  338. height:40px;
  339. background:inherit;
  340. background-color:rgba(255, 255, 255, 0);
  341. border-top:0px;
  342. border-right:0px;
  343. border-bottom:0px;
  344. border-radius:0px;
  345. border-top-left-radius:0px;
  346. border-bottom-left-radius:0px;
  347. filter:drop-shadow(none);
  348. transition:none;
  349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  350. font-weight:500;
  351. font-style:normal;
  352. font-size:24px;
  353. text-align:center;
  354. }
  355. #u18959 {
  356. border-width:0px;
  357. position:absolute;
  358. left:857px;
  359. top:73px;
  360. width:40px;
  361. height:40px;
  362. display:flex;
  363. transition:none;
  364. transform-origin:50% 50%;
  365. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  366. font-weight:500;
  367. font-style:normal;
  368. font-size:24px;
  369. text-align:center;
  370. }
  371. #u18959 .text {
  372. position:absolute;
  373. align-self:center;
  374. padding:5px 10px 5px 0px;
  375. box-sizing:border-box;
  376. width:100%;
  377. }
  378. #u18959_text {
  379. border-width:0px;
  380. word-wrap:break-word;
  381. text-transform:none;
  382. }
  383. #u18960_div {
  384. border-width:0px;
  385. position:absolute;
  386. left:0px;
  387. top:0px;
  388. width:36px;
  389. height:40px;
  390. background:inherit;
  391. background-color:rgba(255, 255, 255, 0);
  392. border-left:0px;
  393. border-top:0px;
  394. border-right:0px;
  395. border-radius:0px;
  396. border-bottom-right-radius:0px;
  397. border-bottom-left-radius:0px;
  398. filter:drop-shadow(none);
  399. transition:none;
  400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  401. font-weight:400;
  402. font-style:normal;
  403. font-size:14px;
  404. }
  405. #u18960 {
  406. border-width:0px;
  407. position:absolute;
  408. left:366px;
  409. top:324px;
  410. width:36px;
  411. height:40px;
  412. display:flex;
  413. transition:none;
  414. transform-origin:50% 50%;
  415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  416. font-weight:400;
  417. font-style:normal;
  418. font-size:14px;
  419. }
  420. #u18960 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:0px 0px 0px 0px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u18960_text {
  428. border-width:0px;
  429. white-space:nowrap;
  430. text-transform:none;
  431. }
  432. #u18961 {
  433. border-width:0px;
  434. position:absolute;
  435. left:0px;
  436. top:0px;
  437. width:0px;
  438. height:0px;
  439. }
  440. #u18962_div {
  441. border-width:0px;
  442. position:absolute;
  443. left:0px;
  444. top:0px;
  445. width:200px;
  446. height:40px;
  447. background:inherit;
  448. background-color:rgba(255, 255, 255, 1);
  449. box-sizing:border-box;
  450. border-width:1px;
  451. border-style:solid;
  452. border-color:rgba(201, 201, 201, 1);
  453. border-radius:4px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:14px;
  460. text-align:right;
  461. }
  462. #u18962 {
  463. border-width:0px;
  464. position:absolute;
  465. left:366px;
  466. top:452px;
  467. width:200px;
  468. height:40px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:14px;
  476. text-align:right;
  477. }
  478. #u18962 .text {
  479. position:absolute;
  480. align-self:center;
  481. padding:2px 8px 2px 8px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u18962_text {
  486. border-width:0px;
  487. word-wrap:break-word;
  488. text-transform:none;
  489. visibility:hidden;
  490. }
  491. #u18963_input {
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:161px;
  496. height:33px;
  497. padding:2px 2px 2px 2px;
  498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  499. font-weight:400;
  500. font-style:normal;
  501. font-size:14px;
  502. letter-spacing:normal;
  503. color:#D7D7D7;
  504. vertical-align:none;
  505. text-align:left;
  506. text-transform:none;
  507. background-color:transparent;
  508. border-color:transparent;
  509. }
  510. #u18963_input.hint {
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:161px;
  515. height:33px;
  516. padding:2px 2px 2px 2px;
  517. font-family:"Microsoft YaHei", sans-serif;
  518. font-weight:400;
  519. font-style:normal;
  520. font-size:14px;
  521. letter-spacing:normal;
  522. color:#AAAAAA;
  523. vertical-align:none;
  524. text-align:left;
  525. text-transform:none;
  526. background-color:transparent;
  527. border-color:transparent;
  528. }
  529. #u18963_input.disabled {
  530. position:absolute;
  531. left:0px;
  532. top:0px;
  533. width:161px;
  534. height:33px;
  535. padding:2px 2px 2px 2px;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. font-size:14px;
  540. letter-spacing:normal;
  541. color:#D7D7D7;
  542. vertical-align:none;
  543. text-align:left;
  544. text-transform:none;
  545. background-color:transparent;
  546. border-color:transparent;
  547. }
  548. #u18963_input.hint.disabled {
  549. position:absolute;
  550. left:0px;
  551. top:0px;
  552. width:161px;
  553. height:33px;
  554. padding:2px 2px 2px 2px;
  555. font-family:"Microsoft YaHei", sans-serif;
  556. font-weight:400;
  557. font-style:normal;
  558. font-size:14px;
  559. letter-spacing:normal;
  560. color:#AAAAAA;
  561. vertical-align:none;
  562. text-align:left;
  563. text-transform:none;
  564. background-color:transparent;
  565. border-color:transparent;
  566. }
  567. #u18963_div {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:161px;
  573. height:33px;
  574. background:inherit;
  575. background-color:rgba(255, 255, 255, 0);
  576. border-radius:0px;
  577. filter:drop-shadow(none);
  578. transition:none;
  579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  580. font-weight:400;
  581. font-style:normal;
  582. font-size:14px;
  583. color:#D7D7D7;
  584. }
  585. #u18963 {
  586. border-width:0px;
  587. position:absolute;
  588. left:374px;
  589. top:455px;
  590. width:161px;
  591. height:33px;
  592. display:flex;
  593. transition:none;
  594. transform-origin:50% 50%;
  595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  596. font-weight:400;
  597. font-style:normal;
  598. font-size:14px;
  599. color:#D7D7D7;
  600. }
  601. #u18963 .text {
  602. position:absolute;
  603. align-self:center;
  604. padding:2px 2px 2px 2px;
  605. box-sizing:border-box;
  606. width:100%;
  607. }
  608. #u18963_div.hint {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:161px;
  614. height:33px;
  615. background:inherit;
  616. background-color:rgba(255, 255, 255, 0);
  617. border-radius:0px;
  618. filter:drop-shadow(none);
  619. transition:none;
  620. font-family:"Microsoft YaHei", sans-serif;
  621. font-weight:400;
  622. font-style:normal;
  623. font-size:14px;
  624. color:#D7D7D7;
  625. }
  626. #u18963.hint {
  627. }
  628. #u18963_div.disabled {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:161px;
  634. height:33px;
  635. background:inherit;
  636. background-color:rgba(240, 240, 240, 1);
  637. border-radius:0px;
  638. filter:drop-shadow(none);
  639. transition:none;
  640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  641. font-weight:400;
  642. font-style:normal;
  643. font-size:14px;
  644. color:#D7D7D7;
  645. }
  646. #u18963.disabled {
  647. }
  648. #u18963_div.hint.disabled {
  649. border-width:0px;
  650. position:absolute;
  651. left:0px;
  652. top:0px;
  653. width:161px;
  654. height:33px;
  655. background:inherit;
  656. background-color:rgba(240, 240, 240, 1);
  657. border-radius:0px;
  658. filter:drop-shadow(none);
  659. transition:none;
  660. font-family:"Microsoft YaHei", sans-serif;
  661. font-weight:400;
  662. font-style:normal;
  663. font-size:14px;
  664. color:#D7D7D7;
  665. }
  666. #u18963.hint.disabled {
  667. }
  668. #u18964_div {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:50px;
  674. height:40px;
  675. background:inherit;
  676. background-color:rgba(255, 255, 255, 0);
  677. border-left:0px;
  678. border-top:0px;
  679. border-right:0px;
  680. border-radius:0px;
  681. border-bottom-right-radius:0px;
  682. border-bottom-left-radius:0px;
  683. filter:drop-shadow(none);
  684. transition:none;
  685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  686. font-weight:400;
  687. font-style:normal;
  688. font-size:14px;
  689. }
  690. #u18964 {
  691. border-width:0px;
  692. position:absolute;
  693. left:366px;
  694. top:413px;
  695. width:50px;
  696. height:40px;
  697. display:flex;
  698. transition:none;
  699. transform-origin:50% 50%;
  700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  701. font-weight:400;
  702. font-style:normal;
  703. font-size:14px;
  704. }
  705. #u18964 .text {
  706. position:absolute;
  707. align-self:center;
  708. padding:0px 0px 0px 0px;
  709. box-sizing:border-box;
  710. width:100%;
  711. }
  712. #u18964_text {
  713. border-width:0px;
  714. white-space:nowrap;
  715. text-transform:none;
  716. }
  717. #u18965 {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:0px;
  723. height:0px;
  724. }
  725. #u18966_div {
  726. border-width:0px;
  727. position:absolute;
  728. left:0px;
  729. top:0px;
  730. width:200px;
  731. height:40px;
  732. background:inherit;
  733. background-color:rgba(255, 255, 255, 1);
  734. box-sizing:border-box;
  735. border-width:1px;
  736. border-style:solid;
  737. border-color:rgba(201, 201, 201, 1);
  738. border-radius:4px;
  739. filter:drop-shadow(none);
  740. transition:none;
  741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  742. font-weight:400;
  743. font-style:normal;
  744. font-size:14px;
  745. text-align:right;
  746. }
  747. #u18966 {
  748. border-width:0px;
  749. position:absolute;
  750. left:366px;
  751. top:541px;
  752. width:200px;
  753. height:40px;
  754. display:flex;
  755. transition:none;
  756. transform-origin:50% 50%;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:14px;
  761. text-align:right;
  762. }
  763. #u18966 .text {
  764. position:absolute;
  765. align-self:center;
  766. padding:2px 8px 2px 8px;
  767. box-sizing:border-box;
  768. width:100%;
  769. }
  770. #u18966_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u18967_input {
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:161px;
  781. height:33px;
  782. padding:2px 2px 2px 2px;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:14px;
  787. letter-spacing:normal;
  788. color:#D7D7D7;
  789. vertical-align:none;
  790. text-align:left;
  791. text-transform:none;
  792. background-color:transparent;
  793. border-color:transparent;
  794. }
  795. #u18967_input.hint {
  796. position:absolute;
  797. left:0px;
  798. top:0px;
  799. width:161px;
  800. height:33px;
  801. padding:2px 2px 2px 2px;
  802. font-family:"Microsoft YaHei", sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. letter-spacing:normal;
  807. color:#AAAAAA;
  808. vertical-align:none;
  809. text-align:left;
  810. text-transform:none;
  811. background-color:transparent;
  812. border-color:transparent;
  813. }
  814. #u18967_input.disabled {
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:161px;
  819. height:33px;
  820. padding:2px 2px 2px 2px;
  821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  822. font-weight:400;
  823. font-style:normal;
  824. font-size:14px;
  825. letter-spacing:normal;
  826. color:#D7D7D7;
  827. vertical-align:none;
  828. text-align:left;
  829. text-transform:none;
  830. background-color:transparent;
  831. border-color:transparent;
  832. }
  833. #u18967_input.hint.disabled {
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:161px;
  838. height:33px;
  839. padding:2px 2px 2px 2px;
  840. font-family:"Microsoft YaHei", sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:14px;
  844. letter-spacing:normal;
  845. color:#AAAAAA;
  846. vertical-align:none;
  847. text-align:left;
  848. text-transform:none;
  849. background-color:transparent;
  850. border-color:transparent;
  851. }
  852. #u18967_div {
  853. border-width:0px;
  854. position:absolute;
  855. left:0px;
  856. top:0px;
  857. width:161px;
  858. height:33px;
  859. background:inherit;
  860. background-color:rgba(255, 255, 255, 0);
  861. border-radius:0px;
  862. filter:drop-shadow(none);
  863. transition:none;
  864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  865. font-weight:400;
  866. font-style:normal;
  867. font-size:14px;
  868. color:#D7D7D7;
  869. }
  870. #u18967 {
  871. border-width:0px;
  872. position:absolute;
  873. left:374px;
  874. top:544px;
  875. width:161px;
  876. height:33px;
  877. display:flex;
  878. transition:none;
  879. transform-origin:50% 50%;
  880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  881. font-weight:400;
  882. font-style:normal;
  883. font-size:14px;
  884. color:#D7D7D7;
  885. }
  886. #u18967 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:2px 2px 2px 2px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u18967_div.hint {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:161px;
  899. height:33px;
  900. background:inherit;
  901. background-color:rgba(255, 255, 255, 0);
  902. border-radius:0px;
  903. filter:drop-shadow(none);
  904. transition:none;
  905. font-family:"Microsoft YaHei", sans-serif;
  906. font-weight:400;
  907. font-style:normal;
  908. font-size:14px;
  909. color:#D7D7D7;
  910. }
  911. #u18967.hint {
  912. }
  913. #u18967_div.disabled {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:161px;
  919. height:33px;
  920. background:inherit;
  921. background-color:rgba(240, 240, 240, 1);
  922. border-radius:0px;
  923. filter:drop-shadow(none);
  924. transition:none;
  925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  926. font-weight:400;
  927. font-style:normal;
  928. font-size:14px;
  929. color:#D7D7D7;
  930. }
  931. #u18967.disabled {
  932. }
  933. #u18967_div.hint.disabled {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:161px;
  939. height:33px;
  940. background:inherit;
  941. background-color:rgba(240, 240, 240, 1);
  942. border-radius:0px;
  943. filter:drop-shadow(none);
  944. transition:none;
  945. font-family:"Microsoft YaHei", sans-serif;
  946. font-weight:400;
  947. font-style:normal;
  948. font-size:14px;
  949. color:#D7D7D7;
  950. }
  951. #u18967.hint.disabled {
  952. }
  953. #u18968_div {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:71px;
  959. height:40px;
  960. background:inherit;
  961. background-color:rgba(255, 255, 255, 0);
  962. border-left:0px;
  963. border-top:0px;
  964. border-right:0px;
  965. border-radius:0px;
  966. border-bottom-right-radius:0px;
  967. border-bottom-left-radius:0px;
  968. filter:drop-shadow(none);
  969. transition:none;
  970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  971. font-weight:400;
  972. font-style:normal;
  973. font-size:14px;
  974. }
  975. #u18968 {
  976. border-width:0px;
  977. position:absolute;
  978. left:366px;
  979. top:502px;
  980. width:71px;
  981. height:40px;
  982. display:flex;
  983. transition:none;
  984. transform-origin:50% 50%;
  985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  986. font-weight:400;
  987. font-style:normal;
  988. font-size:14px;
  989. }
  990. #u18968 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:0px 0px 0px 0px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u18968_text {
  998. border-width:0px;
  999. white-space:nowrap;
  1000. text-transform:none;
  1001. }
  1002. #u18969_div {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:71px;
  1008. height:40px;
  1009. background:inherit;
  1010. background-color:rgba(255, 255, 255, 0);
  1011. border-left:0px;
  1012. border-top:0px;
  1013. border-right:0px;
  1014. border-radius:0px;
  1015. border-bottom-right-radius:0px;
  1016. border-bottom-left-radius:0px;
  1017. filter:drop-shadow(none);
  1018. transition:none;
  1019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1020. font-weight:400;
  1021. font-style:normal;
  1022. font-size:14px;
  1023. }
  1024. #u18969 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:136px;
  1028. top:685px;
  1029. width:71px;
  1030. height:40px;
  1031. display:flex;
  1032. transition:none;
  1033. transform-origin:50% 50%;
  1034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1035. font-weight:400;
  1036. font-style:normal;
  1037. font-size:14px;
  1038. }
  1039. #u18969 .text {
  1040. position:absolute;
  1041. align-self:center;
  1042. padding:0px 0px 0px 0px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u18969_text {
  1047. border-width:0px;
  1048. white-space:nowrap;
  1049. text-transform:none;
  1050. }
  1051. #u18970 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:0px;
  1057. height:0px;
  1058. }
  1059. #u18971_div {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:200px;
  1065. height:40px;
  1066. background:inherit;
  1067. background-color:rgba(255, 255, 255, 1);
  1068. box-sizing:border-box;
  1069. border-width:1px;
  1070. border-style:solid;
  1071. border-color:rgba(201, 201, 201, 1);
  1072. border-radius:4px;
  1073. filter:drop-shadow(none);
  1074. transition:none;
  1075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1076. font-weight:400;
  1077. font-style:normal;
  1078. font-size:14px;
  1079. text-align:right;
  1080. }
  1081. #u18971 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:366px;
  1085. top:724px;
  1086. width:200px;
  1087. height:40px;
  1088. display:flex;
  1089. transition:none;
  1090. transform-origin:50% 50%;
  1091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1092. font-weight:400;
  1093. font-style:normal;
  1094. font-size:14px;
  1095. text-align:right;
  1096. }
  1097. #u18971 .text {
  1098. position:absolute;
  1099. align-self:center;
  1100. padding:2px 8px 2px 8px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u18971_text {
  1105. border-width:0px;
  1106. word-wrap:break-word;
  1107. text-transform:none;
  1108. visibility:hidden;
  1109. }
  1110. #u18972_input {
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:161px;
  1115. height:33px;
  1116. padding:2px 2px 2px 2px;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. font-size:14px;
  1121. letter-spacing:normal;
  1122. color:#D7D7D7;
  1123. vertical-align:none;
  1124. text-align:left;
  1125. text-transform:none;
  1126. background-color:transparent;
  1127. border-color:transparent;
  1128. }
  1129. #u18972_input.hint {
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:161px;
  1134. height:33px;
  1135. padding:2px 2px 2px 2px;
  1136. font-family:"Microsoft YaHei", sans-serif;
  1137. font-weight:400;
  1138. font-style:normal;
  1139. font-size:14px;
  1140. letter-spacing:normal;
  1141. color:#AAAAAA;
  1142. vertical-align:none;
  1143. text-align:left;
  1144. text-transform:none;
  1145. background-color:transparent;
  1146. border-color:transparent;
  1147. }
  1148. #u18972_input.disabled {
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:161px;
  1153. height:33px;
  1154. padding:2px 2px 2px 2px;
  1155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1156. font-weight:400;
  1157. font-style:normal;
  1158. font-size:14px;
  1159. letter-spacing:normal;
  1160. color:#D7D7D7;
  1161. vertical-align:none;
  1162. text-align:left;
  1163. text-transform:none;
  1164. background-color:transparent;
  1165. border-color:transparent;
  1166. }
  1167. #u18972_input.hint.disabled {
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:161px;
  1172. height:33px;
  1173. padding:2px 2px 2px 2px;
  1174. font-family:"Microsoft YaHei", sans-serif;
  1175. font-weight:400;
  1176. font-style:normal;
  1177. font-size:14px;
  1178. letter-spacing:normal;
  1179. color:#AAAAAA;
  1180. vertical-align:none;
  1181. text-align:left;
  1182. text-transform:none;
  1183. background-color:transparent;
  1184. border-color:transparent;
  1185. }
  1186. #u18972_div {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:161px;
  1192. height:33px;
  1193. background:inherit;
  1194. background-color:rgba(255, 255, 255, 0);
  1195. border-radius:0px;
  1196. filter:drop-shadow(none);
  1197. transition:none;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:14px;
  1202. color:#D7D7D7;
  1203. }
  1204. #u18972 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:374px;
  1208. top:727px;
  1209. width:161px;
  1210. height:33px;
  1211. display:flex;
  1212. transition:none;
  1213. transform-origin:50% 50%;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:14px;
  1218. color:#D7D7D7;
  1219. }
  1220. #u18972 .text {
  1221. position:absolute;
  1222. align-self:center;
  1223. padding:2px 2px 2px 2px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u18972_div.hint {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:0px;
  1231. top:0px;
  1232. width:161px;
  1233. height:33px;
  1234. background:inherit;
  1235. background-color:rgba(255, 255, 255, 0);
  1236. border-radius:0px;
  1237. filter:drop-shadow(none);
  1238. transition:none;
  1239. font-family:"Microsoft YaHei", sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:14px;
  1243. color:#D7D7D7;
  1244. }
  1245. #u18972.hint {
  1246. }
  1247. #u18972_div.disabled {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:161px;
  1253. height:33px;
  1254. background:inherit;
  1255. background-color:rgba(240, 240, 240, 1);
  1256. border-radius:0px;
  1257. filter:drop-shadow(none);
  1258. transition:none;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:14px;
  1263. color:#D7D7D7;
  1264. }
  1265. #u18972.disabled {
  1266. }
  1267. #u18972_div.hint.disabled {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:161px;
  1273. height:33px;
  1274. background:inherit;
  1275. background-color:rgba(240, 240, 240, 1);
  1276. border-radius:0px;
  1277. filter:drop-shadow(none);
  1278. transition:none;
  1279. font-family:"Microsoft YaHei", sans-serif;
  1280. font-weight:400;
  1281. font-style:normal;
  1282. font-size:14px;
  1283. color:#D7D7D7;
  1284. }
  1285. #u18972.hint.disabled {
  1286. }
  1287. #u18973_div {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:0px;
  1291. top:0px;
  1292. width:85px;
  1293. height:40px;
  1294. background:inherit;
  1295. background-color:rgba(255, 255, 255, 0);
  1296. border-left:0px;
  1297. border-top:0px;
  1298. border-right:0px;
  1299. border-radius:0px;
  1300. border-bottom-right-radius:0px;
  1301. border-bottom-left-radius:0px;
  1302. filter:drop-shadow(none);
  1303. transition:none;
  1304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1305. font-weight:400;
  1306. font-style:normal;
  1307. font-size:14px;
  1308. }
  1309. #u18973 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:366px;
  1313. top:684px;
  1314. width:85px;
  1315. height:40px;
  1316. display:flex;
  1317. transition:none;
  1318. transform-origin:50% 50%;
  1319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1320. font-weight:400;
  1321. font-style:normal;
  1322. font-size:14px;
  1323. }
  1324. #u18973 .text {
  1325. position:absolute;
  1326. align-self:center;
  1327. padding:0px 0px 0px 0px;
  1328. box-sizing:border-box;
  1329. width:100%;
  1330. }
  1331. #u18973_text {
  1332. border-width:0px;
  1333. white-space:nowrap;
  1334. text-transform:none;
  1335. }
  1336. #u18974 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:0px;
  1342. height:0px;
  1343. }
  1344. #u18975_div {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:200px;
  1350. height:40px;
  1351. background:inherit;
  1352. background-color:rgba(255, 255, 255, 1);
  1353. box-sizing:border-box;
  1354. border-width:1px;
  1355. border-style:solid;
  1356. border-color:rgba(201, 201, 201, 1);
  1357. border-radius:4px;
  1358. filter:drop-shadow(none);
  1359. transition:none;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:14px;
  1364. text-align:right;
  1365. }
  1366. #u18975 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:136px;
  1370. top:725px;
  1371. width:200px;
  1372. height:40px;
  1373. display:flex;
  1374. transition:none;
  1375. transform-origin:50% 50%;
  1376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1377. font-weight:400;
  1378. font-style:normal;
  1379. font-size:14px;
  1380. text-align:right;
  1381. }
  1382. #u18975 .text {
  1383. position:absolute;
  1384. align-self:center;
  1385. padding:2px 8px 2px 8px;
  1386. box-sizing:border-box;
  1387. width:100%;
  1388. }
  1389. #u18975_text {
  1390. border-width:0px;
  1391. word-wrap:break-word;
  1392. text-transform:none;
  1393. visibility:hidden;
  1394. }
  1395. #u18976_input {
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:161px;
  1400. height:33px;
  1401. padding:2px 2px 2px 2px;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:14px;
  1406. letter-spacing:normal;
  1407. color:#D7D7D7;
  1408. vertical-align:none;
  1409. text-align:left;
  1410. text-transform:none;
  1411. background-color:transparent;
  1412. border-color:transparent;
  1413. }
  1414. #u18976_input.hint {
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:161px;
  1419. height:33px;
  1420. padding:2px 2px 2px 2px;
  1421. font-family:"Microsoft YaHei", sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. letter-spacing:normal;
  1426. color:#AAAAAA;
  1427. vertical-align:none;
  1428. text-align:left;
  1429. text-transform:none;
  1430. background-color:transparent;
  1431. border-color:transparent;
  1432. }
  1433. #u18976_input.disabled {
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:161px;
  1438. height:33px;
  1439. padding:2px 2px 2px 2px;
  1440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1441. font-weight:400;
  1442. font-style:normal;
  1443. font-size:14px;
  1444. letter-spacing:normal;
  1445. color:#D7D7D7;
  1446. vertical-align:none;
  1447. text-align:left;
  1448. text-transform:none;
  1449. background-color:transparent;
  1450. border-color:transparent;
  1451. }
  1452. #u18976_input.hint.disabled {
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:161px;
  1457. height:33px;
  1458. padding:2px 2px 2px 2px;
  1459. font-family:"Microsoft YaHei", sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:14px;
  1463. letter-spacing:normal;
  1464. color:#AAAAAA;
  1465. vertical-align:none;
  1466. text-align:left;
  1467. text-transform:none;
  1468. background-color:transparent;
  1469. border-color:transparent;
  1470. }
  1471. #u18976_div {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:161px;
  1477. height:33px;
  1478. background:inherit;
  1479. background-color:rgba(255, 255, 255, 0);
  1480. border-radius:0px;
  1481. filter:drop-shadow(none);
  1482. transition:none;
  1483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1484. font-weight:400;
  1485. font-style:normal;
  1486. font-size:14px;
  1487. color:#D7D7D7;
  1488. }
  1489. #u18976 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:144px;
  1493. top:728px;
  1494. width:161px;
  1495. height:33px;
  1496. display:flex;
  1497. transition:none;
  1498. transform-origin:50% 50%;
  1499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1500. font-weight:400;
  1501. font-style:normal;
  1502. font-size:14px;
  1503. color:#D7D7D7;
  1504. }
  1505. #u18976 .text {
  1506. position:absolute;
  1507. align-self:center;
  1508. padding:2px 2px 2px 2px;
  1509. box-sizing:border-box;
  1510. width:100%;
  1511. }
  1512. #u18976_div.hint {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:161px;
  1518. height:33px;
  1519. background:inherit;
  1520. background-color:rgba(255, 255, 255, 0);
  1521. border-radius:0px;
  1522. filter:drop-shadow(none);
  1523. transition:none;
  1524. font-family:"Microsoft YaHei", sans-serif;
  1525. font-weight:400;
  1526. font-style:normal;
  1527. font-size:14px;
  1528. color:#D7D7D7;
  1529. }
  1530. #u18976.hint {
  1531. }
  1532. #u18976_div.disabled {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:161px;
  1538. height:33px;
  1539. background:inherit;
  1540. background-color:rgba(240, 240, 240, 1);
  1541. border-radius:0px;
  1542. filter:drop-shadow(none);
  1543. transition:none;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:14px;
  1548. color:#D7D7D7;
  1549. }
  1550. #u18976.disabled {
  1551. }
  1552. #u18976_div.hint.disabled {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:161px;
  1558. height:33px;
  1559. background:inherit;
  1560. background-color:rgba(240, 240, 240, 1);
  1561. border-radius:0px;
  1562. filter:drop-shadow(none);
  1563. transition:none;
  1564. font-family:"Microsoft YaHei", sans-serif;
  1565. font-weight:400;
  1566. font-style:normal;
  1567. font-size:14px;
  1568. color:#D7D7D7;
  1569. }
  1570. #u18976.hint.disabled {
  1571. }
  1572. #u18977_div {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:29px;
  1578. height:40px;
  1579. background:inherit;
  1580. background-color:rgba(255, 255, 255, 0);
  1581. border-left:0px;
  1582. border-top:0px;
  1583. border-right:0px;
  1584. border-radius:0px;
  1585. border-bottom-right-radius:0px;
  1586. border-bottom-left-radius:0px;
  1587. filter:drop-shadow(none);
  1588. transition:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. }
  1594. #u18977 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:136px;
  1598. top:413px;
  1599. width:29px;
  1600. height:40px;
  1601. display:flex;
  1602. transition:none;
  1603. transform-origin:50% 50%;
  1604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1605. font-weight:400;
  1606. font-style:normal;
  1607. font-size:14px;
  1608. }
  1609. #u18977 .text {
  1610. position:absolute;
  1611. align-self:center;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u18977_text {
  1617. border-width:0px;
  1618. white-space:nowrap;
  1619. text-transform:none;
  1620. }
  1621. #u18978 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:0px;
  1627. height:0px;
  1628. }
  1629. #u18979_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:200px;
  1635. height:40px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 1);
  1638. box-sizing:border-box;
  1639. border-width:1px;
  1640. border-style:solid;
  1641. border-color:rgba(215, 215, 215, 1);
  1642. border-radius:4px;
  1643. filter:drop-shadow(none);
  1644. transition:none;
  1645. font-size:14px;
  1646. }
  1647. #u18979 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:136px;
  1651. top:453px;
  1652. width:200px;
  1653. height:40px;
  1654. display:flex;
  1655. transition:none;
  1656. transform-origin:50% 50%;
  1657. font-size:14px;
  1658. }
  1659. #u18979 .text {
  1660. position:absolute;
  1661. align-self:center;
  1662. padding:2px 2px 2px 2px;
  1663. box-sizing:border-box;
  1664. width:100%;
  1665. }
  1666. #u18979_text {
  1667. border-width:0px;
  1668. word-wrap:break-word;
  1669. text-transform:none;
  1670. visibility:hidden;
  1671. }
  1672. #u18980_input {
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:191px;
  1677. height:31px;
  1678. padding:2px 2px 2px 2px;
  1679. font-family:'ArialMT', 'Arial', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:14px;
  1683. letter-spacing:normal;
  1684. color:#AAAAAA;
  1685. vertical-align:none;
  1686. text-align:left;
  1687. text-transform:none;
  1688. background-color:transparent;
  1689. border-color:transparent;
  1690. }
  1691. #u18980_input.disabled {
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:191px;
  1696. height:31px;
  1697. padding:2px 2px 2px 2px;
  1698. font-family:'ArialMT', 'Arial', sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:14px;
  1702. letter-spacing:normal;
  1703. color:#AAAAAA;
  1704. vertical-align:none;
  1705. text-align:left;
  1706. text-transform:none;
  1707. background-color:transparent;
  1708. border-color:transparent;
  1709. }
  1710. #u18980_div {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:0px;
  1714. top:0px;
  1715. width:191px;
  1716. height:31px;
  1717. background:inherit;
  1718. background-color:rgba(255, 255, 255, 1);
  1719. border-radius:0px;
  1720. filter:drop-shadow(none);
  1721. transition:none;
  1722. font-size:14px;
  1723. color:#AAAAAA;
  1724. }
  1725. #u18980 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:142px;
  1729. top:456px;
  1730. width:191px;
  1731. height:31px;
  1732. display:flex;
  1733. transition:none;
  1734. transform-origin:50% 50%;
  1735. font-size:14px;
  1736. color:#AAAAAA;
  1737. }
  1738. #u18980 .text {
  1739. position:absolute;
  1740. align-self:flex-start;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u18980_div.disabled {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:191px;
  1751. height:31px;
  1752. background:inherit;
  1753. background-color:rgba(240, 240, 240, 1);
  1754. border-radius:0px;
  1755. filter:drop-shadow(none);
  1756. transition:none;
  1757. font-size:14px;
  1758. color:#AAAAAA;
  1759. }
  1760. #u18980.disabled {
  1761. }
  1762. .u18980_input_option {
  1763. font-size:14px;
  1764. }
  1765. #u18981_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:71px;
  1771. height:40px;
  1772. background:inherit;
  1773. background-color:rgba(255, 255, 255, 0);
  1774. border-left:0px;
  1775. border-top:0px;
  1776. border-right:0px;
  1777. border-radius:0px;
  1778. border-bottom-right-radius:0px;
  1779. border-bottom-left-radius:0px;
  1780. filter:drop-shadow(none);
  1781. transition:none;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:14px;
  1786. }
  1787. #u18981 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:136px;
  1791. top:593px;
  1792. width:71px;
  1793. height:40px;
  1794. display:flex;
  1795. transition:none;
  1796. transform-origin:50% 50%;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:14px;
  1801. }
  1802. #u18981 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:0px 0px 0px 0px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u18981_text {
  1810. border-width:0px;
  1811. white-space:nowrap;
  1812. text-transform:none;
  1813. }
  1814. #u18982_div {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:57px;
  1820. height:40px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 0);
  1823. border-left:0px;
  1824. border-top:0px;
  1825. border-right:0px;
  1826. border-radius:0px;
  1827. border-bottom-right-radius:0px;
  1828. border-bottom-left-radius:0px;
  1829. filter:drop-shadow(none);
  1830. transition:none;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:14px;
  1835. }
  1836. #u18982 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:643px;
  1840. top:375px;
  1841. width:57px;
  1842. height:40px;
  1843. display:flex;
  1844. transition:none;
  1845. transform-origin:50% 50%;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:14px;
  1850. }
  1851. #u18982 .text {
  1852. position:absolute;
  1853. align-self:center;
  1854. padding:0px 0px 0px 0px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u18982_text {
  1859. border-width:0px;
  1860. white-space:nowrap;
  1861. text-transform:none;
  1862. }
  1863. #u18983_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:180px;
  1869. height:180px;
  1870. background:inherit;
  1871. background-color:rgba(255, 255, 255, 1);
  1872. box-sizing:border-box;
  1873. border-width:1px;
  1874. border-style:solid;
  1875. border-color:rgba(201, 201, 201, 1);
  1876. border-radius:4px;
  1877. filter:drop-shadow(none);
  1878. transition:none;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:38px;
  1883. }
  1884. #u18983 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:643px;
  1888. top:415px;
  1889. width:180px;
  1890. height:180px;
  1891. display:flex;
  1892. transition:none;
  1893. transform-origin:50% 50%;
  1894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1895. font-weight:400;
  1896. font-style:normal;
  1897. font-size:38px;
  1898. }
  1899. #u18983 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 8px 2px 8px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u18983_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. }
  1911. #u18984_div {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:73px;
  1917. height:40px;
  1918. background:inherit;
  1919. background-color:rgba(255, 255, 255, 0);
  1920. border-left:0px;
  1921. border-top:0px;
  1922. border-right:0px;
  1923. border-radius:0px;
  1924. border-bottom-right-radius:0px;
  1925. border-bottom-left-radius:0px;
  1926. filter:drop-shadow(none);
  1927. transition:none;
  1928. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1929. font-weight:500;
  1930. font-style:normal;
  1931. font-size:18px;
  1932. }
  1933. #u18984 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:136px;
  1937. top:273px;
  1938. width:73px;
  1939. height:40px;
  1940. display:flex;
  1941. transition:none;
  1942. transform-origin:50% 50%;
  1943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1944. font-weight:500;
  1945. font-style:normal;
  1946. font-size:18px;
  1947. }
  1948. #u18984 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u18984_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u18985 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:0px;
  1966. height:0px;
  1967. }
  1968. #u18986_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:200px;
  1974. height:40px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 1);
  1977. box-sizing:border-box;
  1978. border-width:1px;
  1979. border-style:solid;
  1980. border-color:rgba(201, 201, 201, 1);
  1981. border-radius:4px;
  1982. filter:drop-shadow(none);
  1983. transition:none;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. text-align:right;
  1989. }
  1990. #u18986 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:366px;
  1994. top:363px;
  1995. width:200px;
  1996. height:40px;
  1997. display:flex;
  1998. transition:none;
  1999. transform-origin:50% 50%;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:14px;
  2004. text-align:right;
  2005. }
  2006. #u18986 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 8px 2px 8px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u18986_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. visibility:hidden;
  2018. }
  2019. #u18987_input {
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:161px;
  2024. height:33px;
  2025. padding:2px 2px 2px 2px;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:14px;
  2030. letter-spacing:normal;
  2031. color:#D7D7D7;
  2032. vertical-align:none;
  2033. text-align:left;
  2034. text-transform:none;
  2035. background-color:transparent;
  2036. border-color:transparent;
  2037. }
  2038. #u18987_input.hint {
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:161px;
  2043. height:33px;
  2044. padding:2px 2px 2px 2px;
  2045. font-family:"Microsoft YaHei", sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:14px;
  2049. letter-spacing:normal;
  2050. color:#AAAAAA;
  2051. vertical-align:none;
  2052. text-align:left;
  2053. text-transform:none;
  2054. background-color:transparent;
  2055. border-color:transparent;
  2056. }
  2057. #u18987_input.disabled {
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:161px;
  2062. height:33px;
  2063. padding:2px 2px 2px 2px;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:14px;
  2068. letter-spacing:normal;
  2069. color:#D7D7D7;
  2070. vertical-align:none;
  2071. text-align:left;
  2072. text-transform:none;
  2073. background-color:transparent;
  2074. border-color:transparent;
  2075. }
  2076. #u18987_input.hint.disabled {
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:161px;
  2081. height:33px;
  2082. padding:2px 2px 2px 2px;
  2083. font-family:"Microsoft YaHei", sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:14px;
  2087. letter-spacing:normal;
  2088. color:#AAAAAA;
  2089. vertical-align:none;
  2090. text-align:left;
  2091. text-transform:none;
  2092. background-color:transparent;
  2093. border-color:transparent;
  2094. }
  2095. #u18987_div {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:161px;
  2101. height:33px;
  2102. background:inherit;
  2103. background-color:rgba(255, 255, 255, 0);
  2104. border-radius:0px;
  2105. filter:drop-shadow(none);
  2106. transition:none;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:14px;
  2111. color:#D7D7D7;
  2112. }
  2113. #u18987 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:374px;
  2117. top:366px;
  2118. width:161px;
  2119. height:33px;
  2120. display:flex;
  2121. transition:none;
  2122. transform-origin:50% 50%;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. color:#D7D7D7;
  2128. }
  2129. #u18987 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u18987_div.hint {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:161px;
  2142. height:33px;
  2143. background:inherit;
  2144. background-color:rgba(255, 255, 255, 0);
  2145. border-radius:0px;
  2146. filter:drop-shadow(none);
  2147. transition:none;
  2148. font-family:"Microsoft YaHei", sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:14px;
  2152. color:#D7D7D7;
  2153. }
  2154. #u18987.hint {
  2155. }
  2156. #u18987_div.disabled {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:161px;
  2162. height:33px;
  2163. background:inherit;
  2164. background-color:rgba(240, 240, 240, 1);
  2165. border-radius:0px;
  2166. filter:drop-shadow(none);
  2167. transition:none;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:14px;
  2172. color:#D7D7D7;
  2173. }
  2174. #u18987.disabled {
  2175. }
  2176. #u18987_div.hint.disabled {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:161px;
  2182. height:33px;
  2183. background:inherit;
  2184. background-color:rgba(240, 240, 240, 1);
  2185. border-radius:0px;
  2186. filter:drop-shadow(none);
  2187. transition:none;
  2188. font-family:"Microsoft YaHei", sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. color:#D7D7D7;
  2193. }
  2194. #u18987.hint.disabled {
  2195. }
  2196. #u18988_div {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:57px;
  2202. height:40px;
  2203. background:inherit;
  2204. background-color:rgba(255, 255, 255, 0);
  2205. border-left:0px;
  2206. border-top:0px;
  2207. border-right:0px;
  2208. border-radius:0px;
  2209. border-bottom-right-radius:0px;
  2210. border-bottom-left-radius:0px;
  2211. filter:drop-shadow(none);
  2212. transition:none;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:14px;
  2217. }
  2218. #u18988 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:136px;
  2222. top:503px;
  2223. width:57px;
  2224. height:40px;
  2225. display:flex;
  2226. transition:none;
  2227. transform-origin:50% 50%;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:14px;
  2232. }
  2233. #u18988 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:0px 0px 0px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u18988_text {
  2241. border-width:0px;
  2242. white-space:nowrap;
  2243. text-transform:none;
  2244. }
  2245. #u18989 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:0px;
  2251. height:0px;
  2252. }
  2253. #u18990_div {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:200px;
  2259. height:40px;
  2260. background:inherit;
  2261. background-color:rgba(255, 255, 255, 1);
  2262. box-sizing:border-box;
  2263. border-width:1px;
  2264. border-style:solid;
  2265. border-color:rgba(215, 215, 215, 1);
  2266. border-radius:4px;
  2267. filter:drop-shadow(none);
  2268. transition:none;
  2269. font-size:14px;
  2270. }
  2271. #u18990 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:136px;
  2275. top:543px;
  2276. width:200px;
  2277. height:40px;
  2278. display:flex;
  2279. transition:none;
  2280. transform-origin:50% 50%;
  2281. font-size:14px;
  2282. }
  2283. #u18990 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 2px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u18990_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. visibility:hidden;
  2295. }
  2296. #u18991_input {
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:191px;
  2301. height:31px;
  2302. padding:2px 2px 2px 2px;
  2303. font-family:'ArialMT', 'Arial', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:14px;
  2307. letter-spacing:normal;
  2308. color:#AAAAAA;
  2309. vertical-align:none;
  2310. text-align:left;
  2311. text-transform:none;
  2312. background-color:transparent;
  2313. border-color:transparent;
  2314. }
  2315. #u18991_input.disabled {
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:191px;
  2320. height:31px;
  2321. padding:2px 2px 2px 2px;
  2322. font-family:'ArialMT', 'Arial', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:14px;
  2326. letter-spacing:normal;
  2327. color:#AAAAAA;
  2328. vertical-align:none;
  2329. text-align:left;
  2330. text-transform:none;
  2331. background-color:transparent;
  2332. border-color:transparent;
  2333. }
  2334. #u18991_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:191px;
  2340. height:31px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 1);
  2343. border-radius:0px;
  2344. filter:drop-shadow(none);
  2345. transition:none;
  2346. font-size:14px;
  2347. color:#AAAAAA;
  2348. }
  2349. #u18991 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:142px;
  2353. top:546px;
  2354. width:191px;
  2355. height:31px;
  2356. display:flex;
  2357. transition:none;
  2358. transform-origin:50% 50%;
  2359. font-size:14px;
  2360. color:#AAAAAA;
  2361. }
  2362. #u18991 .text {
  2363. position:absolute;
  2364. align-self:flex-start;
  2365. padding:2px 2px 2px 2px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u18991_div.disabled {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:191px;
  2375. height:31px;
  2376. background:inherit;
  2377. background-color:rgba(240, 240, 240, 1);
  2378. border-radius:0px;
  2379. filter:drop-shadow(none);
  2380. transition:none;
  2381. font-size:14px;
  2382. color:#AAAAAA;
  2383. }
  2384. #u18991.disabled {
  2385. }
  2386. .u18991_input_option {
  2387. font-size:14px;
  2388. }
  2389. #u18992 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:0px;
  2395. height:0px;
  2396. }
  2397. #u18993_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:200px;
  2403. height:40px;
  2404. background:inherit;
  2405. background-color:rgba(255, 255, 255, 1);
  2406. box-sizing:border-box;
  2407. border-width:1px;
  2408. border-style:solid;
  2409. border-color:rgba(215, 215, 215, 1);
  2410. border-radius:4px;
  2411. filter:drop-shadow(none);
  2412. transition:none;
  2413. font-size:14px;
  2414. }
  2415. #u18993 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:136px;
  2419. top:635px;
  2420. width:200px;
  2421. height:40px;
  2422. display:flex;
  2423. transition:none;
  2424. transform-origin:50% 50%;
  2425. font-size:14px;
  2426. }
  2427. #u18993 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 2px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u18993_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. visibility:hidden;
  2439. }
  2440. #u18994_input {
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:194px;
  2445. height:31px;
  2446. padding:2px 2px 2px 2px;
  2447. font-family:'ArialMT', 'Arial', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. letter-spacing:normal;
  2452. color:#AAAAAA;
  2453. vertical-align:none;
  2454. text-align:left;
  2455. text-transform:none;
  2456. background-color:transparent;
  2457. border-color:transparent;
  2458. }
  2459. #u18994_input.disabled {
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:194px;
  2464. height:31px;
  2465. padding:2px 2px 2px 2px;
  2466. font-family:'ArialMT', 'Arial', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:14px;
  2470. letter-spacing:normal;
  2471. color:#AAAAAA;
  2472. vertical-align:none;
  2473. text-align:left;
  2474. text-transform:none;
  2475. background-color:transparent;
  2476. border-color:transparent;
  2477. }
  2478. #u18994_div {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:194px;
  2484. height:31px;
  2485. background:inherit;
  2486. background-color:rgba(255, 255, 255, 1);
  2487. border-radius:0px;
  2488. filter:drop-shadow(none);
  2489. transition:none;
  2490. font-size:14px;
  2491. color:#AAAAAA;
  2492. }
  2493. #u18994 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:139px;
  2497. top:638px;
  2498. width:194px;
  2499. height:31px;
  2500. display:flex;
  2501. transition:none;
  2502. transform-origin:50% 50%;
  2503. font-size:14px;
  2504. color:#AAAAAA;
  2505. }
  2506. #u18994 .text {
  2507. position:absolute;
  2508. align-self:flex-start;
  2509. padding:2px 2px 2px 2px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u18994_div.disabled {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:194px;
  2519. height:31px;
  2520. background:inherit;
  2521. background-color:rgba(240, 240, 240, 1);
  2522. border-radius:0px;
  2523. filter:drop-shadow(none);
  2524. transition:none;
  2525. font-size:14px;
  2526. color:#AAAAAA;
  2527. }
  2528. #u18994.disabled {
  2529. }
  2530. .u18994_input_option {
  2531. font-size:14px;
  2532. }
  2533. #u18995 label {
  2534. left:0px;
  2535. width:100%;
  2536. height:100%;
  2537. }
  2538. #u18995_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:3px;
  2543. width:12px;
  2544. height:12px;
  2545. }
  2546. #u18995 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:278px;
  2550. top:609px;
  2551. width:55px;
  2552. height:18px;
  2553. display:flex;
  2554. transition:none;
  2555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2556. font-weight:400;
  2557. font-style:normal;
  2558. }
  2559. #u18995 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:0px 2px 0px 2px;
  2563. box-sizing:border-box;
  2564. }
  2565. #u18995_img.selected {
  2566. }
  2567. #u18995.selected {
  2568. }
  2569. #u18995_img.disabled {
  2570. }
  2571. #u18995.disabled {
  2572. }
  2573. #u18995_img.selected.error {
  2574. }
  2575. #u18995.selected.error {
  2576. }
  2577. #u18995_img.selected.hint {
  2578. }
  2579. #u18995.selected.hint {
  2580. }
  2581. #u18995_img.selected.error.hint {
  2582. }
  2583. #u18995.selected.error.hint {
  2584. }
  2585. #u18995_img.mouseOver.selected {
  2586. }
  2587. #u18995.mouseOver.selected {
  2588. }
  2589. #u18995_img.mouseOver.selected.error {
  2590. }
  2591. #u18995.mouseOver.selected.error {
  2592. }
  2593. #u18995_img.mouseOver.selected.hint {
  2594. }
  2595. #u18995.mouseOver.selected.hint {
  2596. }
  2597. #u18995_img.mouseOver.selected.error.hint {
  2598. }
  2599. #u18995.mouseOver.selected.error.hint {
  2600. }
  2601. #u18995_img.mouseDown.selected {
  2602. }
  2603. #u18995.mouseDown.selected {
  2604. }
  2605. #u18995_img.mouseDown.selected.error {
  2606. }
  2607. #u18995.mouseDown.selected.error {
  2608. }
  2609. #u18995_img.mouseDown.selected.hint {
  2610. }
  2611. #u18995.mouseDown.selected.hint {
  2612. }
  2613. #u18995_img.mouseDown.selected.error.hint {
  2614. }
  2615. #u18995.mouseDown.selected.error.hint {
  2616. }
  2617. #u18995_img.mouseOver.mouseDown.selected {
  2618. }
  2619. #u18995.mouseOver.mouseDown.selected {
  2620. }
  2621. #u18995_img.mouseOver.mouseDown.selected.error {
  2622. }
  2623. #u18995.mouseOver.mouseDown.selected.error {
  2624. }
  2625. #u18995_img.mouseOver.mouseDown.selected.hint {
  2626. }
  2627. #u18995.mouseOver.mouseDown.selected.hint {
  2628. }
  2629. #u18995_img.mouseOver.mouseDown.selected.error.hint {
  2630. }
  2631. #u18995.mouseOver.mouseDown.selected.error.hint {
  2632. }
  2633. #u18995_img.focused.selected {
  2634. }
  2635. #u18995.focused.selected {
  2636. }
  2637. #u18995_img.focused.selected.error {
  2638. }
  2639. #u18995.focused.selected.error {
  2640. }
  2641. #u18995_img.focused.selected.hint {
  2642. }
  2643. #u18995.focused.selected.hint {
  2644. }
  2645. #u18995_img.focused.selected.error.hint {
  2646. }
  2647. #u18995.focused.selected.error.hint {
  2648. }
  2649. #u18995_img.selected.disabled {
  2650. }
  2651. #u18995.selected.disabled {
  2652. }
  2653. #u18995_img.selected.hint.disabled {
  2654. }
  2655. #u18995.selected.hint.disabled {
  2656. }
  2657. #u18995_img.selected.error.disabled {
  2658. }
  2659. #u18995.selected.error.disabled {
  2660. }
  2661. #u18995_img.selected.error.hint.disabled {
  2662. }
  2663. #u18995.selected.error.hint.disabled {
  2664. }
  2665. #u18995_text {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:12px;
  2669. top:0px;
  2670. width:43px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. }
  2674. #u18995_input {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:0px;
  2680. height:0px;
  2681. opacity:0;
  2682. }
  2683. #u18996_div {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:180px;
  2689. height:40px;
  2690. background:inherit;
  2691. background-color:rgba(24, 144, 255, 1);
  2692. border-radius:4px;
  2693. filter:drop-shadow(none);
  2694. transition:none;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:14px;
  2699. color:#FFFFFF;
  2700. }
  2701. #u18996 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:643px;
  2705. top:618px;
  2706. width:180px;
  2707. height:40px;
  2708. display:flex;
  2709. transition:none;
  2710. transform-origin:50% 50%;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:14px;
  2715. color:#FFFFFF;
  2716. }
  2717. #u18996 .text {
  2718. position:absolute;
  2719. align-self:center;
  2720. padding:2px 2px 2px 2px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u18996_text {
  2725. border-width:0px;
  2726. word-wrap:break-word;
  2727. text-transform:none;
  2728. }
  2729. #u18997_div {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:180px;
  2735. height:40px;
  2736. background:inherit;
  2737. background-color:rgba(24, 144, 255, 1);
  2738. border-radius:4px;
  2739. filter:drop-shadow(none);
  2740. transition:none;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:14px;
  2745. color:#FFFFFF;
  2746. }
  2747. #u18997 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:643px;
  2751. top:678px;
  2752. width:180px;
  2753. height:40px;
  2754. display:flex;
  2755. transition:none;
  2756. transform-origin:50% 50%;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:14px;
  2761. color:#FFFFFF;
  2762. }
  2763. #u18997 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u18997_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. }
  2775. #u18998_div {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:185px;
  2781. height:40px;
  2782. background:inherit;
  2783. background-color:rgba(255, 255, 255, 0);
  2784. border-left:0px;
  2785. border-top:0px;
  2786. border-right:0px;
  2787. border-radius:0px;
  2788. border-bottom-right-radius:0px;
  2789. border-bottom-left-radius:0px;
  2790. filter:drop-shadow(none);
  2791. transition:none;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. }
  2796. #u18998 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:136px;
  2800. top:323px;
  2801. width:185px;
  2802. height:40px;
  2803. display:flex;
  2804. transition:none;
  2805. transform-origin:50% 50%;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. }
  2810. #u18998 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:0px 0px 0px 0px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u18998_text {
  2818. border-width:0px;
  2819. white-space:nowrap;
  2820. text-transform:none;
  2821. }
  2822. #u18999 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:0px;
  2828. height:0px;
  2829. }
  2830. #u19000_div {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:200px;
  2836. height:40px;
  2837. background:inherit;
  2838. background-color:rgba(242, 242, 242, 1);
  2839. box-sizing:border-box;
  2840. border-width:1px;
  2841. border-style:solid;
  2842. border-color:rgba(201, 201, 201, 1);
  2843. border-radius:4px;
  2844. filter:drop-shadow(none);
  2845. transition:none;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:14px;
  2850. text-align:right;
  2851. }
  2852. #u19000 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:136px;
  2856. top:363px;
  2857. width:200px;
  2858. height:40px;
  2859. display:flex;
  2860. transition:none;
  2861. transform-origin:50% 50%;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:14px;
  2866. text-align:right;
  2867. }
  2868. #u19000 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:2px 8px 2px 8px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u19000_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. visibility:hidden;
  2880. }
  2881. #u19001_input {
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:161px;
  2886. height:33px;
  2887. padding:2px 2px 2px 2px;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:14px;
  2892. letter-spacing:normal;
  2893. color:#D7D7D7;
  2894. vertical-align:none;
  2895. text-align:left;
  2896. text-transform:none;
  2897. background-color:transparent;
  2898. border-color:transparent;
  2899. }
  2900. #u19001_input.hint {
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:161px;
  2905. height:33px;
  2906. padding:2px 2px 2px 2px;
  2907. font-family:"Microsoft YaHei", sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:14px;
  2911. letter-spacing:normal;
  2912. color:#AAAAAA;
  2913. vertical-align:none;
  2914. text-align:left;
  2915. text-transform:none;
  2916. background-color:transparent;
  2917. border-color:transparent;
  2918. }
  2919. #u19001_input.disabled {
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:161px;
  2924. height:33px;
  2925. padding:2px 2px 2px 2px;
  2926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:14px;
  2930. letter-spacing:normal;
  2931. color:#D7D7D7;
  2932. vertical-align:none;
  2933. text-align:left;
  2934. text-transform:none;
  2935. background-color:transparent;
  2936. border-color:transparent;
  2937. }
  2938. #u19001_input.hint.disabled {
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:161px;
  2943. height:33px;
  2944. padding:2px 2px 2px 2px;
  2945. font-family:"Microsoft YaHei", sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:14px;
  2949. letter-spacing:normal;
  2950. color:#AAAAAA;
  2951. vertical-align:none;
  2952. text-align:left;
  2953. text-transform:none;
  2954. background-color:transparent;
  2955. border-color:transparent;
  2956. }
  2957. #u19001_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:161px;
  2963. height:33px;
  2964. background:inherit;
  2965. background-color:rgba(242, 242, 242, 1);
  2966. border-radius:0px;
  2967. filter:drop-shadow(none);
  2968. transition:none;
  2969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:14px;
  2973. color:#D7D7D7;
  2974. }
  2975. #u19001 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:144px;
  2979. top:366px;
  2980. width:161px;
  2981. height:33px;
  2982. display:flex;
  2983. transition:none;
  2984. transform-origin:50% 50%;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. color:#D7D7D7;
  2990. }
  2991. #u19001 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u19001_div.hint {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:161px;
  3004. height:33px;
  3005. background:inherit;
  3006. background-color:rgba(242, 242, 242, 1);
  3007. border-radius:0px;
  3008. filter:drop-shadow(none);
  3009. transition:none;
  3010. font-family:"Microsoft YaHei", sans-serif;
  3011. font-weight:400;
  3012. font-style:normal;
  3013. font-size:14px;
  3014. color:#D7D7D7;
  3015. }
  3016. #u19001.hint {
  3017. }
  3018. #u19001_div.disabled {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:161px;
  3024. height:33px;
  3025. background:inherit;
  3026. background-color:rgba(240, 240, 240, 1);
  3027. border-radius:0px;
  3028. filter:drop-shadow(none);
  3029. transition:none;
  3030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:14px;
  3034. color:#D7D7D7;
  3035. }
  3036. #u19001.disabled {
  3037. }
  3038. #u19001_div.hint.disabled {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:161px;
  3044. height:33px;
  3045. background:inherit;
  3046. background-color:rgba(240, 240, 240, 1);
  3047. border-radius:0px;
  3048. filter:drop-shadow(none);
  3049. transition:none;
  3050. font-family:"Microsoft YaHei", sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:14px;
  3054. color:#D7D7D7;
  3055. }
  3056. #u19001.hint.disabled {
  3057. }
  3058. #u19002_div {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:82px;
  3064. height:40px;
  3065. background:inherit;
  3066. background-color:rgba(255, 255, 255, 0);
  3067. border-left:0px;
  3068. border-top:0px;
  3069. border-right:0px;
  3070. border-radius:0px;
  3071. border-bottom-right-radius:0px;
  3072. border-bottom-left-radius:0px;
  3073. filter:drop-shadow(none);
  3074. transition:none;
  3075. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3076. font-weight:500;
  3077. font-style:normal;
  3078. font-size:18px;
  3079. }
  3080. #u19002 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:136px;
  3084. top:153px;
  3085. width:82px;
  3086. height:40px;
  3087. display:flex;
  3088. transition:none;
  3089. transform-origin:50% 50%;
  3090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3091. font-weight:500;
  3092. font-style:normal;
  3093. font-size:18px;
  3094. }
  3095. #u19002 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:0px 0px 0px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u19002_text {
  3103. border-width:0px;
  3104. white-space:nowrap;
  3105. text-transform:none;
  3106. }
  3107. #u19003 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:0px;
  3113. height:0px;
  3114. }
  3115. #u19004_div {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:430px;
  3121. height:40px;
  3122. background:inherit;
  3123. background-color:rgba(255, 255, 255, 1);
  3124. box-sizing:border-box;
  3125. border-width:1px;
  3126. border-style:solid;
  3127. border-color:rgba(215, 215, 215, 1);
  3128. border-radius:4px;
  3129. filter:drop-shadow(none);
  3130. transition:none;
  3131. font-size:14px;
  3132. }
  3133. #u19004 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:136px;
  3137. top:203px;
  3138. width:430px;
  3139. height:40px;
  3140. display:flex;
  3141. transition:none;
  3142. transform-origin:50% 50%;
  3143. font-size:14px;
  3144. }
  3145. #u19004 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 2px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u19004_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. visibility:hidden;
  3157. }
  3158. #u19005_input {
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:417px;
  3163. height:31px;
  3164. padding:2px 2px 2px 2px;
  3165. font-family:'ArialMT', 'Arial', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:14px;
  3169. letter-spacing:normal;
  3170. color:#AAAAAA;
  3171. vertical-align:none;
  3172. text-align:left;
  3173. text-transform:none;
  3174. background-color:transparent;
  3175. border-color:transparent;
  3176. }
  3177. #u19005_input.disabled {
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:417px;
  3182. height:31px;
  3183. padding:2px 2px 2px 2px;
  3184. font-family:'ArialMT', 'Arial', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:14px;
  3188. letter-spacing:normal;
  3189. color:#AAAAAA;
  3190. vertical-align:none;
  3191. text-align:left;
  3192. text-transform:none;
  3193. background-color:transparent;
  3194. border-color:transparent;
  3195. }
  3196. #u19005_div {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:417px;
  3202. height:31px;
  3203. background:inherit;
  3204. background-color:rgba(255, 255, 255, 1);
  3205. border-radius:0px;
  3206. filter:drop-shadow(none);
  3207. transition:none;
  3208. font-size:14px;
  3209. color:#AAAAAA;
  3210. }
  3211. #u19005 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:142px;
  3215. top:206px;
  3216. width:417px;
  3217. height:31px;
  3218. display:flex;
  3219. transition:none;
  3220. transform-origin:50% 50%;
  3221. font-size:14px;
  3222. color:#AAAAAA;
  3223. }
  3224. #u19005 .text {
  3225. position:absolute;
  3226. align-self:flex-start;
  3227. padding:2px 2px 2px 2px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u19005_div.disabled {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:417px;
  3237. height:31px;
  3238. background:inherit;
  3239. background-color:rgba(240, 240, 240, 1);
  3240. border-radius:0px;
  3241. filter:drop-shadow(none);
  3242. transition:none;
  3243. font-size:14px;
  3244. color:#AAAAAA;
  3245. }
  3246. #u19005.disabled {
  3247. }
  3248. .u19005_input_option {
  3249. font-size:14px;
  3250. }
  3251. #u19006_div {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:57px;
  3257. height:40px;
  3258. background:inherit;
  3259. background-color:rgba(255, 255, 255, 0);
  3260. border-left:0px;
  3261. border-top:0px;
  3262. border-right:0px;
  3263. border-radius:0px;
  3264. border-bottom-right-radius:0px;
  3265. border-bottom-left-radius:0px;
  3266. filter:drop-shadow(none);
  3267. transition:none;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:14px;
  3272. }
  3273. #u19006 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:366px;
  3277. top:591px;
  3278. width:57px;
  3279. height:40px;
  3280. display:flex;
  3281. transition:none;
  3282. transform-origin:50% 50%;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:14px;
  3287. }
  3288. #u19006 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:0px 0px 0px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u19006_text {
  3296. border-width:0px;
  3297. white-space:nowrap;
  3298. text-transform:none;
  3299. }
  3300. #u19007 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:0px;
  3306. height:0px;
  3307. }
  3308. #u19008_div {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:200px;
  3314. height:40px;
  3315. background:inherit;
  3316. background-color:rgba(255, 255, 255, 1);
  3317. box-sizing:border-box;
  3318. border-width:1px;
  3319. border-style:solid;
  3320. border-color:rgba(215, 215, 215, 1);
  3321. border-radius:4px;
  3322. filter:drop-shadow(none);
  3323. transition:none;
  3324. font-size:14px;
  3325. }
  3326. #u19008 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:366px;
  3330. top:631px;
  3331. width:200px;
  3332. height:40px;
  3333. display:flex;
  3334. transition:none;
  3335. transform-origin:50% 50%;
  3336. font-size:14px;
  3337. }
  3338. #u19008 .text {
  3339. position:absolute;
  3340. align-self:center;
  3341. padding:2px 2px 2px 2px;
  3342. box-sizing:border-box;
  3343. width:100%;
  3344. }
  3345. #u19008_text {
  3346. border-width:0px;
  3347. word-wrap:break-word;
  3348. text-transform:none;
  3349. visibility:hidden;
  3350. }
  3351. #u19009_input {
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:191px;
  3356. height:31px;
  3357. padding:2px 2px 2px 2px;
  3358. font-family:'ArialMT', 'Arial', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:14px;
  3362. letter-spacing:normal;
  3363. color:#AAAAAA;
  3364. vertical-align:none;
  3365. text-align:left;
  3366. text-transform:none;
  3367. background-color:transparent;
  3368. border-color:transparent;
  3369. }
  3370. #u19009_input.disabled {
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:191px;
  3375. height:31px;
  3376. padding:2px 2px 2px 2px;
  3377. font-family:'ArialMT', 'Arial', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:14px;
  3381. letter-spacing:normal;
  3382. color:#AAAAAA;
  3383. vertical-align:none;
  3384. text-align:left;
  3385. text-transform:none;
  3386. background-color:transparent;
  3387. border-color:transparent;
  3388. }
  3389. #u19009_div {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:191px;
  3395. height:31px;
  3396. background:inherit;
  3397. background-color:rgba(255, 255, 255, 1);
  3398. border-radius:0px;
  3399. filter:drop-shadow(none);
  3400. transition:none;
  3401. font-size:14px;
  3402. color:#AAAAAA;
  3403. }
  3404. #u19009 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:372px;
  3408. top:634px;
  3409. width:191px;
  3410. height:31px;
  3411. display:flex;
  3412. transition:none;
  3413. transform-origin:50% 50%;
  3414. font-size:14px;
  3415. color:#AAAAAA;
  3416. }
  3417. #u19009 .text {
  3418. position:absolute;
  3419. align-self:flex-start;
  3420. padding:2px 2px 2px 2px;
  3421. box-sizing:border-box;
  3422. width:100%;
  3423. }
  3424. #u19009_div.disabled {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:191px;
  3430. height:31px;
  3431. background:inherit;
  3432. background-color:rgba(240, 240, 240, 1);
  3433. border-radius:0px;
  3434. filter:drop-shadow(none);
  3435. transition:none;
  3436. font-size:14px;
  3437. color:#AAAAAA;
  3438. }
  3439. #u19009.disabled {
  3440. }
  3441. .u19009_input_option {
  3442. font-size:14px;
  3443. }
  3444. #u19010 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:0px;
  3450. height:0px;
  3451. }
  3452. #u19011_div {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:427px;
  3458. height:80px;
  3459. background:inherit;
  3460. background-color:rgba(255, 255, 255, 1);
  3461. box-sizing:border-box;
  3462. border-width:1px;
  3463. border-style:solid;
  3464. border-color:rgba(201, 201, 201, 1);
  3465. border-radius:4px;
  3466. filter:drop-shadow(none);
  3467. transition:none;
  3468. font-family:"Microsoft YaHei", sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:14px;
  3472. color:#CCCCCC;
  3473. text-align:left;
  3474. }
  3475. #u19011 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:136px;
  3479. top:986px;
  3480. width:427px;
  3481. height:80px;
  3482. display:flex;
  3483. transition:none;
  3484. transform-origin:50% 50%;
  3485. font-family:"Microsoft YaHei", sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:14px;
  3489. color:#CCCCCC;
  3490. text-align:left;
  3491. }
  3492. #u19011 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 8px 2px 8px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u19011_text {
  3500. border-width:0px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u19012_input {
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:389px;
  3510. height:33px;
  3511. padding:2px 2px 2px 2px;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:14px;
  3516. letter-spacing:normal;
  3517. color:#D7D7D7;
  3518. vertical-align:none;
  3519. text-align:left;
  3520. text-transform:none;
  3521. background-color:transparent;
  3522. border-color:transparent;
  3523. }
  3524. #u19012_input.hint {
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:389px;
  3529. height:33px;
  3530. padding:2px 2px 2px 2px;
  3531. font-family:"Microsoft YaHei", sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:14px;
  3535. letter-spacing:normal;
  3536. color:#AAAAAA;
  3537. vertical-align:none;
  3538. text-align:left;
  3539. text-transform:none;
  3540. background-color:transparent;
  3541. border-color:transparent;
  3542. }
  3543. #u19012_input.disabled {
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:389px;
  3548. height:33px;
  3549. padding:2px 2px 2px 2px;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:14px;
  3554. letter-spacing:normal;
  3555. color:#D7D7D7;
  3556. vertical-align:none;
  3557. text-align:left;
  3558. text-transform:none;
  3559. background-color:transparent;
  3560. border-color:transparent;
  3561. }
  3562. #u19012_input.hint.disabled {
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:389px;
  3567. height:33px;
  3568. padding:2px 2px 2px 2px;
  3569. font-family:"Microsoft YaHei", sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:14px;
  3573. letter-spacing:normal;
  3574. color:#AAAAAA;
  3575. vertical-align:none;
  3576. text-align:left;
  3577. text-transform:none;
  3578. background-color:transparent;
  3579. border-color:transparent;
  3580. }
  3581. #u19012_div {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:389px;
  3587. height:33px;
  3588. background:inherit;
  3589. background-color:rgba(255, 255, 255, 0);
  3590. border-radius:0px;
  3591. filter:drop-shadow(none);
  3592. transition:none;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:14px;
  3597. color:#D7D7D7;
  3598. }
  3599. #u19012 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:153px;
  3603. top:989px;
  3604. width:389px;
  3605. height:33px;
  3606. display:flex;
  3607. transition:none;
  3608. transform-origin:50% 50%;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:14px;
  3613. color:#D7D7D7;
  3614. }
  3615. #u19012 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 2px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u19012_div.hint {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:389px;
  3628. height:33px;
  3629. background:inherit;
  3630. background-color:rgba(255, 255, 255, 0);
  3631. border-radius:0px;
  3632. filter:drop-shadow(none);
  3633. transition:none;
  3634. font-family:"Microsoft YaHei", sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:14px;
  3638. color:#D7D7D7;
  3639. }
  3640. #u19012.hint {
  3641. }
  3642. #u19012_div.disabled {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:389px;
  3648. height:33px;
  3649. background:inherit;
  3650. background-color:rgba(240, 240, 240, 1);
  3651. border-radius:0px;
  3652. filter:drop-shadow(none);
  3653. transition:none;
  3654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:14px;
  3658. color:#D7D7D7;
  3659. }
  3660. #u19012.disabled {
  3661. }
  3662. #u19012_div.hint.disabled {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:389px;
  3668. height:33px;
  3669. background:inherit;
  3670. background-color:rgba(240, 240, 240, 1);
  3671. border-radius:0px;
  3672. filter:drop-shadow(none);
  3673. transition:none;
  3674. font-family:"Microsoft YaHei", sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:14px;
  3678. color:#D7D7D7;
  3679. }
  3680. #u19012.hint.disabled {
  3681. }
  3682. #u19013_div {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:71px;
  3688. height:40px;
  3689. background:inherit;
  3690. background-color:rgba(255, 255, 255, 0);
  3691. border-left:0px;
  3692. border-top:0px;
  3693. border-right:0px;
  3694. border-radius:0px;
  3695. border-bottom-right-radius:0px;
  3696. border-bottom-left-radius:0px;
  3697. filter:drop-shadow(none);
  3698. transition:none;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:14px;
  3703. }
  3704. #u19013 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:136px;
  3708. top:946px;
  3709. width:71px;
  3710. height:40px;
  3711. display:flex;
  3712. transition:none;
  3713. transform-origin:50% 50%;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:14px;
  3718. }
  3719. #u19013 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:0px 0px 0px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u19013_text {
  3727. border-width:0px;
  3728. white-space:nowrap;
  3729. text-transform:none;
  3730. }
  3731. #u19014_div {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:149px;
  3737. height:40px;
  3738. background:inherit;
  3739. background-color:rgba(255, 255, 255, 0);
  3740. border-left:0px;
  3741. border-top:0px;
  3742. border-right:0px;
  3743. border-radius:0px;
  3744. border-bottom-right-radius:0px;
  3745. border-bottom-left-radius:0px;
  3746. filter:drop-shadow(none);
  3747. transition:none;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. }
  3752. #u19014 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:136px;
  3756. top:775px;
  3757. width:149px;
  3758. height:40px;
  3759. display:flex;
  3760. transition:none;
  3761. transform-origin:50% 50%;
  3762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. }
  3766. #u19014 .text {
  3767. position:absolute;
  3768. align-self:center;
  3769. padding:0px 0px 0px 0px;
  3770. box-sizing:border-box;
  3771. width:100%;
  3772. }
  3773. #u19014_text {
  3774. border-width:0px;
  3775. white-space:nowrap;
  3776. text-transform:none;
  3777. }
  3778. #u19015 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:136px;
  3782. top:815px;
  3783. width:361px;
  3784. height:121px;
  3785. display:flex;
  3786. transition:none;
  3787. }
  3788. #u19015 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 2px 2px 2px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u19015_img {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:361px;
  3801. height:121px;
  3802. }
  3803. #u19015_text {
  3804. border-width:0px;
  3805. word-wrap:break-word;
  3806. text-transform:none;
  3807. visibility:hidden;
  3808. }
  3809. #u19016 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:0px;
  3815. height:0px;
  3816. }
  3817. #u19017 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:0px;
  3823. height:0px;
  3824. }
  3825. #u19018_div {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:440px;
  3831. height:200px;
  3832. background:inherit;
  3833. background-color:rgba(255, 255, 255, 1);
  3834. box-sizing:border-box;
  3835. border-width:1px;
  3836. border-style:solid;
  3837. border-color:rgba(242, 242, 242, 1);
  3838. border-radius:4px;
  3839. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  3840. transition:none;
  3841. font-family:"Microsoft YaHei", sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. }
  3845. #u19018 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:409px;
  3849. top:910px;
  3850. width:440px;
  3851. height:200px;
  3852. display:flex;
  3853. transition:none;
  3854. transform-origin:50% 50%;
  3855. font-family:"Microsoft YaHei", sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. }
  3859. #u19018 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 2px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u19018_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u19019_div {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:127px;
  3878. height:21px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 0);
  3881. border-radius:0px;
  3882. filter:drop-shadow(none);
  3883. transition:none;
  3884. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3885. font-weight:650;
  3886. font-style:normal;
  3887. font-size:18px;
  3888. color:#000000;
  3889. line-height:22px;
  3890. }
  3891. #u19019 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:469px;
  3895. top:935px;
  3896. width:127px;
  3897. height:21px;
  3898. display:flex;
  3899. transition:none;
  3900. transform-origin:50% 50%;
  3901. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3902. font-weight:650;
  3903. font-style:normal;
  3904. font-size:18px;
  3905. color:#000000;
  3906. line-height:22px;
  3907. }
  3908. #u19019 .text {
  3909. position:absolute;
  3910. align-self:flex-start;
  3911. padding:0px 0px 0px 0px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u19019_text {
  3916. border-width:0px;
  3917. white-space:nowrap;
  3918. text-transform:none;
  3919. }
  3920. #u19020_div {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:61px;
  3926. height:32px;
  3927. background:inherit;
  3928. background-color:rgba(24, 144, 255, 1);
  3929. border-radius:4px;
  3930. filter:drop-shadow(none);
  3931. transition:none;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:14px;
  3936. color:#FFFFFF;
  3937. }
  3938. #u19020 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:768px;
  3942. top:1052px;
  3943. width:61px;
  3944. height:32px;
  3945. display:flex;
  3946. transition:none;
  3947. transform-origin:50% 50%;
  3948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3949. font-weight:400;
  3950. font-style:normal;
  3951. font-size:14px;
  3952. color:#FFFFFF;
  3953. }
  3954. #u19020 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:2px 16px 2px 16px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u19020_text {
  3962. border-width:0px;
  3963. white-space:nowrap;
  3964. text-transform:none;
  3965. }
  3966. #u19021 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:438px;
  3970. top:939px;
  3971. width:20px;
  3972. height:20px;
  3973. display:flex;
  3974. transition:none;
  3975. }
  3976. #u19021 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 2px 2px 2px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u19021_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:20px;
  3989. height:20px;
  3990. }
  3991. #u19021_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u19022_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:360px;
  4003. height:66px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 0);
  4006. border-radius:0px;
  4007. filter:drop-shadow(none);
  4008. transition:none;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:14px;
  4013. color:#7F7F7F;
  4014. line-height:22px;
  4015. }
  4016. #u19022 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:469px;
  4020. top:969px;
  4021. width:360px;
  4022. height:66px;
  4023. display:flex;
  4024. transition:none;
  4025. transform-origin:50% 50%;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:14px;
  4030. color:#7F7F7F;
  4031. line-height:22px;
  4032. }
  4033. #u19022 .text {
  4034. position:absolute;
  4035. align-self:flex-start;
  4036. padding:0px 0px 0px 0px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u19022_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. }
  4045. #u19023_div {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:66px;
  4051. height:32px;
  4052. background:inherit;
  4053. background-color:rgba(255, 255, 255, 1);
  4054. box-sizing:border-box;
  4055. border-width:1px;
  4056. border-style:solid;
  4057. border-color:rgba(217, 217, 217, 1);
  4058. border-radius:4px;
  4059. filter:drop-shadow(none);
  4060. transition:none;
  4061. font-family:"Microsoft YaHei", sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:14px;
  4065. color:rgba(0, 0, 0, 0.6470588235294118);
  4066. line-height:21px;
  4067. }
  4068. #u19023 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:685px;
  4072. top:1052px;
  4073. width:66px;
  4074. height:32px;
  4075. display:flex;
  4076. transition:none;
  4077. transform-origin:50% 50%;
  4078. font-family:"Microsoft YaHei", sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:14px;
  4082. color:rgba(0, 0, 0, 0.6470588235294118);
  4083. line-height:21px;
  4084. }
  4085. #u19023 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 16px 2px 16px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u19023_text {
  4093. border-width:0px;
  4094. white-space:nowrap;
  4095. text-transform:none;
  4096. }
  4097. #u19024_div {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:483px;
  4103. height:20px;
  4104. background:inherit;
  4105. background-color:rgba(255, 255, 255, 0);
  4106. border-left:0px;
  4107. border-top:0px;
  4108. border-right:0px;
  4109. border-radius:0px;
  4110. border-bottom-right-radius:0px;
  4111. border-bottom-left-radius:0px;
  4112. filter:drop-shadow(none);
  4113. transition:none;
  4114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:14px;
  4118. color:#D9001B;
  4119. }
  4120. #u19024 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:321px;
  4124. top:1222px;
  4125. width:483px;
  4126. height:20px;
  4127. display:flex;
  4128. transition:none;
  4129. transform-origin:50% 50%;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:14px;
  4134. color:#D9001B;
  4135. }
  4136. #u19024 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:0px 0px 0px 0px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u19024_text {
  4144. border-width:0px;
  4145. white-space:nowrap;
  4146. text-transform:none;
  4147. }
  4148. #u19025_div {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:554px;
  4154. height:17px;
  4155. background:inherit;
  4156. background-color:rgba(255, 255, 255, 0);
  4157. border-left:0px;
  4158. border-top:0px;
  4159. border-right:0px;
  4160. border-radius:0px;
  4161. border-bottom-right-radius:0px;
  4162. border-bottom-left-radius:0px;
  4163. filter:drop-shadow(none);
  4164. transition:none;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. color:#D9001B;
  4170. }
  4171. #u19025 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:321px;
  4175. top:148px;
  4176. width:554px;
  4177. height:17px;
  4178. display:flex;
  4179. transition:none;
  4180. transform-origin:50% 50%;
  4181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. color:#D9001B;
  4186. }
  4187. #u19025 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:0px 0px 0px 0px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u19025_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. }
  4199. #u19026_div {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:320px;
  4205. height:85px;
  4206. background:inherit;
  4207. background-color:rgba(255, 255, 255, 0);
  4208. border-left:0px;
  4209. border-top:0px;
  4210. border-right:0px;
  4211. border-radius:0px;
  4212. border-bottom-right-radius:0px;
  4213. border-bottom-left-radius:0px;
  4214. filter:drop-shadow(none);
  4215. transition:none;
  4216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:12px;
  4220. color:#D9001B;
  4221. }
  4222. #u19026 {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:577px;
  4226. top:722px;
  4227. width:320px;
  4228. height:85px;
  4229. display:flex;
  4230. transition:none;
  4231. transform-origin:50% 50%;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:12px;
  4236. color:#D9001B;
  4237. }
  4238. #u19026 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:0px 0px 0px 0px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u19026_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. }
  4250. #u19027_div {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:800px;
  4256. height:60px;
  4257. background:inherit;
  4258. background-color:rgba(255, 255, 255, 1);
  4259. box-sizing:border-box;
  4260. border-width:1px;
  4261. border-style:solid;
  4262. border-color:rgba(242, 242, 242, 1);
  4263. border-radius:0px;
  4264. filter:drop-shadow(none);
  4265. transition:none;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:14px;
  4270. color:#AAAAAA;
  4271. text-align:center;
  4272. line-height:30px;
  4273. }
  4274. #u19027 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:1008px;
  4278. top:73px;
  4279. width:800px;
  4280. height:60px;
  4281. display:flex;
  4282. transition:none;
  4283. transform-origin:50% 50%;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:14px;
  4288. color:#AAAAAA;
  4289. text-align:center;
  4290. line-height:30px;
  4291. }
  4292. #u19027 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:5px 10px 5px 10px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u19027_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u19028_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:47px;
  4311. height:35px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border-top:0px;
  4315. border-right:0px;
  4316. border-bottom:0px;
  4317. border-radius:0px;
  4318. border-top-left-radius:0px;
  4319. border-bottom-left-radius:0px;
  4320. filter:drop-shadow(none);
  4321. transition:none;
  4322. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4323. font-weight:500;
  4324. font-style:normal;
  4325. font-size:18px;
  4326. }
  4327. #u19028 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:1039px;
  4331. top:86px;
  4332. width:47px;
  4333. height:35px;
  4334. display:flex;
  4335. transition:none;
  4336. transform-origin:50% 50%;
  4337. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4338. font-weight:500;
  4339. font-style:normal;
  4340. font-size:18px;
  4341. }
  4342. #u19028 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:5px 10px 5px 0px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u19028_text {
  4350. border-width:0px;
  4351. white-space:nowrap;
  4352. text-transform:none;
  4353. }
  4354. #u19029_div {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:800px;
  4360. height:1069px;
  4361. background:inherit;
  4362. background-color:rgba(255, 255, 255, 1);
  4363. box-sizing:border-box;
  4364. border-width:1px;
  4365. border-style:solid;
  4366. border-color:rgba(242, 242, 242, 1);
  4367. border-radius:0px;
  4368. filter:drop-shadow(none);
  4369. transition:none;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:14px;
  4374. color:#AAAAAA;
  4375. text-align:center;
  4376. line-height:30px;
  4377. }
  4378. #u19029 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:1008px;
  4382. top:133px;
  4383. width:800px;
  4384. height:1069px;
  4385. display:flex;
  4386. transition:none;
  4387. transform-origin:50% 50%;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:14px;
  4392. color:#AAAAAA;
  4393. text-align:center;
  4394. line-height:30px;
  4395. }
  4396. #u19029 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:5px 10px 5px 10px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u19029_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. visibility:hidden;
  4408. }
  4409. #u19030 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:0px;
  4415. height:0px;
  4416. }
  4417. #u19031_div {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:800px;
  4423. height:60px;
  4424. background:inherit;
  4425. background-color:rgba(255, 255, 255, 1);
  4426. box-sizing:border-box;
  4427. border-width:1px;
  4428. border-style:solid;
  4429. border-color:rgba(215, 215, 215, 1);
  4430. border-radius:0px;
  4431. filter:drop-shadow(none);
  4432. transition:none;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:14px;
  4437. color:#AAAAAA;
  4438. text-align:center;
  4439. line-height:30px;
  4440. }
  4441. #u19031 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:1008px;
  4445. top:1142px;
  4446. width:800px;
  4447. height:60px;
  4448. display:flex;
  4449. transition:none;
  4450. transform-origin:50% 50%;
  4451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4452. font-weight:400;
  4453. font-style:normal;
  4454. font-size:14px;
  4455. color:#AAAAAA;
  4456. text-align:center;
  4457. line-height:30px;
  4458. }
  4459. #u19031 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:5px 10px 5px 10px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u19031_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u19032 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:1688px;
  4476. top:1157px;
  4477. width:80px;
  4478. height:30px;
  4479. display:flex;
  4480. transition:none;
  4481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:14px;
  4485. color:#FFFFFF;
  4486. }
  4487. #u19032 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 2px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u19032_img {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:80px;
  4500. height:30px;
  4501. }
  4502. #u19032_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. }
  4507. #u19033_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:80px;
  4513. height:30px;
  4514. background:inherit;
  4515. background-color:rgba(255, 255, 255, 1);
  4516. box-sizing:border-box;
  4517. border-width:1px;
  4518. border-style:solid;
  4519. border-color:rgba(170, 170, 170, 1);
  4520. border-radius:4px;
  4521. filter:drop-shadow(none);
  4522. transition:none;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:14px;
  4527. }
  4528. #u19033 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:1598px;
  4532. top:1157px;
  4533. width:80px;
  4534. height:30px;
  4535. display:flex;
  4536. transition:none;
  4537. transform-origin:50% 50%;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:14px;
  4542. }
  4543. #u19033 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 2px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u19033_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. }
  4555. #u19034_div {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:40px;
  4561. height:40px;
  4562. background:inherit;
  4563. background-color:rgba(255, 255, 255, 0);
  4564. border-top:0px;
  4565. border-right:0px;
  4566. border-bottom:0px;
  4567. border-radius:0px;
  4568. border-top-left-radius:0px;
  4569. border-bottom-left-radius:0px;
  4570. filter:drop-shadow(none);
  4571. transition:none;
  4572. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4573. font-weight:500;
  4574. font-style:normal;
  4575. font-size:24px;
  4576. text-align:center;
  4577. }
  4578. #u19034 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:1768px;
  4582. top:73px;
  4583. width:40px;
  4584. height:40px;
  4585. display:flex;
  4586. transition:none;
  4587. transform-origin:50% 50%;
  4588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4589. font-weight:500;
  4590. font-style:normal;
  4591. font-size:24px;
  4592. text-align:center;
  4593. }
  4594. #u19034 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:5px 10px 5px 0px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u19034_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. }
  4606. #u19035_div {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:57px;
  4612. height:40px;
  4613. background:inherit;
  4614. background-color:rgba(255, 255, 255, 0);
  4615. border-left:0px;
  4616. border-top:0px;
  4617. border-right:0px;
  4618. border-radius:0px;
  4619. border-bottom-right-radius:0px;
  4620. border-bottom-left-radius:0px;
  4621. filter:drop-shadow(none);
  4622. transition:none;
  4623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4624. font-weight:400;
  4625. font-style:normal;
  4626. font-size:14px;
  4627. }
  4628. #u19035 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:1554px;
  4632. top:215px;
  4633. width:57px;
  4634. height:40px;
  4635. display:flex;
  4636. transition:none;
  4637. transform-origin:50% 50%;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:14px;
  4642. }
  4643. #u19035 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:0px 0px 0px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u19035_text {
  4651. border-width:0px;
  4652. white-space:nowrap;
  4653. text-transform:none;
  4654. }
  4655. #u19036_div {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:180px;
  4661. height:180px;
  4662. background:inherit;
  4663. background-color:rgba(255, 255, 255, 1);
  4664. box-sizing:border-box;
  4665. border-width:1px;
  4666. border-style:solid;
  4667. border-color:rgba(201, 201, 201, 1);
  4668. border-radius:4px;
  4669. filter:drop-shadow(none);
  4670. transition:none;
  4671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. font-size:38px;
  4675. }
  4676. #u19036 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:1554px;
  4680. top:255px;
  4681. width:180px;
  4682. height:180px;
  4683. display:flex;
  4684. transition:none;
  4685. transform-origin:50% 50%;
  4686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:38px;
  4690. }
  4691. #u19036 .text {
  4692. position:absolute;
  4693. align-self:center;
  4694. padding:2px 8px 2px 8px;
  4695. box-sizing:border-box;
  4696. width:100%;
  4697. }
  4698. #u19036_text {
  4699. border-width:0px;
  4700. word-wrap:break-word;
  4701. text-transform:none;
  4702. }
  4703. #u19037 label {
  4704. left:0px;
  4705. width:100%;
  4706. height:100%;
  4707. }
  4708. #u19037_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:3px;
  4713. width:12px;
  4714. height:12px;
  4715. }
  4716. #u19037 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:1419px;
  4720. top:495px;
  4721. width:55px;
  4722. height:18px;
  4723. display:flex;
  4724. transition:none;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. }
  4729. #u19037 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:0px 2px 0px 2px;
  4733. box-sizing:border-box;
  4734. }
  4735. #u19037_img.selected {
  4736. }
  4737. #u19037.selected {
  4738. }
  4739. #u19037_img.disabled {
  4740. }
  4741. #u19037.disabled {
  4742. }
  4743. #u19037_img.selected.error {
  4744. }
  4745. #u19037.selected.error {
  4746. }
  4747. #u19037_img.selected.hint {
  4748. }
  4749. #u19037.selected.hint {
  4750. }
  4751. #u19037_img.selected.error.hint {
  4752. }
  4753. #u19037.selected.error.hint {
  4754. }
  4755. #u19037_img.mouseOver.selected {
  4756. }
  4757. #u19037.mouseOver.selected {
  4758. }
  4759. #u19037_img.mouseOver.selected.error {
  4760. }
  4761. #u19037.mouseOver.selected.error {
  4762. }
  4763. #u19037_img.mouseOver.selected.hint {
  4764. }
  4765. #u19037.mouseOver.selected.hint {
  4766. }
  4767. #u19037_img.mouseOver.selected.error.hint {
  4768. }
  4769. #u19037.mouseOver.selected.error.hint {
  4770. }
  4771. #u19037_img.mouseDown.selected {
  4772. }
  4773. #u19037.mouseDown.selected {
  4774. }
  4775. #u19037_img.mouseDown.selected.error {
  4776. }
  4777. #u19037.mouseDown.selected.error {
  4778. }
  4779. #u19037_img.mouseDown.selected.hint {
  4780. }
  4781. #u19037.mouseDown.selected.hint {
  4782. }
  4783. #u19037_img.mouseDown.selected.error.hint {
  4784. }
  4785. #u19037.mouseDown.selected.error.hint {
  4786. }
  4787. #u19037_img.mouseOver.mouseDown.selected {
  4788. }
  4789. #u19037.mouseOver.mouseDown.selected {
  4790. }
  4791. #u19037_img.mouseOver.mouseDown.selected.error {
  4792. }
  4793. #u19037.mouseOver.mouseDown.selected.error {
  4794. }
  4795. #u19037_img.mouseOver.mouseDown.selected.hint {
  4796. }
  4797. #u19037.mouseOver.mouseDown.selected.hint {
  4798. }
  4799. #u19037_img.mouseOver.mouseDown.selected.error.hint {
  4800. }
  4801. #u19037.mouseOver.mouseDown.selected.error.hint {
  4802. }
  4803. #u19037_img.focused.selected {
  4804. }
  4805. #u19037.focused.selected {
  4806. }
  4807. #u19037_img.focused.selected.error {
  4808. }
  4809. #u19037.focused.selected.error {
  4810. }
  4811. #u19037_img.focused.selected.hint {
  4812. }
  4813. #u19037.focused.selected.hint {
  4814. }
  4815. #u19037_img.focused.selected.error.hint {
  4816. }
  4817. #u19037.focused.selected.error.hint {
  4818. }
  4819. #u19037_img.selected.disabled {
  4820. }
  4821. #u19037.selected.disabled {
  4822. }
  4823. #u19037_img.selected.hint.disabled {
  4824. }
  4825. #u19037.selected.hint.disabled {
  4826. }
  4827. #u19037_img.selected.error.disabled {
  4828. }
  4829. #u19037.selected.error.disabled {
  4830. }
  4831. #u19037_img.selected.error.hint.disabled {
  4832. }
  4833. #u19037.selected.error.hint.disabled {
  4834. }
  4835. #u19037_text {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:12px;
  4839. top:0px;
  4840. width:43px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. }
  4844. #u19037_input {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:0px;
  4850. height:0px;
  4851. opacity:0;
  4852. }
  4853. #u19038_div {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:0px;
  4857. top:0px;
  4858. width:180px;
  4859. height:40px;
  4860. background:inherit;
  4861. background-color:rgba(24, 144, 255, 1);
  4862. border-radius:4px;
  4863. filter:drop-shadow(none);
  4864. transition:none;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:14px;
  4869. color:#FFFFFF;
  4870. }
  4871. #u19038 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:1554px;
  4875. top:458px;
  4876. width:180px;
  4877. height:40px;
  4878. display:flex;
  4879. transition:none;
  4880. transform-origin:50% 50%;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:14px;
  4885. color:#FFFFFF;
  4886. }
  4887. #u19038 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 2px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u19038_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. }
  4899. #u19039_div {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:180px;
  4905. height:40px;
  4906. background:inherit;
  4907. background-color:rgba(24, 144, 255, 1);
  4908. border-radius:4px;
  4909. filter:drop-shadow(none);
  4910. transition:none;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:14px;
  4915. color:#FFFFFF;
  4916. }
  4917. #u19039 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1554px;
  4921. top:518px;
  4922. width:180px;
  4923. height:40px;
  4924. display:flex;
  4925. transition:none;
  4926. transform-origin:50% 50%;
  4927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:14px;
  4931. color:#FFFFFF;
  4932. }
  4933. #u19039 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 2px 2px 2px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u19039_text {
  4941. border-width:0px;
  4942. word-wrap:break-word;
  4943. text-transform:none;
  4944. }
  4945. #u19040 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:0px;
  4951. height:0px;
  4952. }
  4953. #u19041 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:0px;
  4959. height:0px;
  4960. }
  4961. #u19042_div {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:380px;
  4967. height:160px;
  4968. background:inherit;
  4969. background-color:rgba(255, 255, 255, 1);
  4970. box-sizing:border-box;
  4971. border-width:1px;
  4972. border-style:solid;
  4973. border-color:rgba(242, 242, 242, 1);
  4974. border-radius:4px;
  4975. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  4976. transition:none;
  4977. font-family:"Microsoft YaHei", sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. }
  4981. #u19042 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:1502px;
  4985. top:918px;
  4986. width:380px;
  4987. height:160px;
  4988. display:flex;
  4989. transition:none;
  4990. transform-origin:50% 50%;
  4991. font-family:"Microsoft YaHei", sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. }
  4995. #u19042 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 2px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u19042_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u19043_div {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:163px;
  5014. height:21px;
  5015. background:inherit;
  5016. background-color:rgba(255, 255, 255, 0);
  5017. border-radius:0px;
  5018. filter:drop-shadow(none);
  5019. transition:none;
  5020. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5021. font-weight:650;
  5022. font-style:normal;
  5023. font-size:18px;
  5024. color:#000000;
  5025. line-height:22px;
  5026. }
  5027. #u19043 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:1562px;
  5031. top:947px;
  5032. width:163px;
  5033. height:21px;
  5034. display:flex;
  5035. transition:none;
  5036. transform-origin:50% 50%;
  5037. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5038. font-weight:650;
  5039. font-style:normal;
  5040. font-size:18px;
  5041. color:#000000;
  5042. line-height:22px;
  5043. }
  5044. #u19043 .text {
  5045. position:absolute;
  5046. align-self:flex-start;
  5047. padding:0px 0px 0px 0px;
  5048. box-sizing:border-box;
  5049. width:100%;
  5050. }
  5051. #u19043_text {
  5052. border-width:0px;
  5053. white-space:nowrap;
  5054. text-transform:none;
  5055. }
  5056. #u19044_div {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:61px;
  5062. height:32px;
  5063. background:inherit;
  5064. background-color:rgba(24, 144, 255, 1);
  5065. border-radius:4px;
  5066. filter:drop-shadow(none);
  5067. transition:none;
  5068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:14px;
  5072. color:#FFFFFF;
  5073. }
  5074. #u19044 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:1801px;
  5078. top:1019px;
  5079. width:61px;
  5080. height:32px;
  5081. display:flex;
  5082. transition:none;
  5083. transform-origin:50% 50%;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:14px;
  5088. color:#FFFFFF;
  5089. }
  5090. #u19044 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 16px 2px 16px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u19044_text {
  5098. border-width:0px;
  5099. white-space:nowrap;
  5100. text-transform:none;
  5101. }
  5102. #u19045 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:1531px;
  5106. top:947px;
  5107. width:20px;
  5108. height:20px;
  5109. display:flex;
  5110. transition:none;
  5111. }
  5112. #u19045 .text {
  5113. position:absolute;
  5114. align-self:center;
  5115. padding:2px 2px 2px 2px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u19045_img {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:20px;
  5125. height:20px;
  5126. }
  5127. #u19045_text {
  5128. border-width:0px;
  5129. word-wrap:break-word;
  5130. text-transform:none;
  5131. visibility:hidden;
  5132. }
  5133. #u19046_div {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:300px;
  5139. height:44px;
  5140. background:inherit;
  5141. background-color:rgba(255, 255, 255, 0);
  5142. border-radius:0px;
  5143. filter:drop-shadow(none);
  5144. transition:none;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:14px;
  5149. color:#7F7F7F;
  5150. line-height:22px;
  5151. }
  5152. #u19046 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:1562px;
  5156. top:977px;
  5157. width:300px;
  5158. height:44px;
  5159. display:flex;
  5160. transition:none;
  5161. transform-origin:50% 50%;
  5162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:14px;
  5166. color:#7F7F7F;
  5167. line-height:22px;
  5168. }
  5169. #u19046 .text {
  5170. position:absolute;
  5171. align-self:flex-start;
  5172. padding:0px 0px 0px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u19046_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. }
  5181. #u19047_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:66px;
  5187. height:32px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 1);
  5190. box-sizing:border-box;
  5191. border-width:1px;
  5192. border-style:solid;
  5193. border-color:rgba(217, 217, 217, 1);
  5194. border-radius:4px;
  5195. filter:drop-shadow(none);
  5196. transition:none;
  5197. font-family:"Microsoft YaHei", sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:14px;
  5201. color:rgba(0, 0, 0, 0.6470588235294118);
  5202. line-height:21px;
  5203. }
  5204. #u19047 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:1718px;
  5208. top:1019px;
  5209. width:66px;
  5210. height:32px;
  5211. display:flex;
  5212. transition:none;
  5213. transform-origin:50% 50%;
  5214. font-family:"Microsoft YaHei", sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:14px;
  5218. color:rgba(0, 0, 0, 0.6470588235294118);
  5219. line-height:21px;
  5220. }
  5221. #u19047 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:2px 16px 2px 16px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u19047_text {
  5229. border-width:0px;
  5230. white-space:nowrap;
  5231. text-transform:none;
  5232. }
  5233. #u19048_div {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:380px;
  5239. height:66px;
  5240. background:inherit;
  5241. background-color:rgba(255, 255, 255, 0);
  5242. border-radius:0px;
  5243. filter:drop-shadow(none);
  5244. transition:none;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. color:#D9001B;
  5250. line-height:22px;
  5251. }
  5252. #u19048 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:1502px;
  5256. top:845px;
  5257. width:380px;
  5258. height:66px;
  5259. display:flex;
  5260. transition:none;
  5261. transform-origin:50% 50%;
  5262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:14px;
  5266. color:#D9001B;
  5267. line-height:22px;
  5268. }
  5269. #u19048 .text {
  5270. position:absolute;
  5271. align-self:flex-start;
  5272. padding:0px 0px 0px 0px;
  5273. box-sizing:border-box;
  5274. width:100%;
  5275. }
  5276. #u19048_text {
  5277. border-width:0px;
  5278. word-wrap:break-word;
  5279. text-transform:none;
  5280. }
  5281. #u19049 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:0px;
  5287. height:0px;
  5288. }
  5289. #u19050 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:0px;
  5295. height:0px;
  5296. }
  5297. #u19051_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:380px;
  5303. height:170px;
  5304. background:inherit;
  5305. background-color:rgba(255, 255, 255, 1);
  5306. box-sizing:border-box;
  5307. border-width:1px;
  5308. border-style:solid;
  5309. border-color:rgba(242, 242, 242, 1);
  5310. border-radius:4px;
  5311. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5312. transition:none;
  5313. font-family:"Microsoft YaHei", sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. }
  5317. #u19051 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:1893px;
  5321. top:918px;
  5322. width:380px;
  5323. height:170px;
  5324. display:flex;
  5325. transition:none;
  5326. transform-origin:50% 50%;
  5327. font-family:"Microsoft YaHei", sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. }
  5331. #u19051 .text {
  5332. position:absolute;
  5333. align-self:center;
  5334. padding:2px 2px 2px 2px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u19051_text {
  5339. border-width:0px;
  5340. word-wrap:break-word;
  5341. text-transform:none;
  5342. visibility:hidden;
  5343. }
  5344. #u19052_div {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:163px;
  5350. height:21px;
  5351. background:inherit;
  5352. background-color:rgba(255, 255, 255, 0);
  5353. border-radius:0px;
  5354. filter:drop-shadow(none);
  5355. transition:none;
  5356. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5357. font-weight:650;
  5358. font-style:normal;
  5359. font-size:18px;
  5360. color:#000000;
  5361. line-height:22px;
  5362. }
  5363. #u19052 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1953px;
  5367. top:947px;
  5368. width:163px;
  5369. height:21px;
  5370. display:flex;
  5371. transition:none;
  5372. transform-origin:50% 50%;
  5373. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5374. font-weight:650;
  5375. font-style:normal;
  5376. font-size:18px;
  5377. color:#000000;
  5378. line-height:22px;
  5379. }
  5380. #u19052 .text {
  5381. position:absolute;
  5382. align-self:flex-start;
  5383. padding:0px 0px 0px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u19052_text {
  5388. border-width:0px;
  5389. white-space:nowrap;
  5390. text-transform:none;
  5391. }
  5392. #u19053_div {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:61px;
  5398. height:32px;
  5399. background:inherit;
  5400. background-color:rgba(24, 144, 255, 1);
  5401. border-radius:4px;
  5402. filter:drop-shadow(none);
  5403. transition:none;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:14px;
  5408. color:#FFFFFF;
  5409. }
  5410. #u19053 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:2192px;
  5414. top:1041px;
  5415. width:61px;
  5416. height:32px;
  5417. display:flex;
  5418. transition:none;
  5419. transform-origin:50% 50%;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:14px;
  5424. color:#FFFFFF;
  5425. }
  5426. #u19053 .text {
  5427. position:absolute;
  5428. align-self:center;
  5429. padding:2px 16px 2px 16px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u19053_text {
  5434. border-width:0px;
  5435. white-space:nowrap;
  5436. text-transform:none;
  5437. }
  5438. #u19054 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:1922px;
  5442. top:947px;
  5443. width:20px;
  5444. height:20px;
  5445. display:flex;
  5446. transition:none;
  5447. }
  5448. #u19054 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 2px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u19054_img {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:20px;
  5461. height:20px;
  5462. }
  5463. #u19054_text {
  5464. border-width:0px;
  5465. word-wrap:break-word;
  5466. text-transform:none;
  5467. visibility:hidden;
  5468. }
  5469. #u19055_div {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:0px;
  5473. top:0px;
  5474. width:300px;
  5475. height:44px;
  5476. background:inherit;
  5477. background-color:rgba(255, 255, 255, 0);
  5478. border-radius:0px;
  5479. filter:drop-shadow(none);
  5480. transition:none;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:14px;
  5485. color:#7F7F7F;
  5486. line-height:22px;
  5487. }
  5488. #u19055 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:1953px;
  5492. top:977px;
  5493. width:300px;
  5494. height:44px;
  5495. display:flex;
  5496. transition:none;
  5497. transform-origin:50% 50%;
  5498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5499. font-weight:400;
  5500. font-style:normal;
  5501. font-size:14px;
  5502. color:#7F7F7F;
  5503. line-height:22px;
  5504. }
  5505. #u19055 .text {
  5506. position:absolute;
  5507. align-self:flex-start;
  5508. padding:0px 0px 0px 0px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u19055_text {
  5513. border-width:0px;
  5514. word-wrap:break-word;
  5515. text-transform:none;
  5516. }
  5517. #u19056_div {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:66px;
  5523. height:32px;
  5524. background:inherit;
  5525. background-color:rgba(255, 255, 255, 1);
  5526. box-sizing:border-box;
  5527. border-width:1px;
  5528. border-style:solid;
  5529. border-color:rgba(217, 217, 217, 1);
  5530. border-radius:4px;
  5531. filter:drop-shadow(none);
  5532. transition:none;
  5533. font-family:"Microsoft YaHei", sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:14px;
  5537. color:rgba(0, 0, 0, 0.6470588235294118);
  5538. line-height:21px;
  5539. }
  5540. #u19056 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:2109px;
  5544. top:1041px;
  5545. width:66px;
  5546. height:32px;
  5547. display:flex;
  5548. transition:none;
  5549. transform-origin:50% 50%;
  5550. font-family:"Microsoft YaHei", sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:14px;
  5554. color:rgba(0, 0, 0, 0.6470588235294118);
  5555. line-height:21px;
  5556. }
  5557. #u19056 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:2px 16px 2px 16px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u19056_text {
  5565. border-width:0px;
  5566. white-space:nowrap;
  5567. text-transform:none;
  5568. }
  5569. #u19057_div {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:380px;
  5575. height:44px;
  5576. background:inherit;
  5577. background-color:rgba(255, 255, 255, 0);
  5578. border-radius:0px;
  5579. filter:drop-shadow(none);
  5580. transition:none;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:14px;
  5585. color:#D9001B;
  5586. line-height:22px;
  5587. }
  5588. #u19057 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:2064px;
  5592. top:1088px;
  5593. width:380px;
  5594. height:44px;
  5595. display:flex;
  5596. transition:none;
  5597. transform-origin:50% 50%;
  5598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. font-size:14px;
  5602. color:#D9001B;
  5603. line-height:22px;
  5604. }
  5605. #u19057 .text {
  5606. position:absolute;
  5607. align-self:flex-start;
  5608. padding:0px 0px 0px 0px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u19057_text {
  5613. border-width:0px;
  5614. word-wrap:break-word;
  5615. text-transform:none;
  5616. }
  5617. #u19058_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:73px;
  5623. height:17px;
  5624. background:inherit;
  5625. background-color:rgba(255, 255, 255, 0);
  5626. border-left:0px;
  5627. border-top:0px;
  5628. border-right:0px;
  5629. border-radius:0px;
  5630. border-bottom-right-radius:0px;
  5631. border-bottom-left-radius:0px;
  5632. filter:drop-shadow(none);
  5633. transition:none;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:12px;
  5638. color:#D9001B;
  5639. }
  5640. #u19058 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:493px;
  5644. top:425px;
  5645. width:73px;
  5646. height:17px;
  5647. display:flex;
  5648. transition:none;
  5649. transform-origin:50% 50%;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:12px;
  5654. color:#D9001B;
  5655. }
  5656. #u19058 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:0px 0px 0px 0px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u19058_text {
  5664. border-width:0px;
  5665. white-space:nowrap;
  5666. text-transform:none;
  5667. }
  5668. #u19059_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:73px;
  5674. height:17px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 0);
  5677. border-left:0px;
  5678. border-top:0px;
  5679. border-right:0px;
  5680. border-radius:0px;
  5681. border-bottom-right-radius:0px;
  5682. border-bottom-left-radius:0px;
  5683. filter:drop-shadow(none);
  5684. transition:none;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:12px;
  5689. color:#D9001B;
  5690. }
  5691. #u19059 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:493px;
  5695. top:514px;
  5696. width:73px;
  5697. height:17px;
  5698. display:flex;
  5699. transition:none;
  5700. transform-origin:50% 50%;
  5701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. font-size:12px;
  5705. color:#D9001B;
  5706. }
  5707. #u19059 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:0px 0px 0px 0px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u19059_text {
  5715. border-width:0px;
  5716. white-space:nowrap;
  5717. text-transform:none;
  5718. }
  5719. #u19060_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:36px;
  5725. height:40px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border-left:0px;
  5729. border-top:0px;
  5730. border-right:0px;
  5731. border-radius:0px;
  5732. border-bottom-right-radius:0px;
  5733. border-bottom-left-radius:0px;
  5734. filter:drop-shadow(none);
  5735. transition:none;
  5736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. font-size:14px;
  5740. }
  5741. #u19060 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:1269px;
  5745. top:319px;
  5746. width:36px;
  5747. height:40px;
  5748. display:flex;
  5749. transition:none;
  5750. transform-origin:50% 50%;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:14px;
  5755. }
  5756. #u19060 .text {
  5757. position:absolute;
  5758. align-self:center;
  5759. padding:0px 0px 0px 0px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u19060_text {
  5764. border-width:0px;
  5765. white-space:nowrap;
  5766. text-transform:none;
  5767. }
  5768. #u19061 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:0px;
  5774. height:0px;
  5775. }
  5776. #u19062_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:200px;
  5782. height:40px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 1);
  5785. box-sizing:border-box;
  5786. border-width:1px;
  5787. border-style:solid;
  5788. border-color:rgba(201, 201, 201, 1);
  5789. border-radius:4px;
  5790. filter:drop-shadow(none);
  5791. transition:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. text-align:right;
  5797. }
  5798. #u19062 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:1269px;
  5802. top:447px;
  5803. width:200px;
  5804. height:40px;
  5805. display:flex;
  5806. transition:none;
  5807. transform-origin:50% 50%;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:14px;
  5812. text-align:right;
  5813. }
  5814. #u19062 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:2px 8px 2px 8px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u19062_text {
  5822. border-width:0px;
  5823. word-wrap:break-word;
  5824. text-transform:none;
  5825. visibility:hidden;
  5826. }
  5827. #u19063_input {
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:161px;
  5832. height:33px;
  5833. padding:2px 2px 2px 2px;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:14px;
  5838. letter-spacing:normal;
  5839. color:#D7D7D7;
  5840. vertical-align:none;
  5841. text-align:left;
  5842. text-transform:none;
  5843. background-color:transparent;
  5844. border-color:transparent;
  5845. }
  5846. #u19063_input.hint {
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:161px;
  5851. height:33px;
  5852. padding:2px 2px 2px 2px;
  5853. font-family:"Microsoft YaHei", sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. letter-spacing:normal;
  5858. color:#AAAAAA;
  5859. vertical-align:none;
  5860. text-align:left;
  5861. text-transform:none;
  5862. background-color:transparent;
  5863. border-color:transparent;
  5864. }
  5865. #u19063_input.disabled {
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:161px;
  5870. height:33px;
  5871. padding:2px 2px 2px 2px;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:14px;
  5876. letter-spacing:normal;
  5877. color:#D7D7D7;
  5878. vertical-align:none;
  5879. text-align:left;
  5880. text-transform:none;
  5881. background-color:transparent;
  5882. border-color:transparent;
  5883. }
  5884. #u19063_input.hint.disabled {
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:161px;
  5889. height:33px;
  5890. padding:2px 2px 2px 2px;
  5891. font-family:"Microsoft YaHei", sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:14px;
  5895. letter-spacing:normal;
  5896. color:#AAAAAA;
  5897. vertical-align:none;
  5898. text-align:left;
  5899. text-transform:none;
  5900. background-color:transparent;
  5901. border-color:transparent;
  5902. }
  5903. #u19063_div {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:0px;
  5907. top:0px;
  5908. width:161px;
  5909. height:33px;
  5910. background:inherit;
  5911. background-color:rgba(255, 255, 255, 0);
  5912. border-radius:0px;
  5913. filter:drop-shadow(none);
  5914. transition:none;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:14px;
  5919. color:#D7D7D7;
  5920. }
  5921. #u19063 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:1277px;
  5925. top:450px;
  5926. width:161px;
  5927. height:33px;
  5928. display:flex;
  5929. transition:none;
  5930. transform-origin:50% 50%;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:14px;
  5935. color:#D7D7D7;
  5936. }
  5937. #u19063 .text {
  5938. position:absolute;
  5939. align-self:center;
  5940. padding:2px 2px 2px 2px;
  5941. box-sizing:border-box;
  5942. width:100%;
  5943. }
  5944. #u19063_div.hint {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:161px;
  5950. height:33px;
  5951. background:inherit;
  5952. background-color:rgba(255, 255, 255, 0);
  5953. border-radius:0px;
  5954. filter:drop-shadow(none);
  5955. transition:none;
  5956. font-family:"Microsoft YaHei", sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:14px;
  5960. color:#D7D7D7;
  5961. }
  5962. #u19063.hint {
  5963. }
  5964. #u19063_div.disabled {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:161px;
  5970. height:33px;
  5971. background:inherit;
  5972. background-color:rgba(240, 240, 240, 1);
  5973. border-radius:0px;
  5974. filter:drop-shadow(none);
  5975. transition:none;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:14px;
  5980. color:#D7D7D7;
  5981. }
  5982. #u19063.disabled {
  5983. }
  5984. #u19063_div.hint.disabled {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:161px;
  5990. height:33px;
  5991. background:inherit;
  5992. background-color:rgba(240, 240, 240, 1);
  5993. border-radius:0px;
  5994. filter:drop-shadow(none);
  5995. transition:none;
  5996. font-family:"Microsoft YaHei", sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:14px;
  6000. color:#D7D7D7;
  6001. }
  6002. #u19063.hint.disabled {
  6003. }
  6004. #u19064_div {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:50px;
  6010. height:40px;
  6011. background:inherit;
  6012. background-color:rgba(255, 255, 255, 0);
  6013. border-left:0px;
  6014. border-top:0px;
  6015. border-right:0px;
  6016. border-radius:0px;
  6017. border-bottom-right-radius:0px;
  6018. border-bottom-left-radius:0px;
  6019. filter:drop-shadow(none);
  6020. transition:none;
  6021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:14px;
  6025. }
  6026. #u19064 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:1269px;
  6030. top:408px;
  6031. width:50px;
  6032. height:40px;
  6033. display:flex;
  6034. transition:none;
  6035. transform-origin:50% 50%;
  6036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:14px;
  6040. }
  6041. #u19064 .text {
  6042. position:absolute;
  6043. align-self:center;
  6044. padding:0px 0px 0px 0px;
  6045. box-sizing:border-box;
  6046. width:100%;
  6047. }
  6048. #u19064_text {
  6049. border-width:0px;
  6050. white-space:nowrap;
  6051. text-transform:none;
  6052. }
  6053. #u19065 {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:0px;
  6059. height:0px;
  6060. }
  6061. #u19066_div {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:200px;
  6067. height:40px;
  6068. background:inherit;
  6069. background-color:rgba(255, 255, 255, 1);
  6070. box-sizing:border-box;
  6071. border-width:1px;
  6072. border-style:solid;
  6073. border-color:rgba(201, 201, 201, 1);
  6074. border-radius:4px;
  6075. filter:drop-shadow(none);
  6076. transition:none;
  6077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:14px;
  6081. text-align:right;
  6082. }
  6083. #u19066 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:1269px;
  6087. top:536px;
  6088. width:200px;
  6089. height:40px;
  6090. display:flex;
  6091. transition:none;
  6092. transform-origin:50% 50%;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:14px;
  6097. text-align:right;
  6098. }
  6099. #u19066 .text {
  6100. position:absolute;
  6101. align-self:center;
  6102. padding:2px 8px 2px 8px;
  6103. box-sizing:border-box;
  6104. width:100%;
  6105. }
  6106. #u19066_text {
  6107. border-width:0px;
  6108. word-wrap:break-word;
  6109. text-transform:none;
  6110. visibility:hidden;
  6111. }
  6112. #u19067_input {
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:161px;
  6117. height:33px;
  6118. padding:2px 2px 2px 2px;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:14px;
  6123. letter-spacing:normal;
  6124. color:#D7D7D7;
  6125. vertical-align:none;
  6126. text-align:left;
  6127. text-transform:none;
  6128. background-color:transparent;
  6129. border-color:transparent;
  6130. }
  6131. #u19067_input.hint {
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:161px;
  6136. height:33px;
  6137. padding:2px 2px 2px 2px;
  6138. font-family:"Microsoft YaHei", sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:14px;
  6142. letter-spacing:normal;
  6143. color:#AAAAAA;
  6144. vertical-align:none;
  6145. text-align:left;
  6146. text-transform:none;
  6147. background-color:transparent;
  6148. border-color:transparent;
  6149. }
  6150. #u19067_input.disabled {
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:161px;
  6155. height:33px;
  6156. padding:2px 2px 2px 2px;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:14px;
  6161. letter-spacing:normal;
  6162. color:#D7D7D7;
  6163. vertical-align:none;
  6164. text-align:left;
  6165. text-transform:none;
  6166. background-color:transparent;
  6167. border-color:transparent;
  6168. }
  6169. #u19067_input.hint.disabled {
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:161px;
  6174. height:33px;
  6175. padding:2px 2px 2px 2px;
  6176. font-family:"Microsoft YaHei", sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:14px;
  6180. letter-spacing:normal;
  6181. color:#AAAAAA;
  6182. vertical-align:none;
  6183. text-align:left;
  6184. text-transform:none;
  6185. background-color:transparent;
  6186. border-color:transparent;
  6187. }
  6188. #u19067_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:161px;
  6194. height:33px;
  6195. background:inherit;
  6196. background-color:rgba(255, 255, 255, 0);
  6197. border-radius:0px;
  6198. filter:drop-shadow(none);
  6199. transition:none;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. color:#D7D7D7;
  6205. }
  6206. #u19067 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:1277px;
  6210. top:539px;
  6211. width:161px;
  6212. height:33px;
  6213. display:flex;
  6214. transition:none;
  6215. transform-origin:50% 50%;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:14px;
  6220. color:#D7D7D7;
  6221. }
  6222. #u19067 .text {
  6223. position:absolute;
  6224. align-self:center;
  6225. padding:2px 2px 2px 2px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u19067_div.hint {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:161px;
  6235. height:33px;
  6236. background:inherit;
  6237. background-color:rgba(255, 255, 255, 0);
  6238. border-radius:0px;
  6239. filter:drop-shadow(none);
  6240. transition:none;
  6241. font-family:"Microsoft YaHei", sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:14px;
  6245. color:#D7D7D7;
  6246. }
  6247. #u19067.hint {
  6248. }
  6249. #u19067_div.disabled {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:0px;
  6253. top:0px;
  6254. width:161px;
  6255. height:33px;
  6256. background:inherit;
  6257. background-color:rgba(240, 240, 240, 1);
  6258. border-radius:0px;
  6259. filter:drop-shadow(none);
  6260. transition:none;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:14px;
  6265. color:#D7D7D7;
  6266. }
  6267. #u19067.disabled {
  6268. }
  6269. #u19067_div.hint.disabled {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:161px;
  6275. height:33px;
  6276. background:inherit;
  6277. background-color:rgba(240, 240, 240, 1);
  6278. border-radius:0px;
  6279. filter:drop-shadow(none);
  6280. transition:none;
  6281. font-family:"Microsoft YaHei", sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:14px;
  6285. color:#D7D7D7;
  6286. }
  6287. #u19067.hint.disabled {
  6288. }
  6289. #u19068_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:71px;
  6295. height:40px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 0);
  6298. border-left:0px;
  6299. border-top:0px;
  6300. border-right:0px;
  6301. border-radius:0px;
  6302. border-bottom-right-radius:0px;
  6303. border-bottom-left-radius:0px;
  6304. filter:drop-shadow(none);
  6305. transition:none;
  6306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6307. font-weight:400;
  6308. font-style:normal;
  6309. font-size:14px;
  6310. }
  6311. #u19068 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:1269px;
  6315. top:497px;
  6316. width:71px;
  6317. height:40px;
  6318. display:flex;
  6319. transition:none;
  6320. transform-origin:50% 50%;
  6321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:14px;
  6325. }
  6326. #u19068 .text {
  6327. position:absolute;
  6328. align-self:center;
  6329. padding:0px 0px 0px 0px;
  6330. box-sizing:border-box;
  6331. width:100%;
  6332. }
  6333. #u19068_text {
  6334. border-width:0px;
  6335. white-space:nowrap;
  6336. text-transform:none;
  6337. }
  6338. #u19069_div {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:71px;
  6344. height:40px;
  6345. background:inherit;
  6346. background-color:rgba(255, 255, 255, 0);
  6347. border-left:0px;
  6348. border-top:0px;
  6349. border-right:0px;
  6350. border-radius:0px;
  6351. border-bottom-right-radius:0px;
  6352. border-bottom-left-radius:0px;
  6353. filter:drop-shadow(none);
  6354. transition:none;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. }
  6360. #u19069 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:1039px;
  6364. top:680px;
  6365. width:71px;
  6366. height:40px;
  6367. display:flex;
  6368. transition:none;
  6369. transform-origin:50% 50%;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. }
  6375. #u19069 .text {
  6376. position:absolute;
  6377. align-self:center;
  6378. padding:0px 0px 0px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u19069_text {
  6383. border-width:0px;
  6384. white-space:nowrap;
  6385. text-transform:none;
  6386. }
  6387. #u19070 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:0px;
  6393. height:0px;
  6394. }
  6395. #u19071_div {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:200px;
  6401. height:40px;
  6402. background:inherit;
  6403. background-color:rgba(255, 255, 255, 1);
  6404. box-sizing:border-box;
  6405. border-width:1px;
  6406. border-style:solid;
  6407. border-color:rgba(201, 201, 201, 1);
  6408. border-radius:4px;
  6409. filter:drop-shadow(none);
  6410. transition:none;
  6411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6412. font-weight:400;
  6413. font-style:normal;
  6414. font-size:14px;
  6415. text-align:right;
  6416. }
  6417. #u19071 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:1269px;
  6421. top:719px;
  6422. width:200px;
  6423. height:40px;
  6424. display:flex;
  6425. transition:none;
  6426. transform-origin:50% 50%;
  6427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. font-size:14px;
  6431. text-align:right;
  6432. }
  6433. #u19071 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 8px 2px 8px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u19071_text {
  6441. border-width:0px;
  6442. word-wrap:break-word;
  6443. text-transform:none;
  6444. visibility:hidden;
  6445. }
  6446. #u19072_input {
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:161px;
  6451. height:33px;
  6452. padding:2px 2px 2px 2px;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:14px;
  6457. letter-spacing:normal;
  6458. color:#D7D7D7;
  6459. vertical-align:none;
  6460. text-align:left;
  6461. text-transform:none;
  6462. background-color:transparent;
  6463. border-color:transparent;
  6464. }
  6465. #u19072_input.hint {
  6466. position:absolute;
  6467. left:0px;
  6468. top:0px;
  6469. width:161px;
  6470. height:33px;
  6471. padding:2px 2px 2px 2px;
  6472. font-family:"Microsoft YaHei", sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:14px;
  6476. letter-spacing:normal;
  6477. color:#AAAAAA;
  6478. vertical-align:none;
  6479. text-align:left;
  6480. text-transform:none;
  6481. background-color:transparent;
  6482. border-color:transparent;
  6483. }
  6484. #u19072_input.disabled {
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:161px;
  6489. height:33px;
  6490. padding:2px 2px 2px 2px;
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. font-size:14px;
  6495. letter-spacing:normal;
  6496. color:#D7D7D7;
  6497. vertical-align:none;
  6498. text-align:left;
  6499. text-transform:none;
  6500. background-color:transparent;
  6501. border-color:transparent;
  6502. }
  6503. #u19072_input.hint.disabled {
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:161px;
  6508. height:33px;
  6509. padding:2px 2px 2px 2px;
  6510. font-family:"Microsoft YaHei", sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:14px;
  6514. letter-spacing:normal;
  6515. color:#AAAAAA;
  6516. vertical-align:none;
  6517. text-align:left;
  6518. text-transform:none;
  6519. background-color:transparent;
  6520. border-color:transparent;
  6521. }
  6522. #u19072_div {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:161px;
  6528. height:33px;
  6529. background:inherit;
  6530. background-color:rgba(255, 255, 255, 0);
  6531. border-radius:0px;
  6532. filter:drop-shadow(none);
  6533. transition:none;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:14px;
  6538. color:#D7D7D7;
  6539. }
  6540. #u19072 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:1277px;
  6544. top:722px;
  6545. width:161px;
  6546. height:33px;
  6547. display:flex;
  6548. transition:none;
  6549. transform-origin:50% 50%;
  6550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6551. font-weight:400;
  6552. font-style:normal;
  6553. font-size:14px;
  6554. color:#D7D7D7;
  6555. }
  6556. #u19072 .text {
  6557. position:absolute;
  6558. align-self:center;
  6559. padding:2px 2px 2px 2px;
  6560. box-sizing:border-box;
  6561. width:100%;
  6562. }
  6563. #u19072_div.hint {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:161px;
  6569. height:33px;
  6570. background:inherit;
  6571. background-color:rgba(255, 255, 255, 0);
  6572. border-radius:0px;
  6573. filter:drop-shadow(none);
  6574. transition:none;
  6575. font-family:"Microsoft YaHei", sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:14px;
  6579. color:#D7D7D7;
  6580. }
  6581. #u19072.hint {
  6582. }
  6583. #u19072_div.disabled {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:161px;
  6589. height:33px;
  6590. background:inherit;
  6591. background-color:rgba(240, 240, 240, 1);
  6592. border-radius:0px;
  6593. filter:drop-shadow(none);
  6594. transition:none;
  6595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:14px;
  6599. color:#D7D7D7;
  6600. }
  6601. #u19072.disabled {
  6602. }
  6603. #u19072_div.hint.disabled {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:161px;
  6609. height:33px;
  6610. background:inherit;
  6611. background-color:rgba(240, 240, 240, 1);
  6612. border-radius:0px;
  6613. filter:drop-shadow(none);
  6614. transition:none;
  6615. font-family:"Microsoft YaHei", sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:14px;
  6619. color:#D7D7D7;
  6620. }
  6621. #u19072.hint.disabled {
  6622. }
  6623. #u19073_div {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:0px;
  6627. top:0px;
  6628. width:85px;
  6629. height:40px;
  6630. background:inherit;
  6631. background-color:rgba(255, 255, 255, 0);
  6632. border-left:0px;
  6633. border-top:0px;
  6634. border-right:0px;
  6635. border-radius:0px;
  6636. border-bottom-right-radius:0px;
  6637. border-bottom-left-radius:0px;
  6638. filter:drop-shadow(none);
  6639. transition:none;
  6640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6641. font-weight:400;
  6642. font-style:normal;
  6643. font-size:14px;
  6644. }
  6645. #u19073 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:1269px;
  6649. top:679px;
  6650. width:85px;
  6651. height:40px;
  6652. display:flex;
  6653. transition:none;
  6654. transform-origin:50% 50%;
  6655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6656. font-weight:400;
  6657. font-style:normal;
  6658. font-size:14px;
  6659. }
  6660. #u19073 .text {
  6661. position:absolute;
  6662. align-self:center;
  6663. padding:0px 0px 0px 0px;
  6664. box-sizing:border-box;
  6665. width:100%;
  6666. }
  6667. #u19073_text {
  6668. border-width:0px;
  6669. white-space:nowrap;
  6670. text-transform:none;
  6671. }
  6672. #u19074 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:0px;
  6678. height:0px;
  6679. }
  6680. #u19075_div {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:200px;
  6686. height:40px;
  6687. background:inherit;
  6688. background-color:rgba(255, 255, 255, 1);
  6689. box-sizing:border-box;
  6690. border-width:1px;
  6691. border-style:solid;
  6692. border-color:rgba(201, 201, 201, 1);
  6693. border-radius:4px;
  6694. filter:drop-shadow(none);
  6695. transition:none;
  6696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6697. font-weight:400;
  6698. font-style:normal;
  6699. font-size:14px;
  6700. text-align:right;
  6701. }
  6702. #u19075 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:1039px;
  6706. top:720px;
  6707. width:200px;
  6708. height:40px;
  6709. display:flex;
  6710. transition:none;
  6711. transform-origin:50% 50%;
  6712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. font-size:14px;
  6716. text-align:right;
  6717. }
  6718. #u19075 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 8px 2px 8px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u19075_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u19076_input {
  6732. position:absolute;
  6733. left:0px;
  6734. top:0px;
  6735. width:161px;
  6736. height:33px;
  6737. padding:2px 2px 2px 2px;
  6738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:14px;
  6742. letter-spacing:normal;
  6743. color:#D7D7D7;
  6744. vertical-align:none;
  6745. text-align:left;
  6746. text-transform:none;
  6747. background-color:transparent;
  6748. border-color:transparent;
  6749. }
  6750. #u19076_input.hint {
  6751. position:absolute;
  6752. left:0px;
  6753. top:0px;
  6754. width:161px;
  6755. height:33px;
  6756. padding:2px 2px 2px 2px;
  6757. font-family:"Microsoft YaHei", sans-serif;
  6758. font-weight:400;
  6759. font-style:normal;
  6760. font-size:14px;
  6761. letter-spacing:normal;
  6762. color:#AAAAAA;
  6763. vertical-align:none;
  6764. text-align:left;
  6765. text-transform:none;
  6766. background-color:transparent;
  6767. border-color:transparent;
  6768. }
  6769. #u19076_input.disabled {
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:161px;
  6774. height:33px;
  6775. padding:2px 2px 2px 2px;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:14px;
  6780. letter-spacing:normal;
  6781. color:#D7D7D7;
  6782. vertical-align:none;
  6783. text-align:left;
  6784. text-transform:none;
  6785. background-color:transparent;
  6786. border-color:transparent;
  6787. }
  6788. #u19076_input.hint.disabled {
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:161px;
  6793. height:33px;
  6794. padding:2px 2px 2px 2px;
  6795. font-family:"Microsoft YaHei", sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. letter-spacing:normal;
  6800. color:#AAAAAA;
  6801. vertical-align:none;
  6802. text-align:left;
  6803. text-transform:none;
  6804. background-color:transparent;
  6805. border-color:transparent;
  6806. }
  6807. #u19076_div {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:161px;
  6813. height:33px;
  6814. background:inherit;
  6815. background-color:rgba(255, 255, 255, 0);
  6816. border-radius:0px;
  6817. filter:drop-shadow(none);
  6818. transition:none;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:14px;
  6823. color:#D7D7D7;
  6824. }
  6825. #u19076 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:1047px;
  6829. top:723px;
  6830. width:161px;
  6831. height:33px;
  6832. display:flex;
  6833. transition:none;
  6834. transform-origin:50% 50%;
  6835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:14px;
  6839. color:#D7D7D7;
  6840. }
  6841. #u19076 .text {
  6842. position:absolute;
  6843. align-self:center;
  6844. padding:2px 2px 2px 2px;
  6845. box-sizing:border-box;
  6846. width:100%;
  6847. }
  6848. #u19076_div.hint {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:0px;
  6852. top:0px;
  6853. width:161px;
  6854. height:33px;
  6855. background:inherit;
  6856. background-color:rgba(255, 255, 255, 0);
  6857. border-radius:0px;
  6858. filter:drop-shadow(none);
  6859. transition:none;
  6860. font-family:"Microsoft YaHei", sans-serif;
  6861. font-weight:400;
  6862. font-style:normal;
  6863. font-size:14px;
  6864. color:#D7D7D7;
  6865. }
  6866. #u19076.hint {
  6867. }
  6868. #u19076_div.disabled {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:161px;
  6874. height:33px;
  6875. background:inherit;
  6876. background-color:rgba(240, 240, 240, 1);
  6877. border-radius:0px;
  6878. filter:drop-shadow(none);
  6879. transition:none;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:14px;
  6884. color:#D7D7D7;
  6885. }
  6886. #u19076.disabled {
  6887. }
  6888. #u19076_div.hint.disabled {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:161px;
  6894. height:33px;
  6895. background:inherit;
  6896. background-color:rgba(240, 240, 240, 1);
  6897. border-radius:0px;
  6898. filter:drop-shadow(none);
  6899. transition:none;
  6900. font-family:"Microsoft YaHei", sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:14px;
  6904. color:#D7D7D7;
  6905. }
  6906. #u19076.hint.disabled {
  6907. }
  6908. #u19077_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:29px;
  6914. height:40px;
  6915. background:inherit;
  6916. background-color:rgba(255, 255, 255, 0);
  6917. border-left:0px;
  6918. border-top:0px;
  6919. border-right:0px;
  6920. border-radius:0px;
  6921. border-bottom-right-radius:0px;
  6922. border-bottom-left-radius:0px;
  6923. filter:drop-shadow(none);
  6924. transition:none;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:14px;
  6929. }
  6930. #u19077 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:1039px;
  6934. top:408px;
  6935. width:29px;
  6936. height:40px;
  6937. display:flex;
  6938. transition:none;
  6939. transform-origin:50% 50%;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:14px;
  6944. }
  6945. #u19077 .text {
  6946. position:absolute;
  6947. align-self:center;
  6948. padding:0px 0px 0px 0px;
  6949. box-sizing:border-box;
  6950. width:100%;
  6951. }
  6952. #u19077_text {
  6953. border-width:0px;
  6954. white-space:nowrap;
  6955. text-transform:none;
  6956. }
  6957. #u19078 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:0px;
  6963. height:0px;
  6964. }
  6965. #u19079_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:200px;
  6971. height:40px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 1);
  6974. box-sizing:border-box;
  6975. border-width:1px;
  6976. border-style:solid;
  6977. border-color:rgba(215, 215, 215, 1);
  6978. border-radius:4px;
  6979. filter:drop-shadow(none);
  6980. transition:none;
  6981. font-size:14px;
  6982. }
  6983. #u19079 {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:1039px;
  6987. top:448px;
  6988. width:200px;
  6989. height:40px;
  6990. display:flex;
  6991. transition:none;
  6992. transform-origin:50% 50%;
  6993. font-size:14px;
  6994. }
  6995. #u19079 .text {
  6996. position:absolute;
  6997. align-self:center;
  6998. padding:2px 2px 2px 2px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u19079_text {
  7003. border-width:0px;
  7004. word-wrap:break-word;
  7005. text-transform:none;
  7006. visibility:hidden;
  7007. }
  7008. #u19080_input {
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:191px;
  7013. height:31px;
  7014. padding:2px 2px 2px 2px;
  7015. font-family:'ArialMT', 'Arial', sans-serif;
  7016. font-weight:400;
  7017. font-style:normal;
  7018. font-size:14px;
  7019. letter-spacing:normal;
  7020. color:#AAAAAA;
  7021. vertical-align:none;
  7022. text-align:left;
  7023. text-transform:none;
  7024. background-color:transparent;
  7025. border-color:transparent;
  7026. }
  7027. #u19080_input.disabled {
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:191px;
  7032. height:31px;
  7033. padding:2px 2px 2px 2px;
  7034. font-family:'ArialMT', 'Arial', sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. font-size:14px;
  7038. letter-spacing:normal;
  7039. color:#AAAAAA;
  7040. vertical-align:none;
  7041. text-align:left;
  7042. text-transform:none;
  7043. background-color:transparent;
  7044. border-color:transparent;
  7045. }
  7046. #u19080_div {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:191px;
  7052. height:31px;
  7053. background:inherit;
  7054. background-color:rgba(255, 255, 255, 1);
  7055. border-radius:0px;
  7056. filter:drop-shadow(none);
  7057. transition:none;
  7058. font-size:14px;
  7059. color:#AAAAAA;
  7060. }
  7061. #u19080 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:1045px;
  7065. top:451px;
  7066. width:191px;
  7067. height:31px;
  7068. display:flex;
  7069. transition:none;
  7070. transform-origin:50% 50%;
  7071. font-size:14px;
  7072. color:#AAAAAA;
  7073. }
  7074. #u19080 .text {
  7075. position:absolute;
  7076. align-self:flex-start;
  7077. padding:2px 2px 2px 2px;
  7078. box-sizing:border-box;
  7079. width:100%;
  7080. }
  7081. #u19080_div.disabled {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:191px;
  7087. height:31px;
  7088. background:inherit;
  7089. background-color:rgba(240, 240, 240, 1);
  7090. border-radius:0px;
  7091. filter:drop-shadow(none);
  7092. transition:none;
  7093. font-size:14px;
  7094. color:#AAAAAA;
  7095. }
  7096. #u19080.disabled {
  7097. }
  7098. .u19080_input_option {
  7099. font-size:14px;
  7100. }
  7101. #u19081_div {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:71px;
  7107. height:40px;
  7108. background:inherit;
  7109. background-color:rgba(255, 255, 255, 0);
  7110. border-left:0px;
  7111. border-top:0px;
  7112. border-right:0px;
  7113. border-radius:0px;
  7114. border-bottom-right-radius:0px;
  7115. border-bottom-left-radius:0px;
  7116. filter:drop-shadow(none);
  7117. transition:none;
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:14px;
  7122. }
  7123. #u19081 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:1039px;
  7127. top:588px;
  7128. width:71px;
  7129. height:40px;
  7130. display:flex;
  7131. transition:none;
  7132. transform-origin:50% 50%;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. }
  7138. #u19081 .text {
  7139. position:absolute;
  7140. align-self:center;
  7141. padding:0px 0px 0px 0px;
  7142. box-sizing:border-box;
  7143. width:100%;
  7144. }
  7145. #u19081_text {
  7146. border-width:0px;
  7147. white-space:nowrap;
  7148. text-transform:none;
  7149. }
  7150. #u19082_div {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:0px;
  7154. top:0px;
  7155. width:73px;
  7156. height:40px;
  7157. background:inherit;
  7158. background-color:rgba(255, 255, 255, 0);
  7159. border-left:0px;
  7160. border-top:0px;
  7161. border-right:0px;
  7162. border-radius:0px;
  7163. border-bottom-right-radius:0px;
  7164. border-bottom-left-radius:0px;
  7165. filter:drop-shadow(none);
  7166. transition:none;
  7167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7168. font-weight:500;
  7169. font-style:normal;
  7170. font-size:18px;
  7171. }
  7172. #u19082 {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:1039px;
  7176. top:268px;
  7177. width:73px;
  7178. height:40px;
  7179. display:flex;
  7180. transition:none;
  7181. transform-origin:50% 50%;
  7182. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7183. font-weight:500;
  7184. font-style:normal;
  7185. font-size:18px;
  7186. }
  7187. #u19082 .text {
  7188. position:absolute;
  7189. align-self:center;
  7190. padding:0px 0px 0px 0px;
  7191. box-sizing:border-box;
  7192. width:100%;
  7193. }
  7194. #u19082_text {
  7195. border-width:0px;
  7196. white-space:nowrap;
  7197. text-transform:none;
  7198. }
  7199. #u19083 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:0px;
  7205. height:0px;
  7206. }
  7207. #u19084_div {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:200px;
  7213. height:40px;
  7214. background:inherit;
  7215. background-color:rgba(255, 255, 255, 1);
  7216. box-sizing:border-box;
  7217. border-width:1px;
  7218. border-style:solid;
  7219. border-color:rgba(201, 201, 201, 1);
  7220. border-radius:4px;
  7221. filter:drop-shadow(none);
  7222. transition:none;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:14px;
  7227. text-align:right;
  7228. }
  7229. #u19084 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:1269px;
  7233. top:358px;
  7234. width:200px;
  7235. height:40px;
  7236. display:flex;
  7237. transition:none;
  7238. transform-origin:50% 50%;
  7239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:14px;
  7243. text-align:right;
  7244. }
  7245. #u19084 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:2px 8px 2px 8px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u19084_text {
  7253. border-width:0px;
  7254. word-wrap:break-word;
  7255. text-transform:none;
  7256. visibility:hidden;
  7257. }
  7258. #u19085_input {
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:161px;
  7263. height:33px;
  7264. padding:2px 2px 2px 2px;
  7265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7266. font-weight:400;
  7267. font-style:normal;
  7268. font-size:14px;
  7269. letter-spacing:normal;
  7270. color:#D7D7D7;
  7271. vertical-align:none;
  7272. text-align:left;
  7273. text-transform:none;
  7274. background-color:transparent;
  7275. border-color:transparent;
  7276. }
  7277. #u19085_input.hint {
  7278. position:absolute;
  7279. left:0px;
  7280. top:0px;
  7281. width:161px;
  7282. height:33px;
  7283. padding:2px 2px 2px 2px;
  7284. font-family:"Microsoft YaHei", sans-serif;
  7285. font-weight:400;
  7286. font-style:normal;
  7287. font-size:14px;
  7288. letter-spacing:normal;
  7289. color:#AAAAAA;
  7290. vertical-align:none;
  7291. text-align:left;
  7292. text-transform:none;
  7293. background-color:transparent;
  7294. border-color:transparent;
  7295. }
  7296. #u19085_input.disabled {
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:161px;
  7301. height:33px;
  7302. padding:2px 2px 2px 2px;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:14px;
  7307. letter-spacing:normal;
  7308. color:#D7D7D7;
  7309. vertical-align:none;
  7310. text-align:left;
  7311. text-transform:none;
  7312. background-color:transparent;
  7313. border-color:transparent;
  7314. }
  7315. #u19085_input.hint.disabled {
  7316. position:absolute;
  7317. left:0px;
  7318. top:0px;
  7319. width:161px;
  7320. height:33px;
  7321. padding:2px 2px 2px 2px;
  7322. font-family:"Microsoft YaHei", sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:14px;
  7326. letter-spacing:normal;
  7327. color:#AAAAAA;
  7328. vertical-align:none;
  7329. text-align:left;
  7330. text-transform:none;
  7331. background-color:transparent;
  7332. border-color:transparent;
  7333. }
  7334. #u19085_div {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:161px;
  7340. height:33px;
  7341. background:inherit;
  7342. background-color:rgba(255, 255, 255, 0);
  7343. border-radius:0px;
  7344. filter:drop-shadow(none);
  7345. transition:none;
  7346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:14px;
  7350. color:#D7D7D7;
  7351. }
  7352. #u19085 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:1277px;
  7356. top:361px;
  7357. width:161px;
  7358. height:33px;
  7359. display:flex;
  7360. transition:none;
  7361. transform-origin:50% 50%;
  7362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:14px;
  7366. color:#D7D7D7;
  7367. }
  7368. #u19085 .text {
  7369. position:absolute;
  7370. align-self:center;
  7371. padding:2px 2px 2px 2px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u19085_div.hint {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:161px;
  7381. height:33px;
  7382. background:inherit;
  7383. background-color:rgba(255, 255, 255, 0);
  7384. border-radius:0px;
  7385. filter:drop-shadow(none);
  7386. transition:none;
  7387. font-family:"Microsoft YaHei", sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:14px;
  7391. color:#D7D7D7;
  7392. }
  7393. #u19085.hint {
  7394. }
  7395. #u19085_div.disabled {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:161px;
  7401. height:33px;
  7402. background:inherit;
  7403. background-color:rgba(240, 240, 240, 1);
  7404. border-radius:0px;
  7405. filter:drop-shadow(none);
  7406. transition:none;
  7407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7408. font-weight:400;
  7409. font-style:normal;
  7410. font-size:14px;
  7411. color:#D7D7D7;
  7412. }
  7413. #u19085.disabled {
  7414. }
  7415. #u19085_div.hint.disabled {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:161px;
  7421. height:33px;
  7422. background:inherit;
  7423. background-color:rgba(240, 240, 240, 1);
  7424. border-radius:0px;
  7425. filter:drop-shadow(none);
  7426. transition:none;
  7427. font-family:"Microsoft YaHei", sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:14px;
  7431. color:#D7D7D7;
  7432. }
  7433. #u19085.hint.disabled {
  7434. }
  7435. #u19086_div {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:57px;
  7441. height:40px;
  7442. background:inherit;
  7443. background-color:rgba(255, 255, 255, 0);
  7444. border-left:0px;
  7445. border-top:0px;
  7446. border-right:0px;
  7447. border-radius:0px;
  7448. border-bottom-right-radius:0px;
  7449. border-bottom-left-radius:0px;
  7450. filter:drop-shadow(none);
  7451. transition:none;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:14px;
  7456. }
  7457. #u19086 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:1039px;
  7461. top:498px;
  7462. width:57px;
  7463. height:40px;
  7464. display:flex;
  7465. transition:none;
  7466. transform-origin:50% 50%;
  7467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. font-size:14px;
  7471. }
  7472. #u19086 .text {
  7473. position:absolute;
  7474. align-self:center;
  7475. padding:0px 0px 0px 0px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u19086_text {
  7480. border-width:0px;
  7481. white-space:nowrap;
  7482. text-transform:none;
  7483. }
  7484. #u19087 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:0px;
  7490. height:0px;
  7491. }
  7492. #u19088_div {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:200px;
  7498. height:40px;
  7499. background:inherit;
  7500. background-color:rgba(255, 255, 255, 1);
  7501. box-sizing:border-box;
  7502. border-width:1px;
  7503. border-style:solid;
  7504. border-color:rgba(215, 215, 215, 1);
  7505. border-radius:4px;
  7506. filter:drop-shadow(none);
  7507. transition:none;
  7508. font-size:14px;
  7509. }
  7510. #u19088 {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:1039px;
  7514. top:538px;
  7515. width:200px;
  7516. height:40px;
  7517. display:flex;
  7518. transition:none;
  7519. transform-origin:50% 50%;
  7520. font-size:14px;
  7521. }
  7522. #u19088 .text {
  7523. position:absolute;
  7524. align-self:center;
  7525. padding:2px 2px 2px 2px;
  7526. box-sizing:border-box;
  7527. width:100%;
  7528. }
  7529. #u19088_text {
  7530. border-width:0px;
  7531. word-wrap:break-word;
  7532. text-transform:none;
  7533. visibility:hidden;
  7534. }
  7535. #u19089_input {
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:191px;
  7540. height:31px;
  7541. padding:2px 2px 2px 2px;
  7542. font-family:'ArialMT', 'Arial', sans-serif;
  7543. font-weight:400;
  7544. font-style:normal;
  7545. font-size:14px;
  7546. letter-spacing:normal;
  7547. color:#AAAAAA;
  7548. vertical-align:none;
  7549. text-align:left;
  7550. text-transform:none;
  7551. background-color:transparent;
  7552. border-color:transparent;
  7553. }
  7554. #u19089_input.disabled {
  7555. position:absolute;
  7556. left:0px;
  7557. top:0px;
  7558. width:191px;
  7559. height:31px;
  7560. padding:2px 2px 2px 2px;
  7561. font-family:'ArialMT', 'Arial', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:14px;
  7565. letter-spacing:normal;
  7566. color:#AAAAAA;
  7567. vertical-align:none;
  7568. text-align:left;
  7569. text-transform:none;
  7570. background-color:transparent;
  7571. border-color:transparent;
  7572. }
  7573. #u19089_div {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:191px;
  7579. height:31px;
  7580. background:inherit;
  7581. background-color:rgba(255, 255, 255, 1);
  7582. border-radius:0px;
  7583. filter:drop-shadow(none);
  7584. transition:none;
  7585. font-size:14px;
  7586. color:#AAAAAA;
  7587. }
  7588. #u19089 {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:1045px;
  7592. top:541px;
  7593. width:191px;
  7594. height:31px;
  7595. display:flex;
  7596. transition:none;
  7597. transform-origin:50% 50%;
  7598. font-size:14px;
  7599. color:#AAAAAA;
  7600. }
  7601. #u19089 .text {
  7602. position:absolute;
  7603. align-self:flex-start;
  7604. padding:2px 2px 2px 2px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u19089_div.disabled {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:191px;
  7614. height:31px;
  7615. background:inherit;
  7616. background-color:rgba(240, 240, 240, 1);
  7617. border-radius:0px;
  7618. filter:drop-shadow(none);
  7619. transition:none;
  7620. font-size:14px;
  7621. color:#AAAAAA;
  7622. }
  7623. #u19089.disabled {
  7624. }
  7625. .u19089_input_option {
  7626. font-size:14px;
  7627. }
  7628. #u19090 {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:0px;
  7634. height:0px;
  7635. }
  7636. #u19091_div {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:200px;
  7642. height:40px;
  7643. background:inherit;
  7644. background-color:rgba(255, 255, 255, 1);
  7645. box-sizing:border-box;
  7646. border-width:1px;
  7647. border-style:solid;
  7648. border-color:rgba(215, 215, 215, 1);
  7649. border-radius:4px;
  7650. filter:drop-shadow(none);
  7651. transition:none;
  7652. font-size:14px;
  7653. }
  7654. #u19091 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:1039px;
  7658. top:630px;
  7659. width:200px;
  7660. height:40px;
  7661. display:flex;
  7662. transition:none;
  7663. transform-origin:50% 50%;
  7664. font-size:14px;
  7665. }
  7666. #u19091 .text {
  7667. position:absolute;
  7668. align-self:center;
  7669. padding:2px 2px 2px 2px;
  7670. box-sizing:border-box;
  7671. width:100%;
  7672. }
  7673. #u19091_text {
  7674. border-width:0px;
  7675. word-wrap:break-word;
  7676. text-transform:none;
  7677. visibility:hidden;
  7678. }
  7679. #u19092_input {
  7680. position:absolute;
  7681. left:0px;
  7682. top:0px;
  7683. width:194px;
  7684. height:31px;
  7685. padding:2px 2px 2px 2px;
  7686. font-family:'ArialMT', 'Arial', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:14px;
  7690. letter-spacing:normal;
  7691. color:#AAAAAA;
  7692. vertical-align:none;
  7693. text-align:left;
  7694. text-transform:none;
  7695. background-color:transparent;
  7696. border-color:transparent;
  7697. }
  7698. #u19092_input.disabled {
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:194px;
  7703. height:31px;
  7704. padding:2px 2px 2px 2px;
  7705. font-family:'ArialMT', 'Arial', sans-serif;
  7706. font-weight:400;
  7707. font-style:normal;
  7708. font-size:14px;
  7709. letter-spacing:normal;
  7710. color:#AAAAAA;
  7711. vertical-align:none;
  7712. text-align:left;
  7713. text-transform:none;
  7714. background-color:transparent;
  7715. border-color:transparent;
  7716. }
  7717. #u19092_div {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:194px;
  7723. height:31px;
  7724. background:inherit;
  7725. background-color:rgba(255, 255, 255, 1);
  7726. border-radius:0px;
  7727. filter:drop-shadow(none);
  7728. transition:none;
  7729. font-size:14px;
  7730. color:#AAAAAA;
  7731. }
  7732. #u19092 {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:1042px;
  7736. top:633px;
  7737. width:194px;
  7738. height:31px;
  7739. display:flex;
  7740. transition:none;
  7741. transform-origin:50% 50%;
  7742. font-size:14px;
  7743. color:#AAAAAA;
  7744. }
  7745. #u19092 .text {
  7746. position:absolute;
  7747. align-self:flex-start;
  7748. padding:2px 2px 2px 2px;
  7749. box-sizing:border-box;
  7750. width:100%;
  7751. }
  7752. #u19092_div.disabled {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:194px;
  7758. height:31px;
  7759. background:inherit;
  7760. background-color:rgba(240, 240, 240, 1);
  7761. border-radius:0px;
  7762. filter:drop-shadow(none);
  7763. transition:none;
  7764. font-size:14px;
  7765. color:#AAAAAA;
  7766. }
  7767. #u19092.disabled {
  7768. }
  7769. .u19092_input_option {
  7770. font-size:14px;
  7771. }
  7772. #u19093 label {
  7773. left:0px;
  7774. width:100%;
  7775. height:100%;
  7776. }
  7777. #u19093_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:3px;
  7782. width:12px;
  7783. height:12px;
  7784. }
  7785. #u19093 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:1181px;
  7789. top:604px;
  7790. width:55px;
  7791. height:18px;
  7792. display:flex;
  7793. transition:none;
  7794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7795. font-weight:400;
  7796. font-style:normal;
  7797. }
  7798. #u19093 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:0px 2px 0px 2px;
  7802. box-sizing:border-box;
  7803. }
  7804. #u19093_img.selected {
  7805. }
  7806. #u19093.selected {
  7807. }
  7808. #u19093_img.disabled {
  7809. }
  7810. #u19093.disabled {
  7811. }
  7812. #u19093_img.selected.error {
  7813. }
  7814. #u19093.selected.error {
  7815. }
  7816. #u19093_img.selected.hint {
  7817. }
  7818. #u19093.selected.hint {
  7819. }
  7820. #u19093_img.selected.error.hint {
  7821. }
  7822. #u19093.selected.error.hint {
  7823. }
  7824. #u19093_img.mouseOver.selected {
  7825. }
  7826. #u19093.mouseOver.selected {
  7827. }
  7828. #u19093_img.mouseOver.selected.error {
  7829. }
  7830. #u19093.mouseOver.selected.error {
  7831. }
  7832. #u19093_img.mouseOver.selected.hint {
  7833. }
  7834. #u19093.mouseOver.selected.hint {
  7835. }
  7836. #u19093_img.mouseOver.selected.error.hint {
  7837. }
  7838. #u19093.mouseOver.selected.error.hint {
  7839. }
  7840. #u19093_img.mouseDown.selected {
  7841. }
  7842. #u19093.mouseDown.selected {
  7843. }
  7844. #u19093_img.mouseDown.selected.error {
  7845. }
  7846. #u19093.mouseDown.selected.error {
  7847. }
  7848. #u19093_img.mouseDown.selected.hint {
  7849. }
  7850. #u19093.mouseDown.selected.hint {
  7851. }
  7852. #u19093_img.mouseDown.selected.error.hint {
  7853. }
  7854. #u19093.mouseDown.selected.error.hint {
  7855. }
  7856. #u19093_img.mouseOver.mouseDown.selected {
  7857. }
  7858. #u19093.mouseOver.mouseDown.selected {
  7859. }
  7860. #u19093_img.mouseOver.mouseDown.selected.error {
  7861. }
  7862. #u19093.mouseOver.mouseDown.selected.error {
  7863. }
  7864. #u19093_img.mouseOver.mouseDown.selected.hint {
  7865. }
  7866. #u19093.mouseOver.mouseDown.selected.hint {
  7867. }
  7868. #u19093_img.mouseOver.mouseDown.selected.error.hint {
  7869. }
  7870. #u19093.mouseOver.mouseDown.selected.error.hint {
  7871. }
  7872. #u19093_img.focused.selected {
  7873. }
  7874. #u19093.focused.selected {
  7875. }
  7876. #u19093_img.focused.selected.error {
  7877. }
  7878. #u19093.focused.selected.error {
  7879. }
  7880. #u19093_img.focused.selected.hint {
  7881. }
  7882. #u19093.focused.selected.hint {
  7883. }
  7884. #u19093_img.focused.selected.error.hint {
  7885. }
  7886. #u19093.focused.selected.error.hint {
  7887. }
  7888. #u19093_img.selected.disabled {
  7889. }
  7890. #u19093.selected.disabled {
  7891. }
  7892. #u19093_img.selected.hint.disabled {
  7893. }
  7894. #u19093.selected.hint.disabled {
  7895. }
  7896. #u19093_img.selected.error.disabled {
  7897. }
  7898. #u19093.selected.error.disabled {
  7899. }
  7900. #u19093_img.selected.error.hint.disabled {
  7901. }
  7902. #u19093.selected.error.hint.disabled {
  7903. }
  7904. #u19093_text {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:12px;
  7908. top:0px;
  7909. width:43px;
  7910. word-wrap:break-word;
  7911. text-transform:none;
  7912. }
  7913. #u19093_input {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:0px;
  7919. height:0px;
  7920. opacity:0;
  7921. }
  7922. #u19094_div {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:0px;
  7926. top:0px;
  7927. width:185px;
  7928. height:40px;
  7929. background:inherit;
  7930. background-color:rgba(255, 255, 255, 0);
  7931. border-left:0px;
  7932. border-top:0px;
  7933. border-right:0px;
  7934. border-radius:0px;
  7935. border-bottom-right-radius:0px;
  7936. border-bottom-left-radius:0px;
  7937. filter:drop-shadow(none);
  7938. transition:none;
  7939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. }
  7943. #u19094 {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:1039px;
  7947. top:318px;
  7948. width:185px;
  7949. height:40px;
  7950. display:flex;
  7951. transition:none;
  7952. transform-origin:50% 50%;
  7953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. }
  7957. #u19094 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:0px 0px 0px 0px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u19094_text {
  7965. border-width:0px;
  7966. white-space:nowrap;
  7967. text-transform:none;
  7968. }
  7969. #u19095 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:0px;
  7975. height:0px;
  7976. }
  7977. #u19096_div {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:200px;
  7983. height:40px;
  7984. background:inherit;
  7985. background-color:rgba(242, 242, 242, 1);
  7986. box-sizing:border-box;
  7987. border-width:1px;
  7988. border-style:solid;
  7989. border-color:rgba(201, 201, 201, 1);
  7990. border-radius:4px;
  7991. filter:drop-shadow(none);
  7992. transition:none;
  7993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. font-size:14px;
  7997. text-align:right;
  7998. }
  7999. #u19096 {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:1039px;
  8003. top:358px;
  8004. width:200px;
  8005. height:40px;
  8006. display:flex;
  8007. transition:none;
  8008. transform-origin:50% 50%;
  8009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:14px;
  8013. text-align:right;
  8014. }
  8015. #u19096 .text {
  8016. position:absolute;
  8017. align-self:center;
  8018. padding:2px 8px 2px 8px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u19096_text {
  8023. border-width:0px;
  8024. word-wrap:break-word;
  8025. text-transform:none;
  8026. visibility:hidden;
  8027. }
  8028. #u19097_input {
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:161px;
  8033. height:33px;
  8034. padding:2px 2px 2px 2px;
  8035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8036. font-weight:400;
  8037. font-style:normal;
  8038. font-size:14px;
  8039. letter-spacing:normal;
  8040. color:#D7D7D7;
  8041. vertical-align:none;
  8042. text-align:left;
  8043. text-transform:none;
  8044. background-color:transparent;
  8045. border-color:transparent;
  8046. }
  8047. #u19097_input.hint {
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:161px;
  8052. height:33px;
  8053. padding:2px 2px 2px 2px;
  8054. font-family:"Microsoft YaHei", sans-serif;
  8055. font-weight:400;
  8056. font-style:normal;
  8057. font-size:14px;
  8058. letter-spacing:normal;
  8059. color:#AAAAAA;
  8060. vertical-align:none;
  8061. text-align:left;
  8062. text-transform:none;
  8063. background-color:transparent;
  8064. border-color:transparent;
  8065. }
  8066. #u19097_input.disabled {
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:161px;
  8071. height:33px;
  8072. padding:2px 2px 2px 2px;
  8073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:14px;
  8077. letter-spacing:normal;
  8078. color:#D7D7D7;
  8079. vertical-align:none;
  8080. text-align:left;
  8081. text-transform:none;
  8082. background-color:transparent;
  8083. border-color:transparent;
  8084. }
  8085. #u19097_input.hint.disabled {
  8086. position:absolute;
  8087. left:0px;
  8088. top:0px;
  8089. width:161px;
  8090. height:33px;
  8091. padding:2px 2px 2px 2px;
  8092. font-family:"Microsoft YaHei", sans-serif;
  8093. font-weight:400;
  8094. font-style:normal;
  8095. font-size:14px;
  8096. letter-spacing:normal;
  8097. color:#AAAAAA;
  8098. vertical-align:none;
  8099. text-align:left;
  8100. text-transform:none;
  8101. background-color:transparent;
  8102. border-color:transparent;
  8103. }
  8104. #u19097_div {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:161px;
  8110. height:33px;
  8111. background:inherit;
  8112. background-color:rgba(242, 242, 242, 1);
  8113. border-radius:0px;
  8114. filter:drop-shadow(none);
  8115. transition:none;
  8116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8117. font-weight:400;
  8118. font-style:normal;
  8119. font-size:14px;
  8120. color:#D7D7D7;
  8121. }
  8122. #u19097 {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:1047px;
  8126. top:361px;
  8127. width:161px;
  8128. height:33px;
  8129. display:flex;
  8130. transition:none;
  8131. transform-origin:50% 50%;
  8132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8133. font-weight:400;
  8134. font-style:normal;
  8135. font-size:14px;
  8136. color:#D7D7D7;
  8137. }
  8138. #u19097 .text {
  8139. position:absolute;
  8140. align-self:center;
  8141. padding:2px 2px 2px 2px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u19097_div.hint {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:0px;
  8149. top:0px;
  8150. width:161px;
  8151. height:33px;
  8152. background:inherit;
  8153. background-color:rgba(242, 242, 242, 1);
  8154. border-radius:0px;
  8155. filter:drop-shadow(none);
  8156. transition:none;
  8157. font-family:"Microsoft YaHei", sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. font-size:14px;
  8161. color:#D7D7D7;
  8162. }
  8163. #u19097.hint {
  8164. }
  8165. #u19097_div.disabled {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:161px;
  8171. height:33px;
  8172. background:inherit;
  8173. background-color:rgba(240, 240, 240, 1);
  8174. border-radius:0px;
  8175. filter:drop-shadow(none);
  8176. transition:none;
  8177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8178. font-weight:400;
  8179. font-style:normal;
  8180. font-size:14px;
  8181. color:#D7D7D7;
  8182. }
  8183. #u19097.disabled {
  8184. }
  8185. #u19097_div.hint.disabled {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:161px;
  8191. height:33px;
  8192. background:inherit;
  8193. background-color:rgba(240, 240, 240, 1);
  8194. border-radius:0px;
  8195. filter:drop-shadow(none);
  8196. transition:none;
  8197. font-family:"Microsoft YaHei", sans-serif;
  8198. font-weight:400;
  8199. font-style:normal;
  8200. font-size:14px;
  8201. color:#D7D7D7;
  8202. }
  8203. #u19097.hint.disabled {
  8204. }
  8205. #u19098_div {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:82px;
  8211. height:40px;
  8212. background:inherit;
  8213. background-color:rgba(255, 255, 255, 0);
  8214. border-left:0px;
  8215. border-top:0px;
  8216. border-right:0px;
  8217. border-radius:0px;
  8218. border-bottom-right-radius:0px;
  8219. border-bottom-left-radius:0px;
  8220. filter:drop-shadow(none);
  8221. transition:none;
  8222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8223. font-weight:500;
  8224. font-style:normal;
  8225. font-size:18px;
  8226. }
  8227. #u19098 {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:1039px;
  8231. top:148px;
  8232. width:82px;
  8233. height:40px;
  8234. display:flex;
  8235. transition:none;
  8236. transform-origin:50% 50%;
  8237. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8238. font-weight:500;
  8239. font-style:normal;
  8240. font-size:18px;
  8241. }
  8242. #u19098 .text {
  8243. position:absolute;
  8244. align-self:center;
  8245. padding:0px 0px 0px 0px;
  8246. box-sizing:border-box;
  8247. width:100%;
  8248. }
  8249. #u19098_text {
  8250. border-width:0px;
  8251. white-space:nowrap;
  8252. text-transform:none;
  8253. }
  8254. #u19099 {
  8255. border-width:0px;
  8256. position:absolute;
  8257. left:0px;
  8258. top:0px;
  8259. width:0px;
  8260. height:0px;
  8261. }
  8262. #u19100_div {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:0px;
  8266. top:0px;
  8267. width:430px;
  8268. height:40px;
  8269. background:inherit;
  8270. background-color:rgba(242, 242, 242, 1);
  8271. box-sizing:border-box;
  8272. border-width:1px;
  8273. border-style:solid;
  8274. border-color:rgba(215, 215, 215, 1);
  8275. border-radius:4px;
  8276. filter:drop-shadow(none);
  8277. transition:none;
  8278. font-size:14px;
  8279. }
  8280. #u19100 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:1039px;
  8284. top:198px;
  8285. width:430px;
  8286. height:40px;
  8287. display:flex;
  8288. transition:none;
  8289. transform-origin:50% 50%;
  8290. font-size:14px;
  8291. }
  8292. #u19100 .text {
  8293. position:absolute;
  8294. align-self:center;
  8295. padding:2px 2px 2px 2px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u19100_text {
  8300. border-width:0px;
  8301. word-wrap:break-word;
  8302. text-transform:none;
  8303. visibility:hidden;
  8304. }
  8305. #u19101_input {
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:417px;
  8310. height:31px;
  8311. padding:2px 2px 2px 2px;
  8312. font-family:'ArialMT', 'Arial', sans-serif;
  8313. font-weight:400;
  8314. font-style:normal;
  8315. font-size:14px;
  8316. letter-spacing:normal;
  8317. color:#AAAAAA;
  8318. vertical-align:none;
  8319. text-align:left;
  8320. text-transform:none;
  8321. background-color:transparent;
  8322. border-color:transparent;
  8323. }
  8324. #u19101_input.disabled {
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:417px;
  8329. height:31px;
  8330. padding:2px 2px 2px 2px;
  8331. font-family:'ArialMT', 'Arial', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:14px;
  8335. letter-spacing:normal;
  8336. color:#AAAAAA;
  8337. vertical-align:none;
  8338. text-align:left;
  8339. text-transform:none;
  8340. background-color:transparent;
  8341. border-color:transparent;
  8342. }
  8343. #u19101_div {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:417px;
  8349. height:31px;
  8350. background:inherit;
  8351. background-color:rgba(242, 242, 242, 1);
  8352. border-radius:0px;
  8353. filter:drop-shadow(none);
  8354. transition:none;
  8355. font-size:14px;
  8356. color:#AAAAAA;
  8357. }
  8358. #u19101 {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:1045px;
  8362. top:201px;
  8363. width:417px;
  8364. height:31px;
  8365. display:flex;
  8366. transition:none;
  8367. transform-origin:50% 50%;
  8368. font-size:14px;
  8369. color:#AAAAAA;
  8370. }
  8371. #u19101 .text {
  8372. position:absolute;
  8373. align-self:flex-start;
  8374. padding:2px 2px 2px 2px;
  8375. box-sizing:border-box;
  8376. width:100%;
  8377. }
  8378. #u19101_div.disabled {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:0px;
  8382. top:0px;
  8383. width:417px;
  8384. height:31px;
  8385. background:inherit;
  8386. background-color:rgba(240, 240, 240, 1);
  8387. border-radius:0px;
  8388. filter:drop-shadow(none);
  8389. transition:none;
  8390. font-size:14px;
  8391. color:#AAAAAA;
  8392. }
  8393. #u19101.disabled {
  8394. }
  8395. .u19101_input_option {
  8396. font-size:14px;
  8397. }
  8398. #u19102_div {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:57px;
  8404. height:40px;
  8405. background:inherit;
  8406. background-color:rgba(255, 255, 255, 0);
  8407. border-left:0px;
  8408. border-top:0px;
  8409. border-right:0px;
  8410. border-radius:0px;
  8411. border-bottom-right-radius:0px;
  8412. border-bottom-left-radius:0px;
  8413. filter:drop-shadow(none);
  8414. transition:none;
  8415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8416. font-weight:400;
  8417. font-style:normal;
  8418. font-size:14px;
  8419. }
  8420. #u19102 {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:1269px;
  8424. top:586px;
  8425. width:57px;
  8426. height:40px;
  8427. display:flex;
  8428. transition:none;
  8429. transform-origin:50% 50%;
  8430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:14px;
  8434. }
  8435. #u19102 .text {
  8436. position:absolute;
  8437. align-self:center;
  8438. padding:0px 0px 0px 0px;
  8439. box-sizing:border-box;
  8440. width:100%;
  8441. }
  8442. #u19102_text {
  8443. border-width:0px;
  8444. white-space:nowrap;
  8445. text-transform:none;
  8446. }
  8447. #u19103 {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:0px;
  8451. top:0px;
  8452. width:0px;
  8453. height:0px;
  8454. }
  8455. #u19104_div {
  8456. border-width:0px;
  8457. position:absolute;
  8458. left:0px;
  8459. top:0px;
  8460. width:200px;
  8461. height:40px;
  8462. background:inherit;
  8463. background-color:rgba(255, 255, 255, 1);
  8464. box-sizing:border-box;
  8465. border-width:1px;
  8466. border-style:solid;
  8467. border-color:rgba(215, 215, 215, 1);
  8468. border-radius:4px;
  8469. filter:drop-shadow(none);
  8470. transition:none;
  8471. font-size:14px;
  8472. }
  8473. #u19104 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:1269px;
  8477. top:626px;
  8478. width:200px;
  8479. height:40px;
  8480. display:flex;
  8481. transition:none;
  8482. transform-origin:50% 50%;
  8483. font-size:14px;
  8484. }
  8485. #u19104 .text {
  8486. position:absolute;
  8487. align-self:center;
  8488. padding:2px 2px 2px 2px;
  8489. box-sizing:border-box;
  8490. width:100%;
  8491. }
  8492. #u19104_text {
  8493. border-width:0px;
  8494. word-wrap:break-word;
  8495. text-transform:none;
  8496. visibility:hidden;
  8497. }
  8498. #u19105_input {
  8499. position:absolute;
  8500. left:0px;
  8501. top:0px;
  8502. width:191px;
  8503. height:31px;
  8504. padding:2px 2px 2px 2px;
  8505. font-family:'ArialMT', 'Arial', sans-serif;
  8506. font-weight:400;
  8507. font-style:normal;
  8508. font-size:14px;
  8509. letter-spacing:normal;
  8510. color:#AAAAAA;
  8511. vertical-align:none;
  8512. text-align:left;
  8513. text-transform:none;
  8514. background-color:transparent;
  8515. border-color:transparent;
  8516. }
  8517. #u19105_input.disabled {
  8518. position:absolute;
  8519. left:0px;
  8520. top:0px;
  8521. width:191px;
  8522. height:31px;
  8523. padding:2px 2px 2px 2px;
  8524. font-family:'ArialMT', 'Arial', sans-serif;
  8525. font-weight:400;
  8526. font-style:normal;
  8527. font-size:14px;
  8528. letter-spacing:normal;
  8529. color:#AAAAAA;
  8530. vertical-align:none;
  8531. text-align:left;
  8532. text-transform:none;
  8533. background-color:transparent;
  8534. border-color:transparent;
  8535. }
  8536. #u19105_div {
  8537. border-width:0px;
  8538. position:absolute;
  8539. left:0px;
  8540. top:0px;
  8541. width:191px;
  8542. height:31px;
  8543. background:inherit;
  8544. background-color:rgba(255, 255, 255, 1);
  8545. border-radius:0px;
  8546. filter:drop-shadow(none);
  8547. transition:none;
  8548. font-size:14px;
  8549. color:#AAAAAA;
  8550. }
  8551. #u19105 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:1275px;
  8555. top:629px;
  8556. width:191px;
  8557. height:31px;
  8558. display:flex;
  8559. transition:none;
  8560. transform-origin:50% 50%;
  8561. font-size:14px;
  8562. color:#AAAAAA;
  8563. }
  8564. #u19105 .text {
  8565. position:absolute;
  8566. align-self:flex-start;
  8567. padding:2px 2px 2px 2px;
  8568. box-sizing:border-box;
  8569. width:100%;
  8570. }
  8571. #u19105_div.disabled {
  8572. border-width:0px;
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:191px;
  8577. height:31px;
  8578. background:inherit;
  8579. background-color:rgba(240, 240, 240, 1);
  8580. border-radius:0px;
  8581. filter:drop-shadow(none);
  8582. transition:none;
  8583. font-size:14px;
  8584. color:#AAAAAA;
  8585. }
  8586. #u19105.disabled {
  8587. }
  8588. .u19105_input_option {
  8589. font-size:14px;
  8590. }
  8591. #u19106 {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:0px;
  8597. height:0px;
  8598. }
  8599. #u19107_div {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:0px;
  8603. top:0px;
  8604. width:427px;
  8605. height:80px;
  8606. background:inherit;
  8607. background-color:rgba(255, 255, 255, 1);
  8608. box-sizing:border-box;
  8609. border-width:1px;
  8610. border-style:solid;
  8611. border-color:rgba(201, 201, 201, 1);
  8612. border-radius:4px;
  8613. filter:drop-shadow(none);
  8614. transition:none;
  8615. font-family:"Microsoft YaHei", sans-serif;
  8616. font-weight:400;
  8617. font-style:normal;
  8618. font-size:14px;
  8619. color:#CCCCCC;
  8620. text-align:left;
  8621. }
  8622. #u19107 {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:1039px;
  8626. top:981px;
  8627. width:427px;
  8628. height:80px;
  8629. display:flex;
  8630. transition:none;
  8631. transform-origin:50% 50%;
  8632. font-family:"Microsoft YaHei", sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:14px;
  8636. color:#CCCCCC;
  8637. text-align:left;
  8638. }
  8639. #u19107 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 8px 2px 8px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u19107_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. visibility:hidden;
  8651. }
  8652. #u19108_input {
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:389px;
  8657. height:33px;
  8658. padding:2px 2px 2px 2px;
  8659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8660. font-weight:400;
  8661. font-style:normal;
  8662. font-size:14px;
  8663. letter-spacing:normal;
  8664. color:#D7D7D7;
  8665. vertical-align:none;
  8666. text-align:left;
  8667. text-transform:none;
  8668. background-color:transparent;
  8669. border-color:transparent;
  8670. }
  8671. #u19108_input.hint {
  8672. position:absolute;
  8673. left:0px;
  8674. top:0px;
  8675. width:389px;
  8676. height:33px;
  8677. padding:2px 2px 2px 2px;
  8678. font-family:"Microsoft YaHei", sans-serif;
  8679. font-weight:400;
  8680. font-style:normal;
  8681. font-size:14px;
  8682. letter-spacing:normal;
  8683. color:#AAAAAA;
  8684. vertical-align:none;
  8685. text-align:left;
  8686. text-transform:none;
  8687. background-color:transparent;
  8688. border-color:transparent;
  8689. }
  8690. #u19108_input.disabled {
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:389px;
  8695. height:33px;
  8696. padding:2px 2px 2px 2px;
  8697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8698. font-weight:400;
  8699. font-style:normal;
  8700. font-size:14px;
  8701. letter-spacing:normal;
  8702. color:#D7D7D7;
  8703. vertical-align:none;
  8704. text-align:left;
  8705. text-transform:none;
  8706. background-color:transparent;
  8707. border-color:transparent;
  8708. }
  8709. #u19108_input.hint.disabled {
  8710. position:absolute;
  8711. left:0px;
  8712. top:0px;
  8713. width:389px;
  8714. height:33px;
  8715. padding:2px 2px 2px 2px;
  8716. font-family:"Microsoft YaHei", sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:14px;
  8720. letter-spacing:normal;
  8721. color:#AAAAAA;
  8722. vertical-align:none;
  8723. text-align:left;
  8724. text-transform:none;
  8725. background-color:transparent;
  8726. border-color:transparent;
  8727. }
  8728. #u19108_div {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:0px;
  8732. top:0px;
  8733. width:389px;
  8734. height:33px;
  8735. background:inherit;
  8736. background-color:rgba(255, 255, 255, 0);
  8737. border-radius:0px;
  8738. filter:drop-shadow(none);
  8739. transition:none;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:14px;
  8744. color:#D7D7D7;
  8745. }
  8746. #u19108 {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:1056px;
  8750. top:984px;
  8751. width:389px;
  8752. height:33px;
  8753. display:flex;
  8754. transition:none;
  8755. transform-origin:50% 50%;
  8756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8757. font-weight:400;
  8758. font-style:normal;
  8759. font-size:14px;
  8760. color:#D7D7D7;
  8761. }
  8762. #u19108 .text {
  8763. position:absolute;
  8764. align-self:center;
  8765. padding:2px 2px 2px 2px;
  8766. box-sizing:border-box;
  8767. width:100%;
  8768. }
  8769. #u19108_div.hint {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:0px;
  8773. top:0px;
  8774. width:389px;
  8775. height:33px;
  8776. background:inherit;
  8777. background-color:rgba(255, 255, 255, 0);
  8778. border-radius:0px;
  8779. filter:drop-shadow(none);
  8780. transition:none;
  8781. font-family:"Microsoft YaHei", sans-serif;
  8782. font-weight:400;
  8783. font-style:normal;
  8784. font-size:14px;
  8785. color:#D7D7D7;
  8786. }
  8787. #u19108.hint {
  8788. }
  8789. #u19108_div.disabled {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:0px;
  8793. top:0px;
  8794. width:389px;
  8795. height:33px;
  8796. background:inherit;
  8797. background-color:rgba(240, 240, 240, 1);
  8798. border-radius:0px;
  8799. filter:drop-shadow(none);
  8800. transition:none;
  8801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8802. font-weight:400;
  8803. font-style:normal;
  8804. font-size:14px;
  8805. color:#D7D7D7;
  8806. }
  8807. #u19108.disabled {
  8808. }
  8809. #u19108_div.hint.disabled {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:389px;
  8815. height:33px;
  8816. background:inherit;
  8817. background-color:rgba(240, 240, 240, 1);
  8818. border-radius:0px;
  8819. filter:drop-shadow(none);
  8820. transition:none;
  8821. font-family:"Microsoft YaHei", sans-serif;
  8822. font-weight:400;
  8823. font-style:normal;
  8824. font-size:14px;
  8825. color:#D7D7D7;
  8826. }
  8827. #u19108.hint.disabled {
  8828. }
  8829. #u19109_div {
  8830. border-width:0px;
  8831. position:absolute;
  8832. left:0px;
  8833. top:0px;
  8834. width:71px;
  8835. height:40px;
  8836. background:inherit;
  8837. background-color:rgba(255, 255, 255, 0);
  8838. border-left:0px;
  8839. border-top:0px;
  8840. border-right:0px;
  8841. border-radius:0px;
  8842. border-bottom-right-radius:0px;
  8843. border-bottom-left-radius:0px;
  8844. filter:drop-shadow(none);
  8845. transition:none;
  8846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8847. font-weight:400;
  8848. font-style:normal;
  8849. font-size:14px;
  8850. }
  8851. #u19109 {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:1039px;
  8855. top:941px;
  8856. width:71px;
  8857. height:40px;
  8858. display:flex;
  8859. transition:none;
  8860. transform-origin:50% 50%;
  8861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8862. font-weight:400;
  8863. font-style:normal;
  8864. font-size:14px;
  8865. }
  8866. #u19109 .text {
  8867. position:absolute;
  8868. align-self:center;
  8869. padding:0px 0px 0px 0px;
  8870. box-sizing:border-box;
  8871. width:100%;
  8872. }
  8873. #u19109_text {
  8874. border-width:0px;
  8875. white-space:nowrap;
  8876. text-transform:none;
  8877. }
  8878. #u19110_div {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:0px;
  8882. top:0px;
  8883. width:149px;
  8884. height:40px;
  8885. background:inherit;
  8886. background-color:rgba(255, 255, 255, 0);
  8887. border-left:0px;
  8888. border-top:0px;
  8889. border-right:0px;
  8890. border-radius:0px;
  8891. border-bottom-right-radius:0px;
  8892. border-bottom-left-radius:0px;
  8893. filter:drop-shadow(none);
  8894. transition:none;
  8895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8896. font-weight:400;
  8897. font-style:normal;
  8898. }
  8899. #u19110 {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:1039px;
  8903. top:770px;
  8904. width:149px;
  8905. height:40px;
  8906. display:flex;
  8907. transition:none;
  8908. transform-origin:50% 50%;
  8909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8910. font-weight:400;
  8911. font-style:normal;
  8912. }
  8913. #u19110 .text {
  8914. position:absolute;
  8915. align-self:center;
  8916. padding:0px 0px 0px 0px;
  8917. box-sizing:border-box;
  8918. width:100%;
  8919. }
  8920. #u19110_text {
  8921. border-width:0px;
  8922. white-space:nowrap;
  8923. text-transform:none;
  8924. }
  8925. #u19111 {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:1039px;
  8929. top:810px;
  8930. width:361px;
  8931. height:121px;
  8932. display:flex;
  8933. transition:none;
  8934. }
  8935. #u19111 .text {
  8936. position:absolute;
  8937. align-self:center;
  8938. padding:2px 2px 2px 2px;
  8939. box-sizing:border-box;
  8940. width:100%;
  8941. }
  8942. #u19111_img {
  8943. border-width:0px;
  8944. position:absolute;
  8945. left:0px;
  8946. top:0px;
  8947. width:361px;
  8948. height:121px;
  8949. }
  8950. #u19111_text {
  8951. border-width:0px;
  8952. word-wrap:break-word;
  8953. text-transform:none;
  8954. visibility:hidden;
  8955. }