styles.css 140 KB

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