styles.css 111 KB

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