styles.css 142 KB

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