styles.css 103 KB

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