styles.css 124 KB

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