styles.css 120 KB

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