styles.css 108 KB

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