styles.css 102 KB

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