styles.css 138 KB

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